coordtransferResult


URI

<coordTransfer_uri>/coordtransferResult[.<format>]

Supported methods

GET, HEAD

Parent resource

coordTransfer

Introduction

The coordtransferResult resource represents projected coordinate system transferred result, which is created by executing POST request. By sending GET request to coordtransferResult resource, you can get geometries information after transfer. See Life Cycle of Temporary Resources to check life cycle of this resource.

Supported Methods:

Supported output formats: rjson, json, html, xml.

Resource hierarchy

HTTP request methods

Implement the HTTP request on the following URI, where supermapiserver is the server name, with rjson being the output format.

http://supermapiserver:8090/iserver/services/data-world/rest/data/coordtransfer/1.rjson

GET request

Gets geometries information after coordinate system transfer.

Request parameter

None

Response structure

Execute GET request to coordtransferResult resource which returns geometries information after coordinate system transfer. The returned resource presentation is a information collection, one of which is a single geometry presentation with structure as follows:

Field Type Description
geometry Geometry Gets geometries after coordinate system transfer.

Response example

The returned rjson format representation after implementing the GET request on the binary resource http://supermapiserver:8090/iserver/services/data-world/rest/data/coordtransfer/1.rjson is as follows:

[

    {

      "center":

      {

        "x":1.2688789880426234E7,

        "y":489371.98562014854

      },

        "parts":[1],

        "style":null,

        "prjCoordSys":null,

        "id":0,

        "type":"POINT",

        "points":[

                   {

                    "x":1.2688789880426234E7,

                    "y":489371.98562014854

                    }

                  ]

     }

]

HEAD request

Asks for the response identical to the one that would correspond to a GET request, but without the response body. This is useful for retrieving meta-information contained in response headers, without having to transport the entire content. The meta-information includes the media-type, content-encoding, transfer-encoding, content-length, etc.

HEAD request can be used to check whether the coordtransferResult resource exists, or whether the the client has the permission to access it. It can also determine if the coordtransferResult resource supports an output format <format> if performed on a URI with .<format> included.

See