Coordinate System Categories

Arkance Systems Benelux

The GeoView Server API supports thousands of spatial reference systems divided into categories by area of use (country or region). This REST API method list all available spatial reference system category names and associated identifiers. Accessing this method requires Read permissions.


Request API method URI definition:


HTTP GET http://api.geoview.be/geoservice/v1/catalogs/srs


Request HTTP URI parameters:


Parameter

Description

token

Access token (returned by this API method).


Example HTTP request URI:


HTTP GET http://api.geoview.be/geoservice/v1/catalogs/srs?&token=3dc718f2-ab20-4f41-86e1-72abcc1810c1


Possible resulting HTTP status codes:


Value

Description

200

API request succeeded and result(s) were returned.

204

API request succeeded but query didn't produce any results.

401

Supplied API request access token not valid.


Response JSON structure for a single category (please note that API method may return array of categories):


Field

Description

id

Category unique identifier.

value

Category name.


Example JSON response:


[

  {

     "id":"f467976e-53f1-4057-1b14-8b9a8ced14ef",

     "value":"Belgium"

  },

  {

     "id":"2909b0d8-c6de-425d-2303-256336ada04f",

     "value":"Germany"

  },

  {

     ...

  }

]