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=659
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=660",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=658",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8683/?format=api",
            "name": "SRB_ETRS89",
            "code": "EPSG:8683",
            "extent": {
                "south": 42.23,
                "west": 18.81,
                "north": 46.19,
                "east": 23.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8684/?format=api",
            "name": "SRB_ETRS89",
            "code": "EPSG:8684",
            "extent": {
                "south": 42.23,
                "west": 18.81,
                "north": 46.19,
                "east": 23.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8685/?format=api",
            "name": "SRB_ETRS89",
            "code": "EPSG:8685",
            "extent": {
                "south": 42.23,
                "west": 18.81,
                "north": 46.19,
                "east": 23.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8686/?format=api",
            "name": "MGI 1901 / Slovenia Grid",
            "code": "EPSG:8686",
            "extent": {
                "south": 45.42,
                "west": 13.38,
                "north": 46.88,
                "east": 16.61
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8687/?format=api",
            "name": "Slovenia 1996 / UTM zone 33N",
            "code": "EPSG:8687",
            "extent": {
                "south": 45.42,
                "west": 13.38,
                "north": 46.88,
                "east": 16.61
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8690/?format=api",
            "name": "SVS2010 height",
            "code": "EPSG:8690",
            "extent": {
                "south": 45.42,
                "west": 13.38,
                "north": 46.88,
                "east": 16.61
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8691/?format=api",
            "name": "SRB_VRS12 height",
            "code": "EPSG:8691",
            "extent": {
                "south": 42.23,
                "west": 18.81,
                "north": 46.19,
                "east": 23.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8692/?format=api",
            "name": "NAD83(MA11) / UTM zone 54N",
            "code": "EPSG:8692",
            "extent": {
                "south": 10.95,
                "west": 141.19,
                "north": 23.9,
                "east": 144.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8693/?format=api",
            "name": "NAD83(MA11) / UTM zone 55N",
            "code": "EPSG:8693",
            "extent": {
                "south": 11.05,
                "west": 144.0,
                "north": 23.9,
                "east": 149.55
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8694/?format=api",
            "name": "Camacupa 2015",
            "code": "EPSG:8694",
            "extent": {
                "south": -18.02,
                "west": 8.2,
                "north": -4.38,
                "east": 24.09
            }
        }
    ]
}