简要描述
  • 输入一个爆管点,输入一个管线图层,输入管点过滤表达式,返回受爆管点影响的管点

请求URL
  • http://192.168.19.21:9999/geniusserver/processservices

服务名称

  • pipe:PipeBurstAnalysis

请求方式
  • POST

参数
参数名 必选 类型 说明
burstpoint wkt 爆管点
pipeLineFeatures Reference 管线图层
pipePointFeatures Reference 管点图层
pipeFilter string 管点过滤表达式

请求示例
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <wps:Execute xmlns:ogc="http://www.opengis.net/ogc" version="1.0.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.opengis.net/wps/1.0.0" service="WPS" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsAll.xsd" xmlns:gml="http://www.opengis.net/gml" xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns:wfs="http://www.opengis.net/wfs" xmlns:wcs="http://www.opengis.net/wcs/1.1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ows="http://www.opengis.net/ows/1.1">
  3. <ows:Identifier>pipe:PipeBurstAnalysis</ows:Identifier>
  4. <wps:DataInputs>
  5. <Input>
  6. <ows:Identifier>burstpoint</ows:Identifier>
  7. <wps:Data>
  8. <wps:ComplexData mimeType="application/wkt" crs="EPSG:4549">
  9. <![CDATA[POINT (389829.40 4080137.29)]]>
  10. </wps:ComplexData>
  11. </wps:Data>
  12. </Input>
  13. <Input>
  14. <ows:Identifier>pipeLineFeatures</ows:Identifier>
  15. <wps:Reference xlink:href="http://geniusserver/wfs/shouguangguanxian" mimeType="text/xml;subtype=gml/2.1.2" method="POST">
  16. <wps:Body>
  17. <wfs:GetFeature outputFormat="text/xml;subtype=gml/2.1.2" version="1.0.0" service="WFS">
  18. <wfs:Query typeName="yt_ysl"/>
  19. </wfs:GetFeature>
  20. </wps:Body>
  21. </wps:Reference>
  22. </Input>
  23. <Input>
  24. <ows:Identifier>pipePointFeatures</ows:Identifier>
  25. <wps:Reference xlink:href="http://geniusserver/wfs/shouguangguanxian" mimeType="text/xml;subtype=gml/2.1.2" method="POST">
  26. <wps:Body>
  27. <wfs:GetFeature outputFormat="text/xml;subtype=gml/2.1.2" version="1.0.0" service="WFS">
  28. <wfs:Query typeName="yt_ysp"/>
  29. </wfs:GetFeature>
  30. </wps:Body>
  31. </wps:Reference>
  32. </Input>
  33. <Input>
  34. <ows:Identifier>pipeFilter</ows:Identifier>
  35. <wps:Data>
  36. <wps:LiteralData>subsid='雨水' or subsid='雨水井'</wps:LiteralData>
  37. </wps:Data>
  38. </Input>
  39. </wps:DataInputs>
  40. <wps:ResponseForm>
  41. <wps:RawDataOutput mimeType="application/json">
  42. <ows:Identifier>result</ows:Identifier>
  43. </wps:RawDataOutput>
  44. </wps:ResponseForm>
  45. </wps:Execute>

返回示例
{
    "type": "FeatureCollection",
    "features": [{
            "type": "Feature",
            "id": "",
            "bbox": [40533715.8988, 4020632.5038, 40534117.8963, 4020693.1169],
            "geometry": {
                "coordinates": [[[[40533716.1208, 4020643.5156], [40534016.0071, 4020688.8719], [40534036.3332, 4020691.2479], [40534064.2752, 4020693.1169], [40534098.2953, 4020692.885], [40534117.8963, 4020691.426], [40534056.0462, 4020632.5038], [40534057.0542, 4020637.8059], [40534054.0132, 4020646.3619], [40534047.6162, 4020652.1219], [40534038.2492, 4020651.2379], [40534024.1452, 4020649.5938], [40534004.9202, 4020646.9108], [40534003.2542, 4020646.6578], [40534003.2941, 4020678.3709], [40534003.2991, 4020682.0119], [40533871.564, 4020660.7507], [40533871.537, 4020660.8147], [40533841.3179, 4020655.8637], [40533841.3179, 4020655.8687], [40533717.1708, 4020635.8325], [40533715.8988, 4020636.4355], [40533716.1208, 4020643.5156]]]],
                "type": "MultiPolygon"
            },
            "properties": {},
            ...]
        }
}

返回参数说明
  • geojson格式

备注
  • 更多返回错误代码请看首页的错误代码描述