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=9
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=10",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=8",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2018/?format=api",
            "name": "NAD27(76) / MTM zone 9",
            "code": "EPSG:2018",
            "extent": {
                "south": 43.63,
                "west": -78.0,
                "north": 46.25,
                "east": -75.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2019/?format=api",
            "name": "NAD27(76) / MTM zone 10",
            "code": "EPSG:2019",
            "extent": {
                "south": 42.26,
                "west": -81.0,
                "north": 47.33,
                "east": -77.99
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2020/?format=api",
            "name": "NAD27(76) / MTM zone 11",
            "code": "EPSG:2020",
            "extent": {
                "south": 41.67,
                "west": -83.6,
                "north": 46.0,
                "east": -81.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2021/?format=api",
            "name": "NAD27(76) / MTM zone 12",
            "code": "EPSG:2021",
            "extent": {
                "south": 46.0,
                "west": -82.5,
                "north": 55.21,
                "east": -79.5
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2022/?format=api",
            "name": "NAD27(76) / MTM zone 13",
            "code": "EPSG:2022",
            "extent": {
                "south": 46.0,
                "west": -85.5,
                "north": 55.59,
                "east": -82.5
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2023/?format=api",
            "name": "NAD27(76) / MTM zone 14",
            "code": "EPSG:2023",
            "extent": {
                "south": 47.17,
                "west": -88.5,
                "north": 56.7,
                "east": -85.5
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2024/?format=api",
            "name": "NAD27(76) / MTM zone 15",
            "code": "EPSG:2024",
            "extent": {
                "south": 47.97,
                "west": -91.5,
                "north": 56.9,
                "east": -88.5
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20248/?format=api",
            "name": "AGD66 / AMG zone 48",
            "code": "EPSG:20248",
            "extent": {
                "south": -56.0,
                "west": 102.0,
                "north": -10.0,
                "east": 108.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20249/?format=api",
            "name": "AGD66 / AMG zone 49",
            "code": "EPSG:20249",
            "extent": {
                "south": -37.84,
                "west": 109.23,
                "north": -17.19,
                "east": 114.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2025/?format=api",
            "name": "NAD27(76) / MTM zone 16",
            "code": "EPSG:2025",
            "extent": {
                "south": 48.06,
                "west": -94.5,
                "north": 55.2,
                "east": -91.5
            }
        }
    ]
}