Projection List
Returns available Projections. More info: https://epsg.io/
Query parameters:
name
Text filter on the name
field. All text field filter methods,
like startswith
, endswith
, icontains
are supported.
code
Text filter on the code
field. All text field filter methods,
like startswith
, endswith
, icontains
are supported.
extent__intersects
Spatial filter on extent
. Filter on only projections whose extent
intersect the requested geometry. Supports WKT.
ordering
Show the results in a specific order. You can order them by name
,
code
. Add a -
in front to reverse the order.
Examples:
?name=projection
?name__icontains=proj
?name__startswith=proj
?code=EPSG:25890
?code__startswith=EPSG
?ordering=name
?ordering=-code
?extent__covers=POLYGON((4.87 52.73, 4.87 52.79, 4.98 52.79,
4.98 52.73, 4.87 52.73))
?extent__intersects=POLYGON((4.87 52.73, 4.87 52.79, 4.98 52.79,
4.98 52.73, 4.87 52.73))
GET /api/v4/projections/?format=api&page=7
{ "count": 6891, "next": "https://demo.lizard.net/api/v4/projections/?format=api&page=8", "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=6", "results": [ { "url": "https://demo.lizard.net/api/v4/projections/EPSG:20086/?format=api", "name": "Pulkovo 1995 / Gauss-Kruger 26N", "code": "EPSG:20086", "extent": { "south": 45.77, "west": 150.0, "north": 76.26, "east": 156.0 } }, { "url": "https://demo.lizard.net/api/v4/projections/EPSG:20087/?format=api", "name": "Pulkovo 1995 / Gauss-Kruger 27N", "code": "EPSG:20087", "extent": { "south": 50.27, "west": 156.0, "north": 77.2, "east": 162.0 } }, { "url": "https://demo.lizard.net/api/v4/projections/EPSG:20088/?format=api", "name": "Pulkovo 1995 / Gauss-Kruger 28N", "code": "EPSG:20088", "extent": { "south": 54.47, "west": 162.0, "north": 70.03, "east": 168.0 } }, { "url": "https://demo.lizard.net/api/v4/projections/EPSG:20089/?format=api", "name": "Pulkovo 1995 / Gauss-Kruger 29N", "code": "EPSG:20089", "extent": { "south": 54.45, "west": 168.0, "north": 70.19, "east": 174.0 } }, { "url": "https://demo.lizard.net/api/v4/projections/EPSG:2009/?format=api", "name": "NAD27(CGQ77) / SCoPQ zone 3", "code": "EPSG:2009", "extent": { "south": 50.2, "west": -60.0, "north": 52.01, "east": -57.1 } }, { "url": "https://demo.lizard.net/api/v4/projections/EPSG:20090/?format=api", "name": "Pulkovo 1995 / Gauss-Kruger 30N", "code": "EPSG:20090", "extent": { "south": 61.65, "west": 174.0, "north": 71.59, "east": 180.0 } }, { "url": "https://demo.lizard.net/api/v4/projections/EPSG:20091/?format=api", "name": "Pulkovo 1995 / Gauss-Kruger 31N", "code": "EPSG:20091", "extent": { "south": 64.35, "west": -180.0, "north": 71.65, "east": -174.0 } }, { "url": "https://demo.lizard.net/api/v4/projections/EPSG:20092/?format=api", "name": "Pulkovo 1995 / Gauss-Kruger 32N", "code": "EPSG:20092", "extent": { "south": 64.2, "west": -174.0, "north": 67.18, "east": -168.97 } }, { "url": "https://demo.lizard.net/api/v4/projections/EPSG:2010/?format=api", "name": "NAD27(CGQ77) / SCoPQ zone 4", "code": "EPSG:2010", "extent": { "south": 47.16, "west": -63.0, "north": 52.01, "east": -60.0 } }, { "url": "https://demo.lizard.net/api/v4/projections/EPSG:2011/?format=api", "name": "NAD27(CGQ77) / SCoPQ zone 5", "code": "EPSG:2011", "extent": { "south": 47.95, "west": -66.0, "north": 60.42, "east": -63.0 } } ] }