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=8
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=9",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=7",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2012/?format=api",
            "name": "NAD27(CGQ77) / SCoPQ zone 6",
            "code": "EPSG:2012",
            "extent": {
                "south": 47.31,
                "west": -69.0,
                "north": 59.0,
                "east": -66.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2013/?format=api",
            "name": "NAD27(CGQ77) / SCoPQ zone 7",
            "code": "EPSG:2013",
            "extent": {
                "south": 45.01,
                "west": -72.0,
                "north": 61.8,
                "east": -69.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20135/?format=api",
            "name": "Adindan / UTM zone 35N",
            "code": "EPSG:20135",
            "extent": {
                "south": 4.21,
                "west": 23.99,
                "north": 22.01,
                "east": 30.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20136/?format=api",
            "name": "Adindan / UTM zone 36N",
            "code": "EPSG:20136",
            "extent": {
                "south": 3.49,
                "west": 29.99,
                "north": 22.24,
                "east": 36.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20137/?format=api",
            "name": "Adindan / UTM zone 37N",
            "code": "EPSG:20137",
            "extent": {
                "south": 3.4,
                "west": 36.0,
                "north": 22.01,
                "east": 42.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20138/?format=api",
            "name": "Adindan / UTM zone 38N",
            "code": "EPSG:20138",
            "extent": {
                "south": 4.11,
                "west": 42.0,
                "north": 12.85,
                "east": 47.99
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2014/?format=api",
            "name": "NAD27(CGQ77) / SCoPQ zone 8",
            "code": "EPSG:2014",
            "extent": {
                "south": 44.99,
                "west": -75.0,
                "north": 62.53,
                "east": -72.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2015/?format=api",
            "name": "NAD27(CGQ77) / SCoPQ zone 9",
            "code": "EPSG:2015",
            "extent": {
                "south": 45.37,
                "west": -78.0,
                "north": 62.62,
                "east": -75.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2016/?format=api",
            "name": "NAD27(CGQ77) / SCoPQ zone 10",
            "code": "EPSG:2016",
            "extent": {
                "south": 46.23,
                "west": -79.85,
                "north": 62.45,
                "east": -78.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2017/?format=api",
            "name": "NAD27(76) / MTM zone 8",
            "code": "EPSG:2017",
            "extent": {
                "south": 44.98,
                "west": -75.0,
                "north": 45.65,
                "east": -74.35
            }
        }
    ]
}