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=13
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=14",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=12",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2036/?format=api",
            "name": "NAD83(CSRS98) / New Brunswick Stereo",
            "code": "EPSG:2036",
            "extent": {
                "south": 44.56,
                "west": -69.05,
                "north": 48.07,
                "east": -63.7
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2037/?format=api",
            "name": "NAD83(CSRS98) / UTM zone 19N",
            "code": "EPSG:2037",
            "extent": {
                "south": 44.6,
                "west": -72.0,
                "north": 61.5,
                "east": -66.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2038/?format=api",
            "name": "NAD83(CSRS98) / UTM zone 20N",
            "code": "EPSG:2038",
            "extent": {
                "south": 43.2,
                "west": -66.0,
                "north": 60.0,
                "east": -60.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2039/?format=api",
            "name": "Israel 1993 / Israeli TM Grid",
            "code": "EPSG:2039",
            "extent": {
                "south": 29.45,
                "west": 34.17,
                "north": 33.28,
                "east": 35.69
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2040/?format=api",
            "name": "Locodjo 1965 / UTM zone 30N",
            "code": "EPSG:2040",
            "extent": {
                "south": 4.92,
                "west": -6.0,
                "north": 10.46,
                "east": -2.48
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2041/?format=api",
            "name": "Abidjan 1987 / UTM zone 30N",
            "code": "EPSG:2041",
            "extent": {
                "south": 4.92,
                "west": -6.0,
                "north": 10.46,
                "east": -2.48
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2042/?format=api",
            "name": "Locodjo 1965 / UTM zone 29N",
            "code": "EPSG:2042",
            "extent": {
                "south": 4.29,
                "west": -8.61,
                "north": 10.74,
                "east": -6.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2043/?format=api",
            "name": "Abidjan 1987 / UTM zone 29N",
            "code": "EPSG:2043",
            "extent": {
                "south": 4.29,
                "west": -8.61,
                "north": 10.74,
                "east": -6.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20436/?format=api",
            "name": "Ain el Abd / UTM zone 36N",
            "code": "EPSG:20436",
            "extent": {
                "south": 26.82,
                "west": 34.51,
                "north": 29.38,
                "east": 36.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20437/?format=api",
            "name": "Ain el Abd / UTM zone 37N",
            "code": "EPSG:20437",
            "extent": {
                "south": 16.59,
                "west": 36.0,
                "north": 32.16,
                "east": 42.0
            }
        }
    ]
}