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=650
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=651",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=649",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8327/?format=api",
            "name": "NAD83(2011) / Oregon North Central zone (m)",
            "code": "EPSG:8327",
            "extent": {
                "south": 44.89,
                "west": -121.79,
                "north": 45.95,
                "east": -119.03
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8328/?format=api",
            "name": "NAD83(2011) / Oregon North Central zone (ft)",
            "code": "EPSG:8328",
            "extent": {
                "south": 44.89,
                "west": -121.79,
                "north": 45.95,
                "east": -119.03
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8329/?format=api",
            "name": "NAD83(2011) / Oregon Ochoco Summit zone (m)",
            "code": "EPSG:8329",
            "extent": {
                "south": 44.21,
                "west": -121.01,
                "north": 44.61,
                "east": -120.31
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8330/?format=api",
            "name": "NAD83(2011) / Oregon Ochoco Summit zone (ft)",
            "code": "EPSG:8330",
            "extent": {
                "south": 44.21,
                "west": -121.01,
                "north": 44.61,
                "east": -120.31
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8331/?format=api",
            "name": "NAD83(2011) / Oregon Owyhee zone (m)",
            "code": "EPSG:8331",
            "extent": {
                "south": 41.88,
                "west": -118.14,
                "north": 43.54,
                "east": -116.85
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8332/?format=api",
            "name": "NAD83(2011) / Oregon Owyhee zone (ft)",
            "code": "EPSG:8332",
            "extent": {
                "south": 41.88,
                "west": -118.14,
                "north": 43.54,
                "east": -116.85
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8333/?format=api",
            "name": "NAD83(2011) / Oregon Pilot Rock-Ukiah zone (m)",
            "code": "EPSG:8333",
            "extent": {
                "south": 44.99,
                "west": -119.65,
                "north": 46.04,
                "east": -118.11
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8334/?format=api",
            "name": "NAD83(2011) / Oregon Pilot Rock-Ukiah zone (ft)",
            "code": "EPSG:8334",
            "extent": {
                "south": 44.99,
                "west": -119.65,
                "north": 46.04,
                "east": -118.11
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8335/?format=api",
            "name": "NAD83(2011) / Oregon Prairie City-Brogan zone (m)",
            "code": "EPSG:8335",
            "extent": {
                "south": 44.16,
                "west": -118.77,
                "north": 45.02,
                "east": -117.48
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8336/?format=api",
            "name": "NAD83(2011) / Oregon Prairie City-Brogan zone (ft)",
            "code": "EPSG:8336",
            "extent": {
                "south": 44.16,
                "west": -118.77,
                "north": 45.02,
                "east": -117.48
            }
        }
    ]
}