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=664
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=665",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=663",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8737/?format=api",
            "name": "NAD83 / Iowa North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8737",
            "extent": {
                "south": 41.85,
                "west": -96.65,
                "north": 43.51,
                "east": -90.15
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8738/?format=api",
            "name": "NAD83 / Iowa South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8738",
            "extent": {
                "south": 40.37,
                "west": -96.14,
                "north": 42.04,
                "east": -90.14
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8739/?format=api",
            "name": "NAD83 / Kansas North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8739",
            "extent": {
                "south": 38.52,
                "west": -102.06,
                "north": 40.01,
                "east": -94.58
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8740/?format=api",
            "name": "NAD83 / Kansas South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8740",
            "extent": {
                "south": 36.99,
                "west": -102.05,
                "north": 38.88,
                "east": -94.6
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8741/?format=api",
            "name": "NAD83 / Kentucky North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8741",
            "extent": {
                "south": 37.71,
                "west": -85.96,
                "north": 39.15,
                "east": -82.47
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8742/?format=api",
            "name": "NAD83 / Kentucky South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8742",
            "extent": {
                "south": 36.49,
                "west": -89.57,
                "north": 38.17,
                "east": -81.95
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8743/?format=api",
            "name": "NAD83 / Louisiana North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8743",
            "extent": {
                "south": 30.85,
                "west": -94.05,
                "north": 33.03,
                "east": -90.86
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8744/?format=api",
            "name": "NAD83 / Louisiana South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8744",
            "extent": {
                "south": 28.85,
                "west": -93.94,
                "north": 31.07,
                "east": -88.75
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8745/?format=api",
            "name": "NAD83 / Maine East (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8745",
            "extent": {
                "south": 43.88,
                "west": -70.03,
                "north": 47.47,
                "east": -66.91
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8746/?format=api",
            "name": "NAD83 / Maine West (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8746",
            "extent": {
                "south": 43.04,
                "west": -71.09,
                "north": 46.58,
                "east": -69.26
            }
        }
    ]
}