latestOpenAPI 3.0.02026-08-21224588.9 KB

72df7eed91b2

Cartographic Transformations

Search Cartographic Transformations

Search cartographic transform records (any sub-type) by keywords and/or geographic area. Geographical constraints are passed (optionally) as parameters via the query URL, search keywords are passed via the request body. Query syntax follows Lucene style, default operator for multiple expressions is AND. The following keywords are supported: 'name:','description:', 'type:', 'authority:', 'code:', 'deprecationState:', 'remarks:', 'lastModified:', 'source:', 'wellKnownText:', 'fromCRS.authority:', 'fromCRS.code:', 'toCRS.authority:', toCRS.code:', 'policy:'. followed by a value. Example: 'fromCRS.code:4267'. longitudeLeft - the left WGS 84 longitude limit of the search box. latitudeLower - the lower WGS 84 latitude limit of the search box. longitudeRight - the right WGS 84 longitude limit of the search box. latitudeUpper - The upper WGS 84 latitude limit of the search box.

post/search/ct

Query parameters

longitudeLeftnumber double

The left (western) longitude of the bounding box, in decimal degrees.

latitudeLowernumber double

The lower (southern) latitude of the bounding box, in decimal degrees.

longitudeRightnumber double

The right (eastern) longitude of the bounding box, in decimal degrees.

latitudeUppernumber double

The upper (northern) latitude of the bounding box, in decimal degrees.

offsetinteger

The offset of the first item in the list.

limitinteger

The maximum number of items returned.

modestring

The mode of return: 'persistable_reference' (default) string or 'essence' structure or 'persistable_reference_essence' i.e. the combination of other 2 options.

Headers

data-partition-idstring required

desired data partition id

Request body

querystring

The Lucene style query string with keywords.

Example request

{
  "query": "code:15851"
}

Response

A successful response

countinteger

Number of elements in the response.

offsetinteger

Offset to the first catalog item in the response, as set in the request.

totalCountinteger

Number of elements in the catalog.

Example response

{
  "cts": [
    {
      "fromCRSAuthorityCode": {
        "auth": "EPSG",
        "code": "4326"
      },
      "toCRSAuthorityCode": {
        "auth": "EPSG",
        "code": "4326"
      },
      "areaOfUse": {
        "essence": {
          "type": "AOU",
          "authCode": {
            "auth": "EPSG",
            "code": "4326"
          }
        }
      },
      "essence": {
        "type": "ST",
        "name": "ED_1950_UTM_Zone_31N",
        "ver": "PE_10_3_1",
        "wkt": "GEOGTRAN[\"ED_1950_To_WGS_1984_23\",GEOGCS[\"GCS_European_1950\",DATUM[\"D_European_1950\",SPHEROID[\"International_1924\",6378388.0,297.0]],PRIMEM[\"Greenwich\",0.0],UNIT[\"Degree\",0.0174532925199433]],GEOGCS[\"GCS_WGS_1984\",DATUM[\"D_WGS_1984\",SPHEROID[\"WGS_1984\",6378137.0,298.257223563]],PRIMEM[\"Greenwich\",0.0],UNIT[\"Degree\",0.0174532925199433]],METHOD[\"Position_Vector\"],PARAMETER[\"X_Axis_Translation\",-116.641],PARAMETER[\"Y_Axis_Translation\",-56.931],PARAMETER[\"Z_Axis_Translation\",-110.559],PARAMETER[\"X_Axis_Rotation\",0.893],PARAMETER[\"Y_Axis_Rotation\",0.921],PARAMETER[\"Z_Axis_Rotation\",-0.917],PARAMETER[\"Scale_Difference\",-3.52],AUTHORITY[\"EPSG\",1612]]",
        "policy": "Fallback",
        "cts": [
          {
            "type": "ST",
            "name": "ED_1950_UTM_Zone_31N",
            "ver": "PE_10_3_1",
            "wkt": "GEOGTRAN[\"ED_1950_To_WGS_1984_23\",GEOGCS[\"GCS_European_1950\",DATUM[\"D_European_1950\",SPHEROID[\"International_1924\",6378388.0,297.0]],PRIMEM[\"Greenwich\",0.0],UNIT[\"Degree\",0.0174532925199433]],GEOGCS[\"GCS_WGS_1984\",DATUM[\"D_WGS_1984\",SPHEROID[\"WGS_1984\",6378137.0,298.257223563]],PRIMEM[\"Greenwich\",0.0],UNIT[\"Degree\",0.0174532925199433]],METHOD[\"Position_Vector\"],PARAMETER[\"X_Axis_Translation\",-116.641],PARAMETER[\"Y_Axis_Translation\",-56.931],PARAMETER[\"Z_Axis_Translation\",-110.559],PARAMETER[\"X_Axis_Rotation\",0.893],PARAMETER[\"Y_Axis_Rotation\",0.921],PARAMETER[\"Z_Axis_Rotation\",-0.917],PARAMETER[\"Scale_Difference\",-3.52],AUTHORITY[\"EPSG\",1612]]",
            "authCode": {
              "auth": "EPSG",
              "code": "4326"
            }
          }
        ],
        "authCode": {
          "auth": "EPSG",
          "code": "4326"
        }
      }
    }
  ]
}