List assets of type PressurePipe

Query parameters:

organisation Filter by organisation. Supports lookups on uuid and name.

code Exact filter on the code field. The (case-sensitive) startswith lookup is also supported.

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.

geometry The following lookups are available: isnull, contained, contains, contains_properly, covered_by, covers, crosses, disjoint, equals, intersects, overlaps, and within. Query geometries can be supplied as WKT, EWKT or HEXEWKB.

boundary__id: Filter on geometry of the region/boundary with the id boundary__id. For a list of regions/boundaries, see the boundary endpoint /api/v4/boundaries/

boundary__code: Filter on geometry of the region/boundary with the id boundary__code. For a list of regions/boundaries, see the boundary endpoint /api/v4/boundaries/

boundary__type: Spatial filter on geometry, whereby geometry is specified by a region/boundary object (see below) and filter operator is ST_Intersects. Available types are COUNTRY, PROVINCE, WATER_BOARD, MUNICIPALITY, CATCHMENT, POLDER, FIXED_DRAINAGE_LEVEL_AREA, PUMPED_DRAINAGE_AREA, MAIN_PUMPED_DRAINAGE_AREA, DISTRICT, NEIGHBOURHOOD, CADASTRE, PLANTATION, FIELD, CITY, and CUSTOM

boundary__name: Filter on name of the region/boundary with the name boundary__name. Requires boundary__type. For a list of regions/boundaries, see the boundary endpoint /api/v4/boundaries/

simplify: Simplify the query geometries (in WGS84) using this value as tolerance. A higher value may result in a better response time for detailed geometries. Defaults to 0.00001 degrees (approx. 1 meter). NB: Returned geometries are unaffected.

page_size The number of results on a single page. Defaults to 10, maximum is 100. Note that pagination is disabled for the root endpoint: the response will be truncated to page_size.

Custom route: search

Full-text search in 'code' and 'name' fields. Results are ranked.

Examples:

?code=ABC_2123

?code__startswith=ABC

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

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

?organisation__name__startswith=Nelen

?organisation__uuid=61f5a464-c350-44c1-9bc7-d4b42d7f58cb

?organisation__name__icontains=Schuur

?geometry__intersects=POINT (5 52)

?boundary__id=198

?boundary__code=NL_GM0344

?boundary__type=PROVINCE&boundary__name=Utrecht

/search/abc/
GET /api/v4/pressurepipes/?page=3
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 1370,
    "next": "https://demo.lizard.net/api/v4/pressurepipes/?page=4",
    "previous": "https://demo.lizard.net/api/v4/pressurepipes/?page=2",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/pressurepipes/6257/",
            "id": 6257,
            "code": "PL_20",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/474afd21-2f2e-4b4f-8261-5142f1d67acb/",
                "uuid": "474afd21-2f2e-4b4f-8261-5142f1d67acb",
                "name": "Hoogheemraadschap Hollands Noorderkwartier"
            },
            "geometry": {
                "type": "LineString",
                "coordinates": [
                    [
                        5.044028280407523,
                        52.50923822888017,
                        0.0
                    ],
                    [
                        5.044027910422581,
                        52.5092289708175,
                        0.0
                    ]
                ]
            },
            "last_modified": "2019-06-25T07:26:58.971073Z",
            "created": "2014-10-22T10:29:02.270471Z",
            "image_url": "",
            "length": null,
            "name": "",
            "type": "transport",
            "material": "",
            "diameter": null,
            "shape": "",
            "year_of_construction": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/pressurepipes/6258/",
            "id": 6258,
            "code": "PL_21",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/474afd21-2f2e-4b4f-8261-5142f1d67acb/",
                "uuid": "474afd21-2f2e-4b4f-8261-5142f1d67acb",
                "name": "Hoogheemraadschap Hollands Noorderkwartier"
            },
            "geometry": {
                "type": "LineString",
                "coordinates": [
                    [
                        5.044030591158925,
                        52.509301615404866,
                        0.0
                    ],
                    [
                        5.044029544574531,
                        52.509276491776426,
                        0.0
                    ],
                    [
                        5.044028221210837,
                        52.50923826465849,
                        0.0
                    ],
                    [
                        5.044027910422581,
                        52.5092289708175,
                        0.0
                    ]
                ]
            },
            "last_modified": "2019-06-25T07:26:58.971073Z",
            "created": "2014-10-22T10:29:02.276550Z",
            "image_url": "",
            "length": null,
            "name": "",
            "type": "transport",
            "material": "",
            "diameter": null,
            "shape": "",
            "year_of_construction": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/pressurepipes/6259/",
            "id": 6259,
            "code": "PL_22",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/474afd21-2f2e-4b4f-8261-5142f1d67acb/",
                "uuid": "474afd21-2f2e-4b4f-8261-5142f1d67acb",
                "name": "Hoogheemraadschap Hollands Noorderkwartier"
            },
            "geometry": {
                "type": "LineString",
                "coordinates": [
                    [
                        5.044030591158925,
                        52.509301615404866,
                        0.0
                    ],
                    [
                        5.044029603282659,
                        52.50927651890833,
                        0.0
                    ],
                    [
                        5.044028280407523,
                        52.50923822888017,
                        0.0
                    ]
                ]
            },
            "last_modified": "2019-06-25T07:26:58.971073Z",
            "created": "2014-10-22T10:29:02.282353Z",
            "image_url": "",
            "length": null,
            "name": "",
            "type": "transport",
            "material": "",
            "diameter": null,
            "shape": "",
            "year_of_construction": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/pressurepipes/6260/",
            "id": 6260,
            "code": "PL_23",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/474afd21-2f2e-4b4f-8261-5142f1d67acb/",
                "uuid": "474afd21-2f2e-4b4f-8261-5142f1d67acb",
                "name": "Hoogheemraadschap Hollands Noorderkwartier"
            },
            "geometry": {
                "type": "LineString",
                "coordinates": [
                    [
                        5.04403289702273,
                        52.509344201542014,
                        0.0
                    ],
                    [
                        5.044031325462949,
                        52.509320292387294,
                        0.0
                    ],
                    [
                        5.044030591158925,
                        52.509301615404866,
                        0.0
                    ]
                ]
            },
            "last_modified": "2019-06-25T07:26:58.971073Z",
            "created": "2014-10-22T10:29:02.289063Z",
            "image_url": "",
            "length": null,
            "name": "",
            "type": "transport",
            "material": "",
            "diameter": null,
            "shape": "",
            "year_of_construction": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/pressurepipes/6261/",
            "id": 6261,
            "code": "PL_24",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/474afd21-2f2e-4b4f-8261-5142f1d67acb/",
                "uuid": "474afd21-2f2e-4b4f-8261-5142f1d67acb",
                "name": "Hoogheemraadschap Hollands Noorderkwartier"
            },
            "geometry": {
                "type": "LineString",
                "coordinates": [
                    [
                        5.04403289702273,
                        52.509344201542014,
                        0.0
                    ],
                    [
                        5.044031369441778,
                        52.50932031947656,
                        0.0
                    ],
                    [
                        5.044030591158925,
                        52.509301615404866,
                        0.0
                    ]
                ]
            },
            "last_modified": "2019-06-25T07:26:58.971073Z",
            "created": "2014-10-22T10:29:02.296129Z",
            "image_url": "",
            "length": null,
            "name": "",
            "type": "transport",
            "material": "",
            "diameter": null,
            "shape": "",
            "year_of_construction": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/pressurepipes/6262/",
            "id": 6262,
            "code": "PL_25",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/474afd21-2f2e-4b4f-8261-5142f1d67acb/",
                "uuid": "474afd21-2f2e-4b4f-8261-5142f1d67acb",
                "name": "Hoogheemraadschap Hollands Noorderkwartier"
            },
            "geometry": {
                "type": "LineString",
                "coordinates": [
                    [
                        5.049780831084066,
                        52.510528772169835,
                        0.0
                    ],
                    [
                        5.049741168771653,
                        52.510533782204426,
                        0.0
                    ],
                    [
                        5.049717379930644,
                        52.51052409808133,
                        0.0
                    ],
                    [
                        5.049692553835033,
                        52.51051521986681,
                        0.0
                    ],
                    [
                        5.04966640412701,
                        52.51050606826179,
                        0.0
                    ],
                    [
                        5.049640109191728,
                        52.51049664661693,
                        0.0
                    ],
                    [
                        5.049613226449282,
                        52.51048704354696,
                        0.0
                    ],
                    [
                        5.049586491016415,
                        52.51047744088984,
                        0.0
                    ],
                    [
                        5.049559756281946,
                        52.51046774835501,
                        0.0
                    ],
                    [
                        5.04953331478126,
                        52.51045823639568,
                        0.0
                    ],
                    [
                        5.049506138176654,
                        52.510448542591504,
                        0.0
                    ],
                    [
                        5.049478815660133,
                        52.51043866861857,
                        0.0
                    ],
                    [
                        5.04945149315585,
                        52.510428794639346,
                        0.0
                    ],
                    [
                        5.049424169289654,
                        52.510419100397165,
                        0.0
                    ],
                    [
                        5.049396551527203,
                        52.510409315438515,
                        0.0
                    ],
                    [
                        5.049368786479346,
                        52.510399530054194,
                        0.0
                    ],
                    [
                        5.049341021443803,
                        52.51038974466338,
                        0.0
                    ],
                    [
                        5.049313255733272,
                        52.51038004913772,
                        0.0
                    ],
                    [
                        5.049285490034928,
                        52.510370353605545,
                        0.0
                    ],
                    [
                        5.049258165553995,
                        52.51036074919679,
                        0.0
                    ],
                    [
                        5.049230987007494,
                        52.51035132494465,
                        0.0
                    ],
                    [
                        5.049203367267781,
                        52.510341809556124,
                        0.0
                    ],
                    [
                        5.049176334666988,
                        52.51033256545432,
                        0.0
                    ],
                    [
                        5.049149448687294,
                        52.51032341163762,
                        0.0
                    ],
                    [
                        5.049122562718725,
                        52.51031425781486,
                        0.0
                    ],
                    [
                        5.049095530151721,
                        52.51030501369459,
                        0.0
                    ],
                    [
                        5.04906893742464,
                        52.510296040442235,
                        0.0
                    ],
                    [
                        5.049042198786739,
                        52.51028688702091,
                        0.0
                    ],
                    [
                        5.049014724361583,
                        52.5102776416232,
                        0.0
                    ],
                    [
                        5.048986662135039,
                        52.51026821479669,
                        0.0
                    ],
                    [
                        5.048959334342359,
                        52.5102590596776,
                        0.0
                    ],
                    [
                        5.048931419436612,
                        52.51024963325783,
                        0.0
                    ],
                    [
                        5.048903357245662,
                        52.510240206411616,
                        0.0
                    ],
                    [
                        5.048875440987391,
                        52.510230959722044,
                        0.0
                    ],
                    [
                        5.048847230835029,
                        52.51022162231439,
                        0.0
                    ],
                    [
                        5.048819167303281,
                        52.510212375191614,
                        0.0
                    ],
                    [
                        5.048790957174657,
                        52.51020303777054,
                        0.0
                    ],
                    [
                        5.048763187572042,
                        52.51019388134626,
                        0.0
                    ],
                    [
                        5.048735417981031,
                        52.510184724915426,
                        0.0
                    ],
                    [
                        5.048707648401469,
                        52.51017556847813,
                        0.0
                    ],
                    [
                        5.048679291023136,
                        52.51016623061034,
                        0.0
                    ],
                    [
                        5.04865078704856,
                        52.510156802443895,
                        0.0
                    ],
                    [
                        5.048622429694299,
                        52.51014746456255,
                        0.0
                    ],
                    [
                        5.048593778447268,
                        52.51013803596216,
                        0.0
                    ],
                    [
                        5.048565274509179,
                        52.51012860777514,
                        0.0
                    ],
                    [
                        5.048537359081315,
                        52.51011927113423,
                        0.0
                    ],
                    [
                        5.048509590272972,
                        52.510110024778776,
                        0.0
                    ],
                    [
                        5.048481968772939,
                        52.51010077883716,
                        0.0
                    ],
                    [
                        5.048454787796238,
                        52.51009171389378,
                        0.0
                    ],
                    [
                        5.048427020400726,
                        52.510082287775504,
                        0.0
                    ],
                    [
                        5.048400723226053,
                        52.510073225342346,
                        0.0
                    ],
                    [
                        5.048374721344437,
                        52.51006407387265,
                        0.0
                    ],
                    [
                        5.048348278273346,
                        52.51005483126387,
                        0.0
                    ],
                    [
                        5.048320366384572,
                        52.51004504521328,
                        0.0
                    ],
                    [
                        5.048292161983363,
                        52.51003498869969,
                        0.0
                    ],
                    [
                        5.048264104201983,
                        52.51002502247174,
                        0.0
                    ],
                    [
                        5.04823648763293,
                        52.51001514737096,
                        0.0
                    ],
                    [
                        5.04820872515893,
                        52.5100050920995,
                        0.0
                    ],
                    [
                        5.048181549813973,
                        52.50999530811964,
                        0.0
                    ],
                    [
                        5.048154374481133,
                        52.509985524133654,
                        0.0
                    ],
                    [
                        5.048127051864078,
                        52.50997573972051,
                        0.0
                    ],
                    [
                        5.048100316374675,
                        52.50996622659962,
                        0.0
                    ],
                    [
                        5.048074168012026,
                        52.509956984771414,
                        0.0
                    ],
                    [
                        5.048048312183007,
                        52.50994801339431,
                        0.0
                    ],
                    [
                        5.048022456364546,
                        52.50993904201164,
                        0.0
                    ],
                    [
                        5.047996011372296,
                        52.50993006893933,
                        0.0
                    ],
                    [
                        5.04796794958444,
                        52.50992064187149,
                        0.0
                    ],
                    [
                        5.047939593906611,
                        52.50991112408325,
                        0.0
                    ],
                    [
                        5.047912413158173,
                        52.50990205901544,
                        0.0
                    ],
                    [
                        5.0478981620268,
                        52.50989725496905,
                        0.0
                    ],
                    [
                        5.047872302817563,
                        52.50988873291217,
                        0.0
                    ],
                    [
                        5.047843210701379,
                        52.50987921299517,
                        0.0
                    ],
                    [
                        5.047815881315853,
                        52.50987032722744,
                        0.0
                    ],
                    [
                        5.04778825734969,
                        52.50986144061094,
                        0.0
                    ],
                    [
                        5.04776092660543,
                        52.50985273457392,
                        0.0
                    ],
                    [
                        5.047737122684828,
                        52.50984511710236,
                        0.0
                    ],
                    [
                        5.047711555366619,
                        52.50983695533979,
                        0.0
                    ],
                    [
                        5.04768319565432,
                        52.50982797672049,
                        0.0
                    ],
                    [
                        5.047655131235609,
                        52.50981890906544,
                        0.0
                    ],
                    [
                        5.047627508024742,
                        52.50980993253968,
                        0.0
                    ],
                    [
                        5.047600472626128,
                        52.50980113743685,
                        0.0
                    ],
                    [
                        5.047573585224677,
                        52.50979225287764,
                        0.0
                    ],
                    [
                        5.0475472849438,
                        52.509783639613524,
                        0.0
                    ],
                    [
                        5.047521277882432,
                        52.50977520693023,
                        0.0
                    ],
                    [
                        5.047494683030819,
                        52.50976659281139,
                        0.0
                    ],
                    [
                        5.047467646994212,
                        52.509757887549895,
                        0.0
                    ],
                    [
                        5.047440169081921,
                        52.509749181017256,
                        0.0
                    ],
                    [
                        5.047412103380988,
                        52.509740293048054,
                        0.0
                    ],
                    [
                        5.047384037000154,
                        52.50973149494395,
                        0.0
                    ],
                    [
                        5.047356265912498,
                        52.50972260780497,
                        0.0
                    ],
                    [
                        5.047328348232011,
                        52.50971363036599,
                        0.0
                    ],
                    [
                        5.04730101836141,
                        52.50970483435115,
                        0.0
                    ],
                    [
                        5.047273689884555,
                        52.509695858586674,
                        0.0
                    ],
                    [
                        5.047246802613127,
                        52.50968697395328,
                        0.0
                    ],
                    [
                        5.047219622145113,
                        52.509677908726474,
                        0.0
                    ],
                    [
                        5.047191707978707,
                        52.50966848189668,
                        0.0
                    ],
                    [
                        5.047164528916679,
                        52.50965923691381,
                        0.0
                    ],
                    [
                        5.047136468862118,
                        52.50964962990558,
                        0.0
                    ],
                    [
                        5.047109143911735,
                        52.50964020474457,
                        0.0
                    ],
                    [
                        5.047081672369764,
                        52.509630689283384,
                        0.0
                    ],
                    [
                        5.047054495429723,
                        52.50962117466012,
                        0.0
                    ],
                    [
                        5.047026878000214,
                        52.50961147902067,
                        0.0
                    ],
                    [
                        5.046998380965024,
                        52.50960124161124,
                        0.0
                    ],
                    [
                        5.046970912239344,
                        52.50959136663748,
                        0.0
                    ],
                    [
                        5.046944325911184,
                        52.5095816739345,
                        0.0
                    ],
                    [
                        5.046916124196195,
                        52.50957134747808,
                        0.0
                    ],
                    [
                        5.046888070481477,
                        52.509560931565666,
                        0.0
                    ],
                    [
                        5.046860605266903,
                        52.50955060720775,
                        0.0
                    ],
                    [
                        5.046833287359946,
                        52.50954028326592,
                        0.0
                    ],
                    [
                        5.046808027437667,
                        52.50953050446239,
                        0.0
                    ],
                    [
                        5.0467820331304,
                        52.50952045392592,
                        0.0
                    ],
                    [
                        5.046755599028422,
                        52.50951013250106,
                        0.0
                    ],
                    [
                        5.046729460220537,
                        52.50949972204355,
                        0.0
                    ],
                    [
                        5.046717431232932,
                        52.509493306502584,
                        0.0
                    ],
                    [
                        5.046535726027666,
                        52.509428165892956,
                        0.0
                    ],
                    [
                        5.046495478248262,
                        52.50941367056837,
                        0.0
                    ],
                    [
                        5.046447130696039,
                        52.509398972227764,
                        0.0
                    ],
                    [
                        5.046413456452455,
                        52.50939159577086,
                        0.0
                    ],
                    [
                        5.046230713954268,
                        52.50936554677414,
                        0.0
                    ],
                    [
                        5.04610241012069,
                        52.50934747297743,
                        0.0
                    ],
                    [
                        5.045992639068965,
                        52.50933286752441,
                        0.0
                    ],
                    [
                        5.04597277380538,
                        52.50933029394771,
                        0.0
                    ],
                    [
                        5.045900687193658,
                        52.509318762582375,
                        0.0
                    ],
                    [
                        5.045651141945076,
                        52.509283712943514,
                        0.0
                    ],
                    [
                        5.045432195268227,
                        52.509253783823915,
                        0.0
                    ],
                    [
                        5.045184145263158,
                        52.50921595142144,
                        0.0
                    ],
                    [
                        5.044980371868678,
                        52.50918588544345,
                        0.0
                    ],
                    [
                        5.044778089795782,
                        52.50915348670081,
                        0.0
                    ],
                    [
                        5.044641824972456,
                        52.50913646683646,
                        0.0
                    ],
                    [
                        5.044614574999731,
                        52.509136478054685,
                        0.0
                    ],
                    [
                        5.044541572774868,
                        52.509148130637456,
                        0.0
                    ],
                    [
                        5.044452916969905,
                        52.50916495064562,
                        0.0
                    ],
                    [
                        5.04440129313291,
                        52.50917396866784,
                        0.0
                    ],
                    [
                        5.04421176634014,
                        52.50920622500219,
                        0.0
                    ],
                    [
                        5.044069177111075,
                        52.50924490790713,
                        0.0
                    ],
                    [
                        5.044051328045757,
                        52.50924827150263,
                        0.0
                    ],
                    [
                        5.044042793384247,
                        52.50924716834144,
                        0.0
                    ],
                    [
                        5.044028280407523,
                        52.50923822888017,
                        0.0
                    ]
                ]
            },
            "last_modified": "2019-06-25T07:26:58.971073Z",
            "created": "2014-10-22T10:29:02.303988Z",
            "image_url": "",
            "length": null,
            "name": "",
            "type": "transport",
            "material": "",
            "diameter": null,
            "shape": "",
            "year_of_construction": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/pressurepipes/6263/",
            "id": 6263,
            "code": "PL_26",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/474afd21-2f2e-4b4f-8261-5142f1d67acb/",
                "uuid": "474afd21-2f2e-4b4f-8261-5142f1d67acb",
                "name": "Hoogheemraadschap Hollands Noorderkwartier"
            },
            "geometry": {
                "type": "LineString",
                "coordinates": [
                    [
                        5.045116189863927,
                        52.51500613536993,
                        0.0
                    ],
                    [
                        5.04510734085832,
                        52.51493133503367,
                        0.0
                    ],
                    [
                        5.045106157016376,
                        52.51491299740768,
                        0.0
                    ],
                    [
                        5.045105121183987,
                        52.51489457033468,
                        0.0
                    ],
                    [
                        5.045103790031368,
                        52.514876232283946,
                        0.0
                    ],
                    [
                        5.045102167734646,
                        52.51485744402601,
                        0.0
                    ],
                    [
                        5.045100102110173,
                        52.51483883423751,
                        0.0
                    ],
                    [
                        5.045097739078853,
                        52.514820583086035,
                        0.0
                    ],
                    [
                        5.045095230825107,
                        52.514802061894954,
                        0.0
                    ],
                    [
                        5.045092429340941,
                        52.51478336011151,
                        0.0
                    ],
                    [
                        5.045089331146896,
                        52.51476492709349,
                        0.0
                    ],
                    [
                        5.045085939027132,
                        52.514746403354486,
                        0.0
                    ],
                    [
                        5.045082251590194,
                        52.51472796863767,
                        0.0
                    ],
                    [
                        5.045078559284287,
                        52.51471016302188,
                        0.0
                    ],
                    [
                        5.045074424349616,
                        52.514692446003636,
                        0.0
                    ],
                    [
                        5.045069999666615,
                        52.51467409903477,
                        0.0
                    ],
                    [
                        5.04506557498723,
                        52.51465575206572,
                        0.0
                    ],
                    [
                        5.045060857776171,
                        52.51463713463231,
                        0.0
                    ],
                    [
                        5.045055992561338,
                        52.51461860664562,
                        0.0
                    ],
                    [
                        5.045050834119434,
                        52.51459989806616,
                        0.0
                    ],
                    [
                        5.045045675681858,
                        52.51458118948636,
                        0.0
                    ],
                    [
                        5.045040219841403,
                        52.514562839543444,
                        0.0
                    ],
                    [
                        5.045034618086208,
                        52.514544309432274,
                        0.0
                    ],
                    [
                        5.045028721016863,
                        52.51452586834308,
                        0.0
                    ],
                    [
                        5.045022530025951,
                        52.51450733653247,
                        0.0
                    ],
                    [
                        5.045016484959215,
                        52.514488984889425,
                        0.0
                    ],
                    [
                        5.045010294674688,
                        52.514470363206485,
                        0.0
                    ],
                    [
                        5.045004103003086,
                        52.514451921266335,
                        0.0
                    ],
                    [
                        5.044997764025566,
                        52.51443347890109,
                        0.0
                    ],
                    [
                        5.044991276350019,
                        52.51441521585388,
                        0.0
                    ],
                    [
                        5.044985377227359,
                        52.51439704437682,
                        0.0
                    ],
                    [
                        5.04498006526446,
                        52.51437914421309,
                        0.0
                    ],
                    [
                        5.044974908971087,
                        52.51436016601459,
                        0.0
                    ],
                    [
                        5.044970049392219,
                        52.51434091905046,
                        0.0
                    ],
                    [
                        5.044965339913119,
                        52.514321313024425,
                        0.0
                    ],
                    [
                        5.04496092366701,
                        52.51430188759077,
                        0.0
                    ],
                    [
                        5.044956507424771,
                        52.51428246215692,
                        0.0
                    ],
                    [
                        5.044951944572113,
                        52.514262946426385,
                        0.0
                    ],
                    [
                        5.044947085710118,
                        52.514243609589286,
                        0.0
                    ],
                    [
                        5.044941789795125,
                        52.51422364237639,
                        0.0
                    ],
                    [
                        5.044936193694144,
                        52.51420439328645,
                        0.0
                    ],
                    [
                        5.044930161933958,
                        52.51418433407724,
                        0.0
                    ],
                    [
                        5.044923687552363,
                        52.5141643634649,
                        0.0
                    ],
                    [
                        5.04491720969511,
                        52.51414484221018,
                        0.0
                    ],
                    [
                        5.044910582444557,
                        52.51412559014501,
                        0.0
                    ],
                    [
                        5.044903954503444,
                        52.51410642795092,
                        0.0
                    ],
                    [
                        5.044897030555534,
                        52.51408744465002,
                        0.0
                    ],
                    [
                        5.044889960000059,
                        52.51406837105218,
                        0.0
                    ],
                    [
                        5.044882742140931,
                        52.514049297029004,
                        0.0
                    ],
                    [
                        5.044875526377208,
                        52.51402995339044,
                        0.0
                    ],
                    [
                        5.044868163310189,
                        52.514010609326526,
                        0.0
                    ],
                    [
                        5.044861089993711,
                        52.513991895213096,
                        0.0
                    ],
                    [
                        5.044853872855933,
                        52.51397273131615,
                        0.0
                    ],
                    [
                        5.044846510504311,
                        52.51395329737907,
                        0.0
                    ],
                    [
                        5.044839439992016,
                        52.513934223777675,
                        0.0
                    ],
                    [
                        5.04483251191984,
                        52.513915779701925,
                        0.0
                    ],
                    [
                        5.044825436544119,
                        52.51389733520083,
                        0.0
                    ],
                    [
                        5.044818509179988,
                        52.513878801252574,
                        0.0
                    ],
                    [
                        5.04481128859645,
                        52.51386008671067,
                        0.0
                    ],
                    [
                        5.044804360547559,
                        52.513841642633075,
                        0.0
                    ],
                    [
                        5.044797433200985,
                        52.51382310868328,
                        0.0
                    ],
                    [
                        5.044789926376304,
                        52.5138033148307,
                        0.0
                    ],
                    [
                        5.044782858698671,
                        52.51378388173889,
                        0.0
                    ],
                    [
                        5.04477593554969,
                        52.513764808557966,
                        0.0
                    ],
                    [
                        5.044769449456708,
                        52.51374636575287,
                        0.0
                    ],
                    [
                        5.044762965459001,
                        52.513727653332495,
                        0.0
                    ],
                    [
                        5.044756481466714,
                        52.513708940911684,
                        0.0
                    ],
                    [
                        5.044749994693372,
                        52.513690587976946,
                        0.0
                    ],
                    [
                        5.044743797665869,
                        52.51367286499312,
                        0.0
                    ],
                    [
                        5.044737746558442,
                        52.513655322177115,
                        0.0
                    ],
                    [
                        5.044732413187459,
                        52.51364020801954,
                        0.0
                    ],
                    [
                        5.04472563599762,
                        52.51362131500344,
                        0.0
                    ],
                    [
                        5.044719149946573,
                        52.51360287219506,
                        0.0
                    ],
                    [
                        5.044712514502605,
                        52.51358469857602,
                        0.0
                    ],
                    [
                        5.044706171590153,
                        52.51356679542148,
                        0.0
                    ],
                    [
                        5.044699682071512,
                        52.51354880196988,
                        0.0
                    ],
                    [
                        5.044693043159825,
                        52.51353107770766,
                        0.0
                    ],
                    [
                        5.044686550864659,
                        52.513513443741694,
                        0.0
                    ],
                    [
                        5.044679763958788,
                        52.51349580892509,
                        0.0
                    ],
                    [
                        5.044673413407635,
                        52.51347889435624,
                        0.0
                    ],
                    [
                        5.044665901819045,
                        52.51345972959568,
                        0.0
                    ],
                    [
                        5.04465853684784,
                        52.513440655131255,
                        0.0
                    ],
                    [
                        5.044650733444196,
                        52.5134211300328,
                        0.0
                    ],
                    [
                        5.044643220481499,
                        52.51340214501382,
                        0.0
                    ],
                    [
                        5.044635413607057,
                        52.5133830692723,
                        0.0
                    ],
                    [
                        5.04462760743615,
                        52.51336390365862,
                        0.0
                    ],
                    [
                        5.044619362834281,
                        52.51334428741065,
                        0.0
                    ],
                    [
                        5.04461140867298,
                        52.5133252112422,
                        0.0
                    ],
                    [
                        5.044603452427675,
                        52.51330640468793,
                        0.0
                    ],
                    [
                        5.044595202271615,
                        52.51328750741106,
                        0.0
                    ],
                    [
                        5.044586952122628,
                        52.513268610133586,
                        0.0
                    ],
                    [
                        5.044578699889717,
                        52.513249982470285,
                        0.0
                    ],
                    [
                        5.044570297568745,
                        52.513231713867505,
                        0.0
                    ],
                    [
                        5.044561604125776,
                        52.51321299505557,
                        0.0
                    ],
                    [
                        5.044552613985245,
                        52.51319454500726,
                        0.0
                    ],
                    [
                        5.044543914283656,
                        52.51317663503839,
                        0.0
                    ],
                    [
                        5.044535355622237,
                        52.51315953433878,
                        0.0
                    ],
                    [
                        5.044526941485811,
                        52.51314279355032,
                        0.0
                    ],
                    [
                        5.044518381443295,
                        52.51312587259252,
                        0.0
                    ],
                    [
                        5.04450952818832,
                        52.51310877104027,
                        0.0
                    ],
                    [
                        5.04450038241844,
                        52.51309139902179,
                        0.0
                    ],
                    [
                        5.044490945528472,
                        52.51307357679369,
                        0.0
                    ],
                    [
                        5.044481944290963,
                        52.51305656468547,
                        0.0
                    ],
                    [
                        5.044472501141104,
                        52.513039551300444,
                        0.0
                    ],
                    [
                        5.044463060787409,
                        52.5130221784281,
                        0.0
                    ],
                    [
                        5.044453621835526,
                        52.513004625811696,
                        0.0
                    ],
                    [
                        5.044444765840844,
                        52.512987883740664,
                        0.0
                    ],
                    [
                        5.044435328995403,
                        52.51297006150781,
                        0.0
                    ],
                    [
                        5.044425605912766,
                        52.512951159963755,
                        0.0
                    ],
                    [
                        5.044415736927038,
                        52.51293207825017,
                        0.0
                    ],
                    [
                        5.044406159772472,
                        52.512913356873085,
                        0.0
                    ],
                    [
                        5.04439643671482,
                        52.512894455326446,
                        0.0
                    ],
                    [
                        5.044387147214581,
                        52.5128766335149,
                        0.0
                    ],
                    [
                        5.044378438576448,
                        52.51285989186396,
                        0.0
                    ],
                    [
                        5.044368709265746,
                        52.51284179915947,
                        0.0
                    ],
                    [
                        5.044358836841842,
                        52.512823166798874,
                        0.0
                    ],
                    [
                        5.044349108942086,
                        52.51280489434937,
                        0.0
                    ],
                    [
                        5.044339524171163,
                        52.51278716155437,
                        0.0
                    ],
                    [
                        5.0443297976823,
                        52.512768709359946,
                        0.0
                    ],
                    [
                        5.044319925988597,
                        52.51274998712422,
                        0.0
                    ],
                    [
                        5.044310635851993,
                        52.51273225517771,
                        0.0
                    ],
                    [
                        5.044300910084738,
                        52.51271371310906,
                        0.0
                    ],
                    [
                        5.044290891807847,
                        52.512694900573514,
                        0.0
                    ],
                    [
                        5.044280581719387,
                        52.512675727699275,
                        0.0
                    ],
                    [
                        5.044270122939515,
                        52.51265673414176,
                        0.0
                    ],
                    [
                        5.044260390927329,
                        52.5126390009142,
                        0.0
                    ],
                    [
                        5.044249636857226,
                        52.5126200963751,
                        0.0
                    ],
                    [
                        5.044239025915264,
                        52.512601731490484,
                        0.0
                    ],
                    [
                        5.044228266281838,
                        52.51258354592236,
                        0.0
                    ],
                    [
                        5.044217797080738,
                        52.51256590043435,
                        0.0
                    ],
                    [
                        5.044206599039145,
                        52.512547264229006,
                        0.0
                    ],
                    [
                        5.044195546916188,
                        52.51252880819146,
                        0.0
                    ],
                    [
                        5.044184636524925,
                        52.512511071551586,
                        0.0
                    ],
                    [
                        5.044174743318639,
                        52.51249513532344,
                        0.0
                    ],
                    [
                        5.044163102701743,
                        52.512476587708164,
                        0.0
                    ],
                    [
                        5.044151461396829,
                        52.51245812996325,
                        0.0
                    ],
                    [
                        5.044139526888485,
                        52.51243949162236,
                        0.0
                    ],
                    [
                        5.044126857962205,
                        52.51242058153641,
                        0.0
                    ],
                    [
                        5.044115206218456,
                        52.51240347186228,
                        0.0
                    ],
                    [
                        5.044102966662757,
                        52.51238618074045,
                        0.0
                    ],
                    [
                        5.044090285204123,
                        52.51236888833976,
                        0.0
                    ],
                    [
                        5.044075702761875,
                        52.512349792968955,
                        0.0
                    ],
                    [
                        5.044060675628103,
                        52.512331055805255,
                        0.0
                    ],
                    [
                        5.044045929153986,
                        52.51231411692403,
                        0.0
                    ],
                    [
                        5.044030589985107,
                        52.51229762569555,
                        0.0
                    ],
                    [
                        5.044014512912197,
                        52.51228131207859,
                        0.0
                    ],
                    [
                        5.04399769584131,
                        52.512265445687916,
                        0.0
                    ],
                    [
                        5.043980436173055,
                        52.51224966788854,
                        0.0
                    ],
                    [
                        5.043962878418687,
                        52.51223433859289,
                        0.0
                    ],
                    [
                        5.04394546588534,
                        52.51221927933542,
                        0.0
                    ],
                    [
                        5.043927466244325,
                        52.51220394875633,
                        0.0
                    ],
                    [
                        5.043909317915633,
                        52.51218879749164,
                        0.0
                    ],
                    [
                        5.043891169599383,
                        52.51217364622424,
                        0.0
                    ],
                    [
                        5.043873753622414,
                        52.51215903631432,
                        0.0
                    ],
                    [
                        5.043858385936171,
                        52.51214622980027,
                        0.0
                    ],
                    [
                        5.043842577047199,
                        52.51213333213406,
                        0.0
                    ],
                    [
                        5.043825303516128,
                        52.512119351744516,
                        0.0
                    ],
                    [
                        5.043805835115974,
                        52.51210347765534,
                        0.0
                    ],
                    [
                        5.04378695244985,
                        52.51208805462586,
                        0.0
                    ],
                    [
                        5.043771876625402,
                        52.51207560843942,
                        0.0
                    ],
                    [
                        5.043760898749541,
                        52.51206658930805,
                        0.0
                    ],
                    [
                        5.043754753236944,
                        52.51206126897908,
                        0.0
                    ],
                    [
                        5.043749045443254,
                        52.51205648915849,
                        0.0
                    ],
                    [
                        5.043737340144077,
                        52.51204629956227,
                        0.0
                    ],
                    [
                        5.043733597598814,
                        52.512035054524304,
                        0.0
                    ],
                    [
                        5.043732408114106,
                        52.512017525718115,
                        0.0
                    ],
                    [
                        5.043743024408687,
                        52.51201620833479,
                        0.0
                    ],
                    [
                        5.04374936472453,
                        52.512015417819065,
                        0.0
                    ],
                    [
                        5.043774720396849,
                        52.51201297472603,
                        0.0
                    ],
                    [
                        5.043805086462632,
                        52.51201027650302,
                        0.0
                    ],
                    [
                        5.043836189737889,
                        52.512007490531325,
                        0.0
                    ],
                    [
                        5.043868472131153,
                        52.51200461808868,
                        0.0
                    ],
                    [
                        5.0439001639119,
                        52.51200192367625,
                        0.0
                    ],
                    [
                        5.043931853593913,
                        52.511999498870324,
                        0.0
                    ],
                    [
                        5.043963247270224,
                        52.51199725294717,
                        0.0
                    ],
                    [
                        5.043996113972501,
                        52.51199501127522,
                        0.0
                    ],
                    [
                        5.044027799455926,
                        52.511993125673506,
                        0.0
                    ],
                    [
                        5.04405874842212,
                        52.511991237933934,
                        0.0
                    ],
                    [
                        5.044090137898524,
                        52.51198953120708,
                        0.0
                    ],
                    [
                        5.044120643555112,
                        52.51198782191709,
                        0.0
                    ],
                    [
                        5.044152032328917,
                        52.51198620504553,
                        0.0
                    ],
                    [
                        5.044183421798143,
                        52.51198449829398,
                        0.0
                    ],
                    [
                        5.044215548477046,
                        52.511982703790885,
                        0.0
                    ],
                    [
                        5.044247968363806,
                        52.511981089873565,
                        0.0
                    ],
                    [
                        5.044280093642503,
                        52.511979475096304,
                        0.0
                    ],
                    [
                        5.044311922220661,
                        52.51197812907409,
                        0.0
                    ],
                    [
                        5.044343452704029,
                        52.51197723155047,
                        0.0
                    ],
                    [
                        5.044374095184798,
                        52.51197687069561,
                        0.0
                    ],
                    [
                        5.044404144269761,
                        52.511977047360894,
                        0.0
                    ],
                    [
                        5.044433158051476,
                        52.51197776027061,
                        0.0
                    ],
                    [
                        5.044461579136724,
                        52.511978920829996,
                        0.0
                    ],
                    [
                        5.044489557617791,
                        52.51198016997822,
                        0.0
                    ],
                    [
                        5.044517394374205,
                        52.511980699721335,
                        0.0
                    ],
                    [
                        5.044584905783607,
                        52.51197487308915,
                        0.0
                    ],
                    [
                        5.044597874009728,
                        52.51197419153427,
                        0.0
                    ],
                    [
                        5.044590900346569,
                        52.51196167896542,
                        0.0
                    ],
                    [
                        5.044565255937235,
                        52.511925385851804,
                        0.0
                    ],
                    [
                        5.044556410570695,
                        52.51190729571053,
                        0.0
                    ],
                    [
                        5.044548595632272,
                        52.511889298416975,
                        0.0
                    ],
                    [
                        5.044541811817795,
                        52.51187130409977,
                        0.0
                    ],
                    [
                        5.044535761732881,
                        52.51185367139499,
                        0.0
                    ],
                    [
                        5.044530305741643,
                        52.51183541128952,
                        0.0
                    ],
                    [
                        5.044525004027916,
                        52.511816252892466,
                        0.0
                    ],
                    [
                        5.044520292224795,
                        52.51179700632463,
                        0.0
                    ],
                    [
                        5.044516314845488,
                        52.51177803149796,
                        0.0
                    ],
                    [
                        5.044512634165169,
                        52.51175878790675,
                        0.0
                    ],
                    [
                        5.044508955579258,
                        52.51173927470049,
                        0.0
                    ],
                    [
                        5.044505424298598,
                        52.51171976191922,
                        0.0
                    ],
                    [
                        5.044502038231684,
                        52.51170051917808,
                        0.0
                    ],
                    [
                        5.044498798075288,
                        52.51168145660544,
                        0.0
                    ],
                    [
                        5.044495707314886,
                        52.511662124842964,
                        0.0
                    ],
                    [
                        5.044492615859982,
                        52.51164288295196,
                        0.0
                    ],
                    [
                        5.044489671012363,
                        52.511623731357815,
                        0.0
                    ],
                    [
                        5.044486867194607,
                        52.51160538903376,
                        0.0
                    ],
                    [
                        5.044483917471959,
                        52.51158686654087,
                        0.0
                    ],
                    [
                        5.044480969843159,
                        52.51156807443282,
                        0.0
                    ],
                    [
                        5.044477875612597,
                        52.51154919202768,
                        0.0
                    ],
                    [
                        5.044474928686013,
                        52.511530310047746,
                        0.0
                    ],
                    [
                        5.044472126971752,
                        52.51151169810792,
                        0.0
                    ],
                    [
                        5.04446917795857,
                        52.51149308574265,
                        0.0
                    ],
                    [
                        5.044466083738262,
                        52.51147420333691,
                        0.0
                    ],
                    [
                        5.044462841522241,
                        52.511455410377366,
                        0.0
                    ],
                    [
                        5.044459600006143,
                        52.511436527545804,
                        0.0
                    ],
                    [
                        5.044456505793745,
                        52.51141764513963,
                        0.0
                    ],
                    [
                        5.044453260797155,
                        52.51139921166609,
                        0.0
                    ],
                    [
                        5.044450014408778,
                        52.5113809579358,
                        0.0
                    ],
                    [
                        5.044446620025018,
                        52.51136279365154,
                        0.0
                    ],
                    [
                        5.044443080434996,
                        52.511344359326756,
                        0.0
                    ],
                    [
                        5.044439687451395,
                        52.51132601529886,
                        0.0
                    ],
                    [
                        5.044436150656087,
                        52.511307221487144,
                        0.0
                    ],
                    [
                        5.044432763256036,
                        52.51128815848561,
                        0.0
                    ],
                    [
                        5.044429516884247,
                        52.5112699047543,
                        0.0
                    ],
                    [
                        5.044426275395836,
                        52.51125102192118,
                        0.0
                    ],
                    [
                        5.044423033910196,
                        52.51123213908787,
                        0.0
                    ],
                    [
                        5.04441993903029,
                        52.51121334655149,
                        0.0
                    ],
                    [
                        5.044416701733745,
                        52.51119392448794,
                        0.0
                    ],
                    [
                        5.044413462348164,
                        52.51117477203923,
                        0.0
                    ],
                    [
                        5.04441022087349,
                        52.51115588920517,
                        0.0
                    ],
                    [
                        5.044406687590659,
                        52.511136646033584,
                        0.0
                    ],
                    [
                        5.044402864591991,
                        52.51111677290925,
                        0.0
                    ],
                    [
                        5.044398893599467,
                        52.51109698923087,
                        0.0
                    ],
                    [
                        5.04439492261051,
                        52.51107720555227,
                        0.0
                    ],
                    [
                        5.044390946743903,
                        52.51105805097523,
                        0.0
                    ],
                    [
                        5.044386969486017,
                        52.511039076141245,
                        0.0
                    ],
                    [
                        5.044382844931887,
                        52.51102010088157,
                        0.0
                    ],
                    [
                        5.044378723170616,
                        52.51100076613495,
                        0.0
                    ],
                    [
                        5.044374456902877,
                        52.510981071476074,
                        0.0
                    ],
                    [
                        5.044370187152072,
                        52.51096182617525,
                        0.0
                    ],
                    [
                        5.044365916707606,
                        52.51094267074586,
                        0.0
                    ],
                    [
                        5.044361791474062,
                        52.510923785356695,
                        0.0
                    ],
                    [
                        5.044357374434976,
                        52.5109045396297,
                        0.0
                    ],
                    [
                        5.044353102606811,
                        52.51088556394295,
                        0.0
                    ],
                    [
                        5.044349258034291,
                        52.5108684768375,
                        0.0
                    ],
                    [
                        5.044344841006146,
                        52.51084923110979,
                        0.0
                    ],
                    [
                        5.044341705038516,
                        52.51083574099832,
                        0.0
                    ],
                    [
                        5.04433828005413,
                        52.51082153106225,
                        0.0
                    ],
                    [
                        5.044333569832458,
                        52.51080210473951,
                        0.0
                    ],
                    [
                        5.044328715105769,
                        52.51078231850439,
                        0.0
                    ],
                    [
                        5.044323710992243,
                        52.51076280145845,
                        0.0
                    ],
                    [
                        5.044318706185711,
                        52.51074337428378,
                        0.0
                    ],
                    [
                        5.044313699988566,
                        52.51072412685223,
                        0.0
                    ],
                    [
                        5.044308693098339,
                        52.510704969292014,
                        0.0
                    ],
                    [
                        5.044303832115932,
                        52.51068599190044,
                        0.0
                    ],
                    [
                        5.04429882802429,
                        52.510666474853046,
                        0.0
                    ],
                    [
                        5.044293968445371,
                        52.5106473177176,
                        0.0
                    ],
                    [
                        5.044289397189714,
                        52.510628970278034,
                        0.0
                    ],
                    [
                        5.044284976723773,
                        52.51061017390541,
                        0.0
                    ],
                    [
                        5.044280561144284,
                        52.51059074843092,
                        0.0
                    ],
                    [
                        5.04427614417362,
                        52.51057150269952,
                        0.0
                    ],
                    [
                        5.044271727904283,
                        52.51055216709619,
                        0.0
                    ],
                    [
                        5.044267603444678,
                        52.510533191830504,
                        0.0
                    ],
                    [
                        5.044263626984148,
                        52.51051412711853,
                        0.0
                    ],
                    [
                        5.044259943030093,
                        52.51049533287264,
                        0.0
                    ],
                    [
                        5.044256548791802,
                        52.510477168579534,
                        0.0
                    ],
                    [
                        5.044253304644418,
                        52.510458645225164,
                        0.0
                    ],
                    [
                        5.044250507276016,
                        52.51043949404571,
                        0.0
                    ],
                    [
                        5.044248007993395,
                        52.51041989435908,
                        0.0
                    ],
                    [
                        5.044245804703346,
                        52.5104001157802,
                        0.0
                    ],
                    [
                        5.044243897405565,
                        52.51038015830914,
                        0.0
                    ],
                    [
                        5.044242278425878,
                        52.51036101053429,
                        0.0
                    ],
                    [
                        5.04424080883781,
                        52.51034159356993,
                        0.0
                    ],
                    [
                        5.044239485850722,
                        52.510322266902776,
                        0.0
                    ],
                    [
                        5.044238303883549,
                        52.510303749506306,
                        0.0
                    ],
                    [
                        5.044237124010175,
                        52.51028496249473,
                        0.0
                    ],
                    [
                        5.044235944835401,
                        52.51026608561138,
                        0.0
                    ],
                    [
                        5.044234767056866,
                        52.510247028984594,
                        0.0
                    ],
                    [
                        5.044233592767453,
                        52.51022752299927,
                        0.0
                    ],
                    [
                        5.044232417781418,
                        52.51020810688557,
                        0.0
                    ],
                    [
                        5.044231235122513,
                        52.5101896793602,
                        0.0
                    ],
                    [
                        5.044229904470082,
                        52.510171341280866,
                        0.0
                    ],
                    [
                        5.044228581492739,
                        52.51015201461289,
                        0.0
                    ],
                    [
                        5.044227399534495,
                        52.510133497215534,
                        0.0
                    ],
                    [
                        5.044226071675866,
                        52.51011479964915,
                        0.0
                    ],
                    [
                        5.044224600009954,
                        52.510095652298574,
                        0.0
                    ],
                    [
                        5.044222976165292,
                        52.51007713362412,
                        0.0
                    ],
                    [
                        5.044221057729054,
                        52.51005861409816,
                        0.0
                    ],
                    [
                        5.044218843306326,
                        52.51004027346416,
                        0.0
                    ],
                    [
                        5.044216481589135,
                        52.51002193240434,
                        0.0
                    ],
                    [
                        5.044213677287401,
                        52.51000367993912,
                        0.0
                    ],
                    [
                        5.04421057979084,
                        52.50998524687897,
                        0.0
                    ],
                    [
                        5.044207342675105,
                        52.50996582480453,
                        0.0
                    ],
                    [
                        5.044203524052348,
                        52.50994541243866,
                        0.0
                    ],
                    [
                        5.044199405259602,
                        52.509925718194545,
                        0.0
                    ],
                    [
                        5.04419527809818,
                        52.50990710241058,
                        0.0
                    ],
                    [
                        5.044190417949282,
                        52.50988803513936,
                        0.0
                    ],
                    [
                        5.044185260422081,
                        52.509869326503285,
                        0.0
                    ],
                    [
                        5.044180095224224,
                        52.50985160645543,
                        0.0
                    ],
                    [
                        5.044174204715779,
                        52.5098324463317,
                        0.0
                    ],
                    [
                        5.044168165521341,
                        52.5098134655252,
                        0.0
                    ],
                    [
                        5.044162270138814,
                        52.50979493450257,
                        0.0
                    ],
                    [
                        5.044156228163452,
                        52.50977631318211,
                        0.0
                    ],
                    [
                        5.044150038199955,
                        52.50975778130723,
                        0.0
                    ],
                    [
                        5.04414399553706,
                        52.50973924985765,
                        0.0
                    ],
                    [
                        5.044137806979474,
                        52.50972053823857,
                        0.0
                    ],
                    [
                        5.044131616333663,
                        52.50970209623422,
                        0.0
                    ],
                    [
                        5.044125423599499,
                        52.50968392384448,
                        0.0
                    ],
                    [
                        5.044118943956402,
                        52.50966476201425,
                        0.0
                    ],
                    [
                        5.044112608124757,
                        52.509646049967756,
                        0.0
                    ],
                    [
                        5.044106127097026,
                        52.50962706788001,
                        0.0
                    ],
                    [
                        5.044098490745475,
                        52.50960511661951,
                        0.0
                    ],
                    [
                        5.044092434864829,
                        52.50958829272889,
                        0.0
                    ],
                    [
                        5.044086667297345,
                        52.5095722785348,
                        0.0
                    ],
                    [
                        5.044081333941193,
                        52.509557254206435,
                        0.0
                    ],
                    [
                        5.044075714374356,
                        52.509541150565866,
                        0.0
                    ],
                    [
                        5.044069522383576,
                        52.50952288830094,
                        0.0
                    ],
                    [
                        5.044063918878389,
                        52.50950471761067,
                        0.0
                    ],
                    [
                        5.044058177156727,
                        52.5094853781623,
                        0.0
                    ],
                    [
                        5.044053024618009,
                        52.50946604041695,
                        0.0
                    ],
                    [
                        5.044048607857874,
                        52.50944679467241,
                        0.0
                    ],
                    [
                        5.044044928969251,
                        52.50942737131364,
                        0.0
                    ],
                    [
                        5.044041836469011,
                        52.509408309145,
                        0.0
                    ],
                    [
                        5.04403933035629,
                        52.5093896081665,
                        0.0
                    ],
                    [
                        5.044034206942575,
                        52.50936462643493,
                        0.0
                    ],
                    [
                        5.044034217448607,
                        52.50936460130065,
                        0.0
                    ],
                    [
                        5.044033558673522,
                        52.50935440591916,
                        0.0
                    ],
                    [
                        5.044033556069689,
                        52.50935436187354,
                        0.0
                    ],
                    [
                        5.04403289702273,
                        52.509344201542014,
                        0.0
                    ]
                ]
            },
            "last_modified": "2019-06-25T07:26:58.971073Z",
            "created": "2014-10-22T10:29:02.315513Z",
            "image_url": "",
            "length": null,
            "name": "",
            "type": "transport",
            "material": "",
            "diameter": null,
            "shape": "",
            "year_of_construction": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/pressurepipes/6264/",
            "id": 6264,
            "code": "PL_27",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/474afd21-2f2e-4b4f-8261-5142f1d67acb/",
                "uuid": "474afd21-2f2e-4b4f-8261-5142f1d67acb",
                "name": "Hoogheemraadschap Hollands Noorderkwartier"
            },
            "geometry": {
                "type": "LineString",
                "coordinates": [
                    [
                        4.721067102942142,
                        52.59406844500381,
                        0.0
                    ],
                    [
                        4.721115512062193,
                        52.59409664921376,
                        0.0
                    ],
                    [
                        4.721200478155334,
                        52.594134593946016,
                        0.0
                    ]
                ]
            },
            "last_modified": "2019-06-25T07:26:58.971073Z",
            "created": "2014-10-22T10:29:02.327367Z",
            "image_url": "",
            "length": null,
            "name": "",
            "type": "transport",
            "material": "",
            "diameter": null,
            "shape": "",
            "year_of_construction": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/pressurepipes/6265/",
            "id": 6265,
            "code": "PL_28",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/474afd21-2f2e-4b4f-8261-5142f1d67acb/",
                "uuid": "474afd21-2f2e-4b4f-8261-5142f1d67acb",
                "name": "Hoogheemraadschap Hollands Noorderkwartier"
            },
            "geometry": {
                "type": "LineString",
                "coordinates": [
                    [
                        4.721156227865968,
                        52.59408803386601,
                        0.0
                    ],
                    [
                        4.721200478155334,
                        52.594134593946016,
                        0.0
                    ]
                ]
            },
            "last_modified": "2019-06-25T07:26:58.971073Z",
            "created": "2014-10-22T10:29:02.334738Z",
            "image_url": "",
            "length": null,
            "name": "",
            "type": "transport",
            "material": "",
            "diameter": null,
            "shape": "",
            "year_of_construction": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/pressurepipes/6266/",
            "id": 6266,
            "code": "PL_29",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/474afd21-2f2e-4b4f-8261-5142f1d67acb/",
                "uuid": "474afd21-2f2e-4b4f-8261-5142f1d67acb",
                "name": "Hoogheemraadschap Hollands Noorderkwartier"
            },
            "geometry": {
                "type": "LineString",
                "coordinates": [
                    [
                        4.721200478155334,
                        52.594134593946016,
                        0.0
                    ],
                    [
                        4.721242898065731,
                        52.594179229434864,
                        0.0
                    ],
                    [
                        4.721292305577394,
                        52.59423122879505,
                        0.0
                    ],
                    [
                        4.721295922938544,
                        52.59423503276079,
                        0.0
                    ],
                    [
                        4.721403222653688,
                        52.59434794052662,
                        0.0
                    ],
                    [
                        4.721418694404371,
                        52.594364222503415,
                        0.0
                    ],
                    [
                        4.721563420173044,
                        52.59451537446907,
                        0.0
                    ],
                    [
                        4.721645722609928,
                        52.59460467588157,
                        0.0
                    ],
                    [
                        4.721709783967526,
                        52.59467930650653,
                        0.0
                    ],
                    [
                        4.721734450981208,
                        52.59469946857059,
                        0.0
                    ],
                    [
                        4.721819937077027,
                        52.594766615793326,
                        0.0
                    ],
                    [
                        4.72190810030462,
                        52.59473858349895,
                        0.0
                    ],
                    [
                        4.722203894758231,
                        52.594644541633556,
                        0.0
                    ],
                    [
                        4.722753918799169,
                        52.59446729573558,
                        0.0
                    ],
                    [
                        4.72328394291802,
                        52.594300675479815,
                        0.0
                    ],
                    [
                        4.723654066589556,
                        52.59419115562051,
                        0.0
                    ],
                    [
                        4.723697531937794,
                        52.59417829473543,
                        0.0
                    ],
                    [
                        4.723892947793914,
                        52.59412047348617,
                        0.0
                    ],
                    [
                        4.723960962171577,
                        52.594100352928486,
                        0.0
                    ],
                    [
                        4.723994065161053,
                        52.59409055271603,
                        0.0
                    ],
                    [
                        4.724071554971638,
                        52.594067447246715,
                        0.0
                    ],
                    [
                        4.724096844251556,
                        52.59406003897894,
                        0.0
                    ],
                    [
                        4.724096918442954,
                        52.594060012430816,
                        0.0
                    ],
                    [
                        4.724099735552271,
                        52.59405914738863,
                        0.0
                    ],
                    [
                        4.724112545762787,
                        52.594055228479064,
                        0.0
                    ],
                    [
                        4.72413496688785,
                        52.59404913433035,
                        0.0
                    ],
                    [
                        4.72465717160492,
                        52.593907179657585,
                        0.0
                    ],
                    [
                        4.724688380282846,
                        52.593898689835676,
                        0.0
                    ],
                    [
                        4.724822520681813,
                        52.59386222992549,
                        0.0
                    ],
                    [
                        4.724823839599855,
                        52.59386186879523,
                        0.0
                    ],
                    [
                        4.725181200681466,
                        52.593798773803265,
                        0.0
                    ],
                    [
                        4.726240986309072,
                        52.59361131032448,
                        0.0
                    ],
                    [
                        4.726375391717559,
                        52.593587540335285,
                        0.0
                    ],
                    [
                        4.726407863953855,
                        52.59357742138583,
                        0.0
                    ],
                    [
                        4.726526839746988,
                        52.593540344962435,
                        0.0
                    ],
                    [
                        4.726556272319362,
                        52.59353117072114,
                        0.0
                    ],
                    [
                        4.726825687335188,
                        52.593447189372995,
                        0.0
                    ],
                    [
                        4.726884977165763,
                        52.5934251043417,
                        0.0
                    ],
                    [
                        4.727039731092687,
                        52.59337093450082,
                        0.0
                    ],
                    [
                        4.727226499294579,
                        52.59330662476812,
                        0.0
                    ],
                    [
                        4.727352257402133,
                        52.593263968075746,
                        0.0
                    ],
                    [
                        4.727700864171957,
                        52.59315315678238,
                        0.0
                    ],
                    [
                        4.727802181823942,
                        52.59312432136845,
                        0.0
                    ],
                    [
                        4.727971572671002,
                        52.59307612727715,
                        0.0
                    ],
                    [
                        4.728008432853468,
                        52.593065636792716,
                        0.0
                    ],
                    [
                        4.728160977484617,
                        52.59302480850036,
                        0.0
                    ],
                    [
                        4.728330865098877,
                        52.592977883876,
                        0.0
                    ],
                    [
                        4.72855150110851,
                        52.59291937699136,
                        0.0
                    ],
                    [
                        4.728735922554719,
                        52.59286863183067,
                        0.0
                    ],
                    [
                        4.728913018700351,
                        52.592821180120566,
                        0.0
                    ],
                    [
                        4.729607635813165,
                        52.592634961306715,
                        0.0
                    ],
                    [
                        4.729630156609917,
                        52.59262901047445,
                        0.0
                    ],
                    [
                        4.73021220333338,
                        52.59247192231289,
                        0.0
                    ],
                    [
                        4.730898495778541,
                        52.59228207296461,
                        0.0
                    ],
                    [
                        4.731411995389626,
                        52.59214601723133,
                        0.0
                    ],
                    [
                        4.731597495543017,
                        52.5920996953931,
                        0.0
                    ],
                    [
                        4.731724410983534,
                        52.592068005090084,
                        0.0
                    ],
                    [
                        4.732014073232578,
                        52.59199567251295,
                        0.0
                    ],
                    [
                        4.732097942564125,
                        52.59197472701746,
                        0.0
                    ],
                    [
                        4.732141462152142,
                        52.59196385855343,
                        0.0
                    ],
                    [
                        4.732486753625425,
                        52.59188694238051,
                        0.0
                    ],
                    [
                        4.732864321198007,
                        52.59180787523266,
                        0.0
                    ],
                    [
                        4.733237893053248,
                        52.59173245174975,
                        0.0
                    ],
                    [
                        4.733757207047145,
                        52.591640258395635,
                        0.0
                    ],
                    [
                        4.734233708426665,
                        52.591562926306906,
                        0.0
                    ],
                    [
                        4.734702034159201,
                        52.591489465913334,
                        0.0
                    ],
                    [
                        4.73512130440486,
                        52.59143296327618,
                        0.0
                    ],
                    [
                        4.735947055536085,
                        52.59133435316264,
                        0.0
                    ],
                    [
                        4.736562155222544,
                        52.59126475458786,
                        0.0
                    ],
                    [
                        4.737154376434069,
                        52.59119732843335,
                        0.0
                    ],
                    [
                        4.737850009258016,
                        52.59111530284279,
                        0.0
                    ],
                    [
                        4.737948706158971,
                        52.59110431140388,
                        0.0
                    ],
                    [
                        4.738008911736173,
                        52.591097603263144,
                        0.0
                    ],
                    [
                        4.738008970893295,
                        52.59109759459897,
                        0.0
                    ],
                    [
                        4.73823788882912,
                        52.591071424686945,
                        0.0
                    ],
                    [
                        4.738308208046677,
                        52.59106337859171,
                        0.0
                    ],
                    [
                        4.738387233834851,
                        52.59105434645144,
                        0.0
                    ],
                    [
                        4.738966533955923,
                        52.59098810794017,
                        0.0
                    ],
                    [
                        4.739703944350403,
                        52.59090162600542,
                        0.0
                    ],
                    [
                        4.740657416729392,
                        52.590789739767054,
                        0.0
                    ],
                    [
                        4.741395397068051,
                        52.590703178555266,
                        0.0
                    ],
                    [
                        4.742160564222933,
                        52.590617146829736,
                        0.0
                    ],
                    [
                        4.742599889678644,
                        52.59056645169631,
                        0.0
                    ],
                    [
                        4.743093402906018,
                        52.590510674266994,
                        0.0
                    ],
                    [
                        4.744098646879656,
                        52.590397351490985,
                        0.0
                    ],
                    [
                        4.744326190928575,
                        52.59036875381354,
                        0.0
                    ],
                    [
                        4.744399151133707,
                        52.59035957701228,
                        0.0
                    ],
                    [
                        4.74446819338212,
                        52.59035090023936,
                        0.0
                    ],
                    [
                        4.744515236696114,
                        52.590344989378146,
                        0.0
                    ],
                    [
                        4.74482134334768,
                        52.5903065161608,
                        0.0
                    ],
                    [
                        4.745132949274122,
                        52.590267343897445,
                        0.0
                    ],
                    [
                        4.745307014646576,
                        52.590241627871734,
                        0.0
                    ],
                    [
                        4.745635439607729,
                        52.59018746433314,
                        0.0
                    ],
                    [
                        4.746140994996876,
                        52.59009964535385,
                        0.0
                    ],
                    [
                        4.746729553785201,
                        52.58999271516534,
                        0.0
                    ],
                    [
                        4.747316598060582,
                        52.58988114541033,
                        0.0
                    ],
                    [
                        4.748028962297706,
                        52.589743635392146,
                        0.0
                    ],
                    [
                        4.748738185779323,
                        52.589611757298506,
                        0.0
                    ],
                    [
                        4.749310375751183,
                        52.58950519373667,
                        0.0
                    ],
                    [
                        4.750009877001555,
                        52.589374648915594,
                        0.0
                    ],
                    [
                        4.750852519966752,
                        52.589214075989524,
                        0.0
                    ],
                    [
                        4.751293969590741,
                        52.58913209305688,
                        0.0
                    ],
                    [
                        4.751442332383655,
                        52.589104540863424,
                        0.0
                    ],
                    [
                        4.751460398680319,
                        52.58910118638347,
                        0.0
                    ],
                    [
                        4.75147942667703,
                        52.58909765729911,
                        0.0
                    ],
                    [
                        4.751492521496093,
                        52.58909521988763,
                        0.0
                    ],
                    [
                        4.752120001855796,
                        52.588978693046535,
                        0.0
                    ],
                    [
                        4.752681732894966,
                        52.588872785359165,
                        0.0
                    ],
                    [
                        4.753557041180478,
                        52.588714327001114,
                        0.0
                    ],
                    [
                        4.75385596006211,
                        52.58866021709548,
                        0.0
                    ],
                    [
                        4.753889722278792,
                        52.58865410590702,
                        0.0
                    ],
                    [
                        4.753906542729012,
                        52.58866451307921,
                        0.0
                    ],
                    [
                        4.754560674677502,
                        52.58906920361218,
                        0.0
                    ],
                    [
                        4.754601127439048,
                        52.58907092889096,
                        0.0
                    ]
                ]
            },
            "last_modified": "2019-06-25T07:26:58.971073Z",
            "created": "2014-10-22T10:29:02.341813Z",
            "image_url": "",
            "length": null,
            "name": "",
            "type": "transport",
            "material": "",
            "diameter": null,
            "shape": "",
            "year_of_construction": null
        }
    ]
}