<geometry_uri>/relativePosition3D[.<format>]
geometryGetRelativePosition3DResult
基于几何对象的三维空间查询结果集资源。对该资源发送POST请求,则可以创建一个三维空间查询结果资源,查询获得数据的空间关系。
支持的方法:
支持的表述格式:RJSON、JSON、HTML、XML。
对如下 URI 执行 HTTP 请求,以 rjson 输出格式为例加以说明,其中,supermapiserver 是服务器名。
http://supermapiserver:8090/iserver/services/spatialAnalysis-BIM2/restjsr/spatialanalyst/geometry/relativePosition3D.rjson
返回一个进行POST请求的表单。
对资源执行 POST 请求,传递相关参数后,就创建了一个三维空间查询结果资源。
请求体中需传递如下参数:
名称 | 类型 | 含义 |
sourceGeometry | Geometry | 【必填参数】源几何对象,即三维空间分析中被操作的几何对象。 |
bottomAltitude | double | 【必填参数】指定源几何对象的底部高程 |
extendedHeightSource | double | 【必填参数】指定源几何对象的拉伸高度 |
operateGeometrySource | Geometry | 【必填参数】操作几何对象 |
bottomAltitudeOperate | double | 【必填参数】指定操作几何对象的底部高程 |
extendedHeightOperate | double | 【必填参数】指定操作几何对象的拉伸高度 |
operation | String | 默认为:getRelativePosition,表示获取相对空间位置。 |
resultSetting | GeometrySpatialAnalystResultSetting | 三维空间分析结果设置 |
正常响应情况:响应码201。响应参数如下:
字段 | 类型 | 说明 |
postResultType |
postResultType | POST 请求的结果类型,枚举说明 POST 请求对目标资源的影响,即处理结果是什么样的。 |
newResourceID |
String | 分析结果资源的 ID。 |
succeed |
boolean | 分析是否成功。 |
newResourceLocation |
String | 创建的新资源的 URI。 |
对relativePosition3D资源:http://supermapiserver:8090/iserver/services/spatialAnalysis-BIM2/restjsr/spatialanalyst/geometry/relativePosition3D.rjson,执行 POST 请求,请求参数如下:
{
"sourceGeometry":{"type":"REGION", "points":[{"x":23, "y":23}, {"x":33, "y":35}, {"x":43, "y":22}]},
"bottomAltitudeSource":"1",
"extendedHeightSource":"1",
"operateGeometry":{"type":"REGION", "points":[{"x":23, "y":23}, {"x":34, "y":47}, {"x":50, "y":12}]},
"bottomAltitudeOperate":"1",
"extendedHeightOperate":"1",
"operation":"getRelativePosition"
}
则返回的 rjson 格式的资源描述如下:
{
"postResultType":"CreateChild",
"newResourceID":"2fe735b026974a13a1bbf00ac710ddef_8ab9531ece344f5ab9f4d39b3c58da12",
"succeed":true,
"newResourceLocation":"http://supermapiserver:8090/iserver/services/spatialAnalysis-BIM2/restjsr/spatialanalyst/geometry/relativePosition3D/2fe735b026974a13a1bbf00ac710ddef_8ab9531ece344f5ab9f4d39b3c58da12"
}
返回跟 GET 请求一样的 HTTP 响应头,但是没有响应实体。可以在不必传输整个响应内容的情况下,获取包含在响应消息头中的元数据信息。元数据信息包括媒体类型,字符编码,压缩编码,实体内容长度等。
HEAD 请求可以用来判断relativePosition3D资源是否存在,或者客户端是否有权限访问relativePosition3D 资源。通过对加.<format>的 URI 执行 HEAD 请求,还可以快速判断 relativePosition3D资源是否支持<format>格式的表述。