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=11
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=12",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=10",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2027/?format=api",
            "name": "NAD27(76) / UTM zone 15N",
            "code": "EPSG:2027",
            "extent": {
                "south": 48.03,
                "west": -95.17,
                "north": 56.2,
                "east": -90.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2028/?format=api",
            "name": "NAD27(76) / UTM zone 16N",
            "code": "EPSG:2028",
            "extent": {
                "south": 46.11,
                "west": -90.0,
                "north": 56.9,
                "east": -84.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2029/?format=api",
            "name": "NAD27(76) / UTM zone 17N",
            "code": "EPSG:2029",
            "extent": {
                "south": 41.67,
                "west": -84.0,
                "north": 55.37,
                "east": -78.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2030/?format=api",
            "name": "NAD27(76) / UTM zone 18N",
            "code": "EPSG:2030",
            "extent": {
                "south": 43.63,
                "west": -78.0,
                "north": 46.25,
                "east": -74.35
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2031/?format=api",
            "name": "NAD27(CGQ77) / UTM zone 17N",
            "code": "EPSG:2031",
            "extent": {
                "south": 46.23,
                "west": -79.85,
                "north": 62.45,
                "east": -78.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2032/?format=api",
            "name": "NAD27(CGQ77) / UTM zone 18N",
            "code": "EPSG:2032",
            "extent": {
                "south": 44.99,
                "west": -78.0,
                "north": 62.62,
                "east": -72.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2033/?format=api",
            "name": "NAD27(CGQ77) / UTM zone 19N",
            "code": "EPSG:2033",
            "extent": {
                "south": 45.01,
                "west": -72.0,
                "north": 61.8,
                "east": -66.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2034/?format=api",
            "name": "NAD27(CGQ77) / UTM zone 20N",
            "code": "EPSG:2034",
            "extent": {
                "south": 47.16,
                "west": -66.0,
                "north": 60.42,
                "east": -60.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20348/?format=api",
            "name": "AGD84 / AMG zone 48",
            "code": "EPSG:20348",
            "extent": {
                "south": -56.0,
                "west": 102.0,
                "north": -10.0,
                "east": 108.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20349/?format=api",
            "name": "AGD84 / AMG zone 49",
            "code": "EPSG:20349",
            "extent": {
                "south": -37.84,
                "west": 109.23,
                "north": -17.19,
                "east": 114.0
            }
        }
    ]
}