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=660
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=661",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=659",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8697/?format=api",
            "name": "RSAO13",
            "code": "EPSG:8697",
            "extent": {
                "south": -18.02,
                "west": 8.2,
                "north": -4.38,
                "east": 24.09
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8698/?format=api",
            "name": "RSAO13",
            "code": "EPSG:8698",
            "extent": {
                "south": -18.02,
                "west": 8.2,
                "north": -4.38,
                "east": 24.09
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8699/?format=api",
            "name": "RSAO13",
            "code": "EPSG:8699",
            "extent": {
                "south": -18.02,
                "west": 8.2,
                "north": -4.38,
                "east": 24.09
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8700/?format=api",
            "name": "NAD83 / Arizona East (ft) + NAVD88 height (ft)",
            "code": "EPSG:8700",
            "extent": {
                "south": 31.33,
                "west": -111.71,
                "north": 37.01,
                "east": -109.04
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8701/?format=api",
            "name": "NAD83 / Arizona Central (ft) + NAVD88 height (ft)",
            "code": "EPSG:8701",
            "extent": {
                "south": 31.33,
                "west": -113.35,
                "north": 37.01,
                "east": -110.44
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8702/?format=api",
            "name": "NAD83 / Arizona West (ft) + NAVD88 height (ft)",
            "code": "EPSG:8702",
            "extent": {
                "south": 32.05,
                "west": -114.81,
                "north": 37.0,
                "east": -112.52
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8703/?format=api",
            "name": "NAD83 / Michigan North (ft) + NAVD88 height (ft)",
            "code": "EPSG:8703",
            "extent": {
                "south": 45.08,
                "west": -90.42,
                "north": 48.32,
                "east": -83.44
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8704/?format=api",
            "name": "NAD83 / Michigan Central (ft) + NAVD88 height (ft)",
            "code": "EPSG:8704",
            "extent": {
                "south": 43.8,
                "west": -87.06,
                "north": 45.92,
                "east": -82.27
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8705/?format=api",
            "name": "NAD83 / Michigan South (ft) + NAVD88 height (ft)",
            "code": "EPSG:8705",
            "extent": {
                "south": 41.69,
                "west": -87.2,
                "north": 44.22,
                "east": -82.13
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8706/?format=api",
            "name": "NAD83 / Montana (ft) + NAVD88 height (ft)",
            "code": "EPSG:8706",
            "extent": {
                "south": 44.35,
                "west": -116.07,
                "north": 49.01,
                "east": -104.04
            }
        }
    ]
}