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=669
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=670",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=668",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8787/?format=api",
            "name": "NAD83 / Vermont (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8787",
            "extent": {
                "south": 42.72,
                "west": -73.44,
                "north": 45.03,
                "east": -71.5
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8788/?format=api",
            "name": "NAD83 / Virginia North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8788",
            "extent": {
                "south": 37.77,
                "west": -80.06,
                "north": 39.46,
                "east": -76.51
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8789/?format=api",
            "name": "NAD83 / Virginia South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8789",
            "extent": {
                "south": 36.54,
                "west": -83.68,
                "north": 38.28,
                "east": -75.31
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8790/?format=api",
            "name": "NAD83 / Washington North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8790",
            "extent": {
                "south": 47.08,
                "west": -124.79,
                "north": 49.05,
                "east": -117.02
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8791/?format=api",
            "name": "NAD83 / Washington South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8791",
            "extent": {
                "south": 45.54,
                "west": -124.4,
                "north": 47.61,
                "east": -116.91
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8792/?format=api",
            "name": "NAD83 / West Virginia North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8792",
            "extent": {
                "south": 38.76,
                "west": -81.76,
                "north": 40.64,
                "east": -77.72
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8793/?format=api",
            "name": "NAD83 / West Virginia South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8793",
            "extent": {
                "south": 37.2,
                "west": -82.65,
                "north": 39.17,
                "east": -79.05
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8794/?format=api",
            "name": "NAD83 / Wisconsin North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8794",
            "extent": {
                "south": 45.37,
                "west": -92.89,
                "north": 47.31,
                "east": -88.05
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8795/?format=api",
            "name": "NAD83 / Wisconsin Central (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8795",
            "extent": {
                "south": 43.98,
                "west": -92.89,
                "north": 45.8,
                "east": -86.25
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8796/?format=api",
            "name": "NAD83 / Wisconsin South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8796",
            "extent": {
                "south": 42.48,
                "west": -91.43,
                "north": 44.33,
                "east": -86.95
            }
        }
    ]
}