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=687
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 6891,
    "next": "https://demo.lizard.net/api/v4/projections/?format=api&page=688",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=686",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9149/?format=api",
            "name": "SIRGAS-Chile 2013 / UTM zone 18S",
            "code": "EPSG:9149",
            "extent": {
                "south": -59.36,
                "west": -78.0,
                "north": -18.35,
                "east": -71.99
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9150/?format=api",
            "name": "SIRGAS-Chile 2013 / UTM zone 19S",
            "code": "EPSG:9150",
            "extent": {
                "south": -59.87,
                "west": -72.0,
                "north": -17.5,
                "east": -66.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9151/?format=api",
            "name": "SIRGAS-Chile 2016",
            "code": "EPSG:9151",
            "extent": {
                "south": -59.87,
                "west": -113.21,
                "north": -17.5,
                "east": -65.72
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9152/?format=api",
            "name": "SIRGAS-Chile 2016",
            "code": "EPSG:9152",
            "extent": {
                "south": -59.87,
                "west": -113.21,
                "north": -17.5,
                "east": -65.72
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9153/?format=api",
            "name": "SIRGAS-Chile 2016",
            "code": "EPSG:9153",
            "extent": {
                "south": -59.87,
                "west": -113.21,
                "north": -17.5,
                "east": -65.72
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9154/?format=api",
            "name": "SIRGAS-Chile 2016 / UTM zone 18S",
            "code": "EPSG:9154",
            "extent": {
                "south": -59.36,
                "west": -78.0,
                "north": -18.35,
                "east": -71.99
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9155/?format=api",
            "name": "SIRGAS-Chile 2016 / UTM zone 19S",
            "code": "EPSG:9155",
            "extent": {
                "south": -59.87,
                "west": -72.0,
                "north": -17.5,
                "east": -66.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9156/?format=api",
            "name": "RSAO13 / UTM zone 32S",
            "code": "EPSG:9156",
            "extent": {
                "south": -17.28,
                "west": 8.2,
                "north": -5.03,
                "east": 12.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9157/?format=api",
            "name": "RSAO13 / UTM zone 33S",
            "code": "EPSG:9157",
            "extent": {
                "south": -17.44,
                "west": 12.0,
                "north": -4.38,
                "east": 18.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9158/?format=api",
            "name": "RSAO13 / UTM zone 34S",
            "code": "EPSG:9158",
            "extent": {
                "south": -18.02,
                "west": 17.99,
                "north": -6.91,
                "east": 24.09
            }
        }
    ]
}