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=671
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=672",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=670",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8807/?format=api",
            "name": "NAD83 / Alaska zone 5 + NAVD88 height",
            "code": "EPSG:8807",
            "extent": {
                "south": 55.72,
                "west": -156.0,
                "north": 71.28,
                "east": -151.86
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8808/?format=api",
            "name": "NAD83 / Alaska zone 6 + NAVD88 height",
            "code": "EPSG:8808",
            "extent": {
                "south": 54.89,
                "west": -160.0,
                "north": 71.4,
                "east": -155.99
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8809/?format=api",
            "name": "NAD83 / Alaska zone 7 + NAVD88 height",
            "code": "EPSG:8809",
            "extent": {
                "south": 54.32,
                "west": -164.01,
                "north": 70.74,
                "east": -160.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8810/?format=api",
            "name": "NAD83 / Alaska zone 8 + NAVD88 height",
            "code": "EPSG:8810",
            "extent": {
                "south": 54.34,
                "west": -168.26,
                "north": 69.05,
                "east": -164.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8811/?format=api",
            "name": "NAD83 / Alaska zone 9 + NAVD88 height",
            "code": "EPSG:8811",
            "extent": {
                "south": 56.49,
                "west": -173.16,
                "north": 65.82,
                "east": -168.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8812/?format=api",
            "name": "NAD83 / Alaska zone 10 + NAVD88 height",
            "code": "EPSG:8812",
            "extent": {
                "south": 51.3,
                "west": -164.84,
                "north": 54.34,
                "east": 172.42
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8813/?format=api",
            "name": "NAD83 / Missouri East + NAVD88 height",
            "code": "EPSG:8813",
            "extent": {
                "south": 35.98,
                "west": -91.97,
                "north": 40.61,
                "east": -89.1
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8814/?format=api",
            "name": "NAD83 / Missouri Central + NAVD88 height",
            "code": "EPSG:8814",
            "extent": {
                "south": 36.48,
                "west": -93.79,
                "north": 40.61,
                "east": -91.41
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8815/?format=api",
            "name": "NAD83 / Missouri West + NAVD88 height",
            "code": "EPSG:8815",
            "extent": {
                "south": 36.48,
                "west": -95.77,
                "north": 40.59,
                "east": -93.48
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8816/?format=api",
            "name": "MTRF-2000",
            "code": "EPSG:8816",
            "extent": {
                "south": 15.61,
                "west": 34.44,
                "north": 32.16,
                "east": 55.67
            }
        }
    ]
}