Endpoint for interacting with locations.

Query parameters

uuid: Text filter on uuid. Field filter method exact is supported.

name: Text filter on name. Field filter methods exact, startswith are supported.

code: Text filter on code. Field filter methods exact, startswith are supported.

access_modifier Filter on access_modifier, options are 'Public', 'Private', 'Common', or 'Hidden'.

created: Temporal filter on created. Supports various lookup types (exact, lt, lte, gt, gte; created__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

last_modified: Temporal filter on last_modified. Supports various lookup types (exact, lt, lte, gt, gte; last_modified__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

timeseries__start: Temporal filter on start field of the related timeseries. Supports various lookup types (exact, lt, lte, gt, gte; timeseries__start__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

timeseries__end: Temporal filter on end field of the related timeseries. Supports various lookup types (exact, lt, lte, gt, gte; timeseries__end__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

organisation__uuid Text filter on organisation__uuid. Field filter method exact is supported.

geom_isnull: Boolean filter on geometry.

geom_within: Spatial filter on geometry. Supports WKT, HEXEWKB, and GeoJSON.

object_id: Number filter on the id attribute of an object. Field filter method exact is supported. To be used in combination with object_type.

object__id: Numerical filter on object__id. Field filter method exact is supported.

object__type: Text filter on object__type. Field filter methods exact is supported.

ordering: Offers basic ordering functionality on the name and last_modified attribute of locations. Orderings may be reversed by prefixing the attribute with '-'.

page: To prevent system overloads, list-view results are paginated. This parameter specifies which page to return.

page_size: The maximum number of results to return in list-view. The default is 10.

Examples

?name__startswith=gemaal

?name=gemaal

?code=ABC

?code__startswith=A

?timeseries__start__gte=2017-01-01T00:00:00Z

?timeseries__end__lt=2018-01-01T00:00:00Z

?organisation__uuid=b10eaf1f-2867-4ffb-8f4a-5eb9bd37dbf1

?access_modifier=Private

?access_modifier=100

?created__gte=2017-01-01T00:00:00Z

?last_modified__lt=2018-01-01T00:00:00Z

?geom_isnull=false

?geom_within=POLYGON((4.87 52.73, 4.87 52.79, 4.98 52.79, 4.98 52.73,
4.87 52.73))

?geom_within={"type": "Polygon", "coordinates": [[[4.87, 52.73],
[4.87, 52.79], [4.98, 52.79], [4.98, 52.73], [4.87, 52.73]]]}

?object__id=1

?object__type=building

?ordering=name
GET /api/v4/locations/?format=api&page=5964
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 59876,
    "next": "https://demo.lizard.net/api/v4/locations/?format=api&page=5965",
    "previous": "https://demo.lizard.net/api/v4/locations/?format=api&page=5963",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/locations/79767552-5b61-427a-a11c-3b9075a8beee/?format=api",
            "uuid": "79767552-5b61-427a-a11c-3b9075a8beee",
            "name": "39HM016001",
            "code": "39HM016001",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    5.611349060626289,
                    51.86902334376683,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e7d66583-43b2-4c90-b118-f2093798885a/?format=api",
                "uuid": "e7d66583-43b2-4c90-b118-f2093798885a",
                "name": "Vitens NV"
            },
            "object": {
                "id": 124229,
                "type": "filter"
            },
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "id": 28794,
                    "glue": "geen",
                    "aquifer": 0,
                    "tubeType": "standaardbuis",
                    "tubeNumber": 1,
                    "removalDate": null,
                    "dateModified": "2024-09-18T07:20:37Z",
                    "geoOhmCables": [],
                    "sockMaterial": "geen",
                    "tubeMaterial": "pvc",
                    "filterInRoute": true,
                    "temporal_data": [
                        {
                            "start": "2024-06-18T10:00:00Z",
                            "initial": true,
                            "broEvent": null,
                            "tubeStatus": "gebruiksklaar",
                            "dateModified": "2024-09-12T10:25:44Z",
                            "referenceLevel": 6.49,
                            "tubeTopDiameter": 57.0,
                            "insertedPartLength": null,
                            "insertedPartPresent": false,
                            "insertedPartDiameter": null,
                            "insertedPartMaterial": null,
                            "tubeTopPositioningMethod": "RTKGPS20tot100cm"
                        }
                    ],
                    "filterTopDepth": 4.18,
                    "broid_gld_imbro": null,
                    "tubeBottomDepth": 2.18,
                    "broid_gld_imbroa": null,
                    "constructionDate": "2024-06-18T00:00:00Z",
                    "variableDiameter": "nee",
                    "filterBottomDepth": 2.18,
                    "sedimentSumpLength": null,
                    "sedimentSumpPresent": false,
                    "tubePackingMaterial": "bentonietFiltergrind",
                    "numberOfGeoOhmCables": 0,
                    "artesianWellCapPresent": false
                }
            },
            "created": "2024-09-26T14:37:29.326718Z",
            "last_modified": "2024-09-27T07:10:39.323367Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/a122ae18-6448-4e35-ae2f-d84f3b812944/?format=api",
            "uuid": "a122ae18-6448-4e35-ae2f-d84f3b812944",
            "name": "40DM005",
            "code": "40DM005",
            "geometry": null,
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e7d66583-43b2-4c90-b118-f2093798885a/?format=api",
                "uuid": "e7d66583-43b2-4c90-b118-f2093798885a",
                "name": "Vitens NV"
            },
            "object": null,
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "crs": "RD",
                    "kpi": {
                        "inspectie": [],
                        "waterpassing": [],
                        "schoongepompt": [],
                        "kabel_vervangen": [
                            "2024-09-17T09:46:00Z"
                        ],
                        "meetinstrument_vervangen": [
                            "2024-09-17T09:46:00Z"
                        ]
                    },
                    "owner": null,
                    "nitgCode": null,
                    "wellCode": null,
                    "broEvents": [],
                    "broid_gmw": null,
                    "coordinates": [
                        199383.99,
                        431302.6
                    ],
                    "dateCreated": "2024-09-11T13:01:59Z",
                    "sync_to_bro": false,
                    "complete_bro": false,
                    "dateModified": "2024-09-11T13:07:23Z",
                    "date_changed": null,
                    "projectNumber": null,
                    "qualityRegime": "imbro",
                    "synced_to_bro": false,
                    "temporal_data": [
                        {
                            "start": "2024-07-28T22:00:00Z",
                            "offset": 0,
                            "initial": true,
                            "broEvent": null,
                            "dateModified": "2024-09-11T13:01:59Z",
                            "verticalDatum": "NAP",
                            "wellHeadProtector": "kokerMetaal",
                            "groundLevelPosition": 12.276,
                            "localVerticalReferencePoint": "NAP",
                            "groundLevelPositioningMethod": "waterpassing0tot2cm"
                        }
                    ],
                    "wellStability": "instabiel",
                    "actueel_in_bro": false,
                    "deliver_to_bro": null,
                    "deliveryContext": "publiekeTaak",
                    "initialFunction": "kwaliteitStand",
                    "groundLevelStable": "nee",
                    "constructionStandard": "NEN5766",
                    "date_to_be_corrected": null,
                    "wellConstructionDate": "2024-07-29T00:00:00Z",
                    "scheduled_for_deletion": false,
                    "numberOfMonitoringTubes": 1,
                    "objectIdAccountableParty": "40DM005",
                    "horizontalPositioningMethod": "RTKGPS0tot2cm",
                    "maintenanceResponsibleParty": null
                }
            },
            "created": "2024-09-26T14:37:44.807854Z",
            "last_modified": "2024-09-26T14:38:59.744997Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/00aaec5a-6776-40db-a603-df5f5193d297/?format=api",
            "uuid": "00aaec5a-6776-40db-a603-df5f5193d297",
            "name": "40DM005001",
            "code": "40DM005001",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    6.031637487462415,
                    51.86850288504697,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e7d66583-43b2-4c90-b118-f2093798885a/?format=api",
                "uuid": "e7d66583-43b2-4c90-b118-f2093798885a",
                "name": "Vitens NV"
            },
            "object": {
                "id": 124230,
                "type": "filter"
            },
            "access_modifier": "Public",
            "extra_metadata": {
                "bro": {
                    "id": 28768,
                    "glue": "ongespecificeerd",
                    "aquifer": null,
                    "tubeType": "standaardbuis",
                    "tubeNumber": 1,
                    "removalDate": null,
                    "dateModified": "2024-09-17T09:50:01Z",
                    "geoOhmCables": [],
                    "sockMaterial": "geen",
                    "tubeMaterial": "pvc",
                    "filterInRoute": true,
                    "temporal_data": [
                        {
                            "start": "2024-09-17T09:46:00Z",
                            "initial": false,
                            "broEvent": "60618",
                            "tubeStatus": "gebruiksklaar",
                            "dateModified": "2024-09-17T09:50:01Z",
                            "referenceLevel": 12.96,
                            "tubeTopDiameter": 57.0,
                            "insertedPartLength": null,
                            "insertedPartPresent": false,
                            "insertedPartDiameter": null,
                            "insertedPartMaterial": null,
                            "tubeTopPositioningMethod": "waterpassing0tot2cm"
                        }
                    ],
                    "filterTopDepth": 5.26,
                    "broid_gld_imbro": null,
                    "tubeBottomDepth": 4.26,
                    "broid_gld_imbroa": null,
                    "constructionDate": "2024-07-29T00:00:00Z",
                    "variableDiameter": "nee",
                    "filterBottomDepth": 4.26,
                    "sedimentSumpLength": null,
                    "sedimentSumpPresent": false,
                    "tubePackingMaterial": "bentoniet",
                    "numberOfGeoOhmCables": 0,
                    "artesianWellCapPresent": false
                }
            },
            "created": "2024-09-26T14:37:45.275923Z",
            "last_modified": "2024-09-27T07:10:41.544688Z",
            "last_modified_by": "vitens_api"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/f0d49f1c-8b01-4ee8-84bd-0761b9eccd29/?format=api",
            "uuid": "f0d49f1c-8b01-4ee8-84bd-0761b9eccd29",
            "name": "EU Transparency portal",
            "code": "Entsoe_EU",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    5.479540670125587,
                    52.507344383479065,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/188a569b-f0ac-4e98-81db-499de07f7582/?format=api",
                "uuid": "188a569b-f0ac-4e98-81db-499de07f7582",
                "name": "Zuiderzeeland"
            },
            "object": null,
            "access_modifier": "Public",
            "extra_metadata": {},
            "created": "2024-09-30T13:24:56.306782Z",
            "last_modified": "2024-10-01T05:00:04.130722Z",
            "last_modified_by": "sa_zuiderzeeland"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/9227c3e9-cf9f-4a75-b3b5-54f435f5aec5/?format=api",
            "uuid": "9227c3e9-cf9f-4a75-b3b5-54f435f5aec5",
            "name": "Windpark Hanze Voorspelling",
            "code": "HANZE-ZZL_PP",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    5.769412752852522,
                    52.555493520389085,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/188a569b-f0ac-4e98-81db-499de07f7582/?format=api",
                "uuid": "188a569b-f0ac-4e98-81db-499de07f7582",
                "name": "Zuiderzeeland"
            },
            "object": null,
            "access_modifier": "Public",
            "extra_metadata": {},
            "created": "2024-09-30T13:31:13.387378Z",
            "last_modified": "2024-10-01T05:00:04.283056Z",
            "last_modified_by": "sa_zuiderzeeland"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/7fecb86d-3325-41d5-a043-601909d9c989/?format=api",
            "uuid": "7fecb86d-3325-41d5-a043-601909d9c989",
            "name": "Windpark Hanze Opbrengst",
            "code": "872029955480101281TM",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    5.769412752852522,
                    52.555493520389085,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/188a569b-f0ac-4e98-81db-499de07f7582/?format=api",
                "uuid": "188a569b-f0ac-4e98-81db-499de07f7582",
                "name": "Zuiderzeeland"
            },
            "object": null,
            "access_modifier": "Public",
            "extra_metadata": {},
            "created": "2024-09-30T13:31:13.387516Z",
            "last_modified": "2024-10-01T05:00:04.347496Z",
            "last_modified_by": "sa_zuiderzeeland"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/abb07cd9-31f6-49a1-ba61-a4a8b26cb471/?format=api",
            "uuid": "abb07cd9-31f6-49a1-ba61-a4a8b26cb471",
            "name": "Lizard time series tutorial",
            "code": "1234_ab1",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    4.683839188453384,
                    52.49446759721568,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/a1993f6e-1356-4e96-87ae-03a3604463f9/?format=api",
                "uuid": "a1993f6e-1356-4e96-87ae-03a3604463f9",
                "name": "N&S Demo"
            },
            "object": null,
            "access_modifier": "Public",
            "extra_metadata": {},
            "created": "2024-10-03T12:32:12.746912Z",
            "last_modified": "2024-10-03T12:32:12.746900Z",
            "last_modified_by": "sven.vanos@nelen-schuurmans.nl"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/6852e414-2c20-4291-a9e8-43afadcd85cb/?format=api",
            "uuid": "6852e414-2c20-4291-a9e8-43afadcd85cb",
            "name": "Stuw Centaurenstraat, hoofdmeter, inkoop",
            "code": "A04741553-HFD/Ap",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    5.148876846714538,
                    52.35942301211775,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/188a569b-f0ac-4e98-81db-499de07f7582/?format=api",
                "uuid": "188a569b-f0ac-4e98-81db-499de07f7582",
                "name": "Zuiderzeeland"
            },
            "object": null,
            "access_modifier": "Public",
            "extra_metadata": {},
            "created": "2024-10-08T13:44:03.170730Z",
            "last_modified": "2024-10-09T05:00:03.877608Z",
            "last_modified_by": "sa_zuiderzeeland"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/2a8bda79-a619-4ced-a45b-3c2ff472185b/?format=api",
            "uuid": "2a8bda79-a619-4ced-a45b-3c2ff472185b",
            "name": "STADSGRACHT Noorderplassen West, Grootzeilbrug",
            "code": "26AZ-39367",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    5.170684552487407,
                    52.396880201653694,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/188a569b-f0ac-4e98-81db-499de07f7582/?format=api",
                "uuid": "188a569b-f0ac-4e98-81db-499de07f7582",
                "name": "Zuiderzeeland"
            },
            "object": null,
            "access_modifier": "Public",
            "extra_metadata": {},
            "created": "2024-10-10T09:46:07.029532Z",
            "last_modified": "2024-10-11T05:00:04.137690Z",
            "last_modified_by": "sa_zuiderzeeland"
        },
        {
            "url": "https://demo.lizard.net/api/v4/locations/d179b4b5-7d35-4819-835f-32808dfa201e/?format=api",
            "uuid": "d179b4b5-7d35-4819-835f-32808dfa201e",
            "name": "WESTERMEERTOCHT, thv kavel D13/D53, langs Westermeerweg",
            "code": "20EN-40034",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    5.606744071021274,
                    52.68562582476547,
                    0.0
                ]
            },
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/188a569b-f0ac-4e98-81db-499de07f7582/?format=api",
                "uuid": "188a569b-f0ac-4e98-81db-499de07f7582",
                "name": "Zuiderzeeland"
            },
            "object": null,
            "access_modifier": "Public",
            "extra_metadata": {},
            "created": "2024-10-10T09:46:07.029725Z",
            "last_modified": "2024-10-11T05:00:04.217316Z",
            "last_modified_by": "sa_zuiderzeeland"
        }
    ]
}