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=665
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=666",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=664",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8747/?format=api",
            "name": "NAD83 / Maryland (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8747",
            "extent": {
                "south": 37.97,
                "west": -79.49,
                "north": 39.73,
                "east": -74.97
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8748/?format=api",
            "name": "NAD83 / Massachusetts Mainland (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8748",
            "extent": {
                "south": 41.46,
                "west": -73.5,
                "north": 42.89,
                "east": -69.86
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8749/?format=api",
            "name": "NAD83 / Massachusetts Island (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8749",
            "extent": {
                "south": 41.19,
                "west": -70.91,
                "north": 41.51,
                "east": -69.89
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8750/?format=api",
            "name": "NAD83 / Minnesota North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8750",
            "extent": {
                "south": 46.64,
                "west": -97.22,
                "north": 49.38,
                "east": -89.49
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8751/?format=api",
            "name": "NAD83 / Minnesota Central (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8751",
            "extent": {
                "south": 45.28,
                "west": -96.86,
                "north": 47.48,
                "east": -92.29
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8752/?format=api",
            "name": "NAD83 / Minnesota South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8752",
            "extent": {
                "south": 43.49,
                "west": -96.85,
                "north": 45.59,
                "east": -91.21
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8753/?format=api",
            "name": "NAD83 / Mississippi East (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8753",
            "extent": {
                "south": 30.01,
                "west": -89.97,
                "north": 35.01,
                "east": -88.09
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8754/?format=api",
            "name": "NAD83 / Mississippi West (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8754",
            "extent": {
                "south": 31.0,
                "west": -91.65,
                "north": 35.01,
                "east": -89.37
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8755/?format=api",
            "name": "NAD83 / Nebraska (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8755",
            "extent": {
                "south": 39.99,
                "west": -104.06,
                "north": 43.01,
                "east": -95.3
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8756/?format=api",
            "name": "NAD83 / Nevada East (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8756",
            "extent": {
                "south": 34.99,
                "west": -117.01,
                "north": 42.0,
                "east": -114.03
            }
        }
    ]
}