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=649
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=650",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=648",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8317/?format=api",
            "name": "NAD83(2011) / Oregon Dayville-Prairie City zone (m)",
            "code": "EPSG:8317",
            "extent": {
                "south": 44.24,
                "west": -119.89,
                "north": 44.94,
                "east": -118.61
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8318/?format=api",
            "name": "NAD83(2011) / Oregon Dayville-Prairie City zone (ft)",
            "code": "EPSG:8318",
            "extent": {
                "south": 44.24,
                "west": -119.89,
                "north": 44.94,
                "east": -118.61
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8319/?format=api",
            "name": "NAD83(2011) / Oregon Denio-Burns zone (m)",
            "code": "EPSG:8319",
            "extent": {
                "south": 41.88,
                "west": -119.41,
                "north": 43.54,
                "east": -117.67
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8320/?format=api",
            "name": "NAD83(2011) / Oregon Denio-Burns zone (ft)",
            "code": "EPSG:8320",
            "extent": {
                "south": 41.88,
                "west": -119.41,
                "north": 43.54,
                "east": -117.67
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8321/?format=api",
            "name": "NAD83(2011) / Oregon Halfway zone (m)",
            "code": "EPSG:8321",
            "extent": {
                "south": 44.61,
                "west": -117.61,
                "north": 45.28,
                "east": -116.63
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8322/?format=api",
            "name": "NAD83(2011) / Oregon Halfway zone (ft)",
            "code": "EPSG:8322",
            "extent": {
                "south": 44.61,
                "west": -117.61,
                "north": 45.28,
                "east": -116.63
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8323/?format=api",
            "name": "NAD83(2011) / Oregon Medford-Diamond Lake zone (m)",
            "code": "EPSG:8323",
            "extent": {
                "south": 42.53,
                "west": -122.73,
                "north": 43.34,
                "east": -121.71
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8324/?format=api",
            "name": "NAD83(2011) / Oregon Medford-Diamond Lake zone (ft)",
            "code": "EPSG:8324",
            "extent": {
                "south": 42.53,
                "west": -122.73,
                "north": 43.34,
                "east": -121.71
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8325/?format=api",
            "name": "NAD83(2011) / Oregon Mitchell zone (m)",
            "code": "EPSG:8325",
            "extent": {
                "south": 44.38,
                "west": -120.56,
                "north": 44.78,
                "east": -119.82
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8326/?format=api",
            "name": "NAD83(2011) / Oregon Mitchell zone (ft)",
            "code": "EPSG:8326",
            "extent": {
                "south": 44.38,
                "west": -120.56,
                "north": 44.78,
                "east": -119.82
            }
        }
    ]
}