API endpoint for rasterlayer objects.

Rasterlayers visualise raster data. The actual data is contained in rastersources. To connect a rasterlayer to a rastersource, configure the rasterlayer's source field as follows:

{
    "graph": {
        "rastersource": [
            "lizard_nxt.blocks.LizardRasterSource",
            "<uuid of a rastersource object>"
        ]
    },
    "name": "rastersource"
}

Note that the organisations of the rastersource and rasterlayer should be equal. The raster_sources field cannot be used to configure the source: it is merely a (read-only) hyperlink to the /rastersources endpoint.

GeoBlocks

Instead of directly visualising a raster source, raster layers can also perform on-the-fly operations on multiple raster sources. This can be done by extending the above example for the source field. See https://docs.lizard.net. Note that the rasterlayers's organisation must have geoblocks-permissions to be able to use this feature.

Deletion

If a rasterlayer is deleted, its raster sources (see /rastersources endpoint) will remain available. These need to be cleaned up seperately, or else they will keep using space.

If a rastersource was deleted while there was a rasterlayer referencing it, the rasterlayer will become broken. In this case, the deleted rastersources will be listed in the source.deleted_sources field.

Query parameters:

name Text filter on the name field. All text field filter methods, like startswith, endswith, icontains are supported.

uuid Filter on uuid field. UUIDs must be separated by commas and must be specified in their canonical textual representation (in their 8-4-4-4-12 form, that is). Filtering is case insensitive and may be done across relationships.

organisation Filter on Organisations.

observation_type Filter on ObservationType.

layer_collections Filter on LayerCollection.

first_value_timestamp Temporal filter on first_value_timestamp.

last_value_timestamp Temporal filter on last_value_timestamp.

raster_sources__uuid Show rasters that make use of a raster_source with given uuid.

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

ordering Show the results in a specific order. You can order them by name, last_modified, supplier, temporal, access_modifier, first_value_timestamp, last_value_timestamp, observation_type, observation_type__code, observation_type__parameter, observation_type__unit, and organisation__name. Add a - in front to reverse the order.

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.

Examples

?name__icontains=Elevation

?organisation__name=DDSC

?organisation__uuid=61f5a464c35044c19bc7d4b42d7f58cb

?organisation__name__startswith=Nelen

?organisation__name__icontains=Schuur

?observation_type__code=HOOGTEmNAP

?observation_type__parameter=Hoogte

?uuid=10415ccb-ec31-4d43-bdb3-db597061527b,
4a544b7a-772b-45fb-9aa4-a69447f34f52

?first_value_timestamp=2016-06-21T06:05:00Z

?first_value_timestamp__lt=2016-06-21T06:05:00Z

?layer_collections__slug=10855cc

?raster_sources__uuid=10415ccb-ec31-4d43-bdb3-db597061527b

?access_modifier=Private

?access_modifier=100

?ordering=name

?ordering=-last_modified

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

?last_modified__lt=2018-01-01T00:00:00Z
GET /api/v4/rasters/?format=api&page=10
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 2103,
    "next": "https://demo.lizard.net/api/v4/rasters/?format=api&page=11",
    "previous": "https://demo.lizard.net/api/v4/rasters/?format=api&page=9",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/rasters/786b8d04-7569-446c-8571-66c1072876af/?format=api",
            "uuid": "786b8d04-7569-446c-8571-66c1072876af",
            "last_modified": "2022-12-01T14:18:39.085755Z",
            "created": "2019-06-24T12:18:23.594215Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                "name": "Nelen & Schuurmans Consultancy"
            },
            "access_modifier": "Public",
            "supplier": "jelmer.roosjen",
            "shared_with": [],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "lusaka_world_dem",
            "description": "Lusaka World DEM",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/463/?format=api",
                "id": 463,
                "code": "HoogtemMSL",
                "parameter": "Hoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "MSL",
                "compartment": "",
                "created": "2015-10-20T12:15:40.537223Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "temporal": false,
            "layer_collections": [],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 28.064604056717855,
                "east": 28.632203522495224,
                "north": -15.212324183463203,
                "south": -15.646373472027552
            },
            "projection": "EPSG:28992",
            "origin_x": 3703560.0,
            "origin_y": -7778430.0,
            "upper_bound_x": 3786510.0,
            "upper_bound_y": -7718610.0,
            "pixelsize_x": 30.0,
            "pixelsize_y": -30.0,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:lusaka_world_dem"
            },
            "options": {
                "styles": "dem-world:1000:1500"
            },
            "rescalable": true,
            "aggregation_type": "none",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/a553b22b-f6ee-4c5c-b201-7fc0ed22f5d9/?format=api",
            "uuid": "a553b22b-f6ee-4c5c-b201-7fc0ed22f5d9",
            "last_modified": "2019-06-27T08:10:24.184853Z",
            "created": "2019-06-26T14:52:49.089034Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/883eecb4-1783-4526-9dc7-8ca9118ba3df/?format=api",
                "uuid": "883eecb4-1783-4526-9dc7-8ca9118ba3df",
                "name": "BlueLabel"
            },
            "access_modifier": "Public",
            "supplier": null,
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 3,
            "name": "ror_masked_below",
            "description": "ror_masked_below",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/521/?format=api",
                "id": 521,
                "code": "Waterdepth",
                "parameter": "Waterdepth",
                "unit": "m",
                "scale": "interval",
                "description": "interval",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2016-07-14T10:07:22.899825Z",
                "last_modified": "2022-02-02T14:47:44.543819Z"
            },
            "temporal": false,
            "layer_collections": [],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 3.244860926817634,
                "east": 7.422000142947756,
                "north": 53.551533269031395,
                "south": 50.647838995795944
            },
            "projection": "EPSG:28992",
            "origin_x": null,
            "origin_y": null,
            "upper_bound_x": null,
            "upper_bound_y": null,
            "pixelsize_x": null,
            "pixelsize_y": null,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "waterdiepte_t1000_ror_maskedbelow"
            },
            "options": {
                "styles": "Blues:0:5"
            },
            "rescalable": false,
            "aggregation_type": "curve",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/f7022db2-7c64-4a68-9f6d-9bc7a7ee6383/?format=api",
            "uuid": "f7022db2-7c64-4a68-9f6d-9bc7a7ee6383",
            "last_modified": "2021-01-18T07:50:49.221756Z",
            "created": "2019-07-20T07:08:59.919478Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/064ae6fb-4691-4fe7-ad42-6125da4771be/?format=api",
                "uuid": "064ae6fb-4691-4fe7-ad42-6125da4771be",
                "name": "Zundert"
            },
            "access_modifier": "Public",
            "supplier": "chris.kerklaan",
            "shared_with": [
                {
                    "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                    "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                    "name": "Nelen & Schuurmans Consultancy"
                }
            ],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "Waterdiepte 1 uur in 70 minuten zundert",
            "description": "Korte, hevige buien zullen naar verwachting steeds vaker voorkomen. Dit klimaateffect heeft een grote impact op het bebouwd gebied en het regionale watersysteem. Wateroverlast is bij deze extreme buien niet te voorkomen. Het is daarom niet de vraag of, maar vooral waar de wateroverlast zal optreden, en welke gevolgen te verwachten zijn. De waterdieptekaart laat de gevolgen zien van extreme neerslag in de bebouwde kom, gesimuleerd in 3Di (http://www.3di.nu/) een modelinstrumentarium voor waterberekeningen. De kaarten maken inzichtelijk waar wateroverlastlocaties in uw gemeente kunnen ontstaan na extreme buien van 70 mm in 1 uur. Een dergelijke bui komt theoretisch gezien ca. 1 keer per 100 jaar voor (Deltaprogramma 2019). In deze stresstest is een integraal hydrodynamisch model gebruikt, waarin het maaiveld, de riolering en het oppervlaktewatersysteem zijn opgenomen. De resultaten geven een goede indicatie van de te verwachten overlastlocaties bij hevige neerslag. Voor de schematisatie van de riolering en het oppervlaktewatersysteem is gebruik gemaakt van de gegevens zoals deze beschikbaar zijn bij de gemeente. Om de stroming over het maaiveld te modelleren is een terreinmodel gebruikt. Dit 2D terreinmodel is opgebouwd vanuit het gefilterde en geïnterpoleerde AHN2, de BOFEK bodemkaart en de landgebruikskaart. De kaart presenteert de maximale waterdiepte die voorkomt tijdens een bui van 70 milimeter in 1 uur.",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/521/?format=api",
                "id": 521,
                "code": "Waterdepth",
                "parameter": "Waterdepth",
                "unit": "m",
                "scale": "interval",
                "description": "interval",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2016-07-14T10:07:22.899825Z",
                "last_modified": "2022-02-02T14:47:44.543819Z"
            },
            "temporal": false,
            "layer_collections": [
                {
                    "url": "https://demo.lizard.net/api/v4/layercollections/zundert_klimaatatlas/?format=api",
                    "slug": "zundert_klimaatatlas",
                    "organisation": {
                        "url": "https://demo.lizard.net/api/v4/organisations/064ae6fb-4691-4fe7-ad42-6125da4771be/?format=api",
                        "uuid": "064ae6fb-4691-4fe7-ad42-6125da4771be",
                        "name": "Zundert"
                    },
                    "access_modifier": "Public",
                    "supplier": "chris.kerklaan",
                    "created": "2021-01-12T09:38:18.945492Z",
                    "last_modified": "2021-01-18T07:51:40.056365Z"
                }
            ],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 4.576115785315667,
                "east": 4.709856965755856,
                "north": 51.52564302315696,
                "south": 51.44981586088248
            },
            "projection": "EPSG:28992",
            "origin_x": 98712.5,
            "origin_y": 384838.0,
            "upper_bound_x": 107917.0,
            "upper_bound_y": 393180.5,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "zundert:waterdiepte-1-uur-in-70-minuten-zundert"
            },
            "options": {
                "styles": "3di-depth:0:0.3"
            },
            "rescalable": true,
            "aggregation_type": "average",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/9072ba09-dc09-4f06-ba41-279c59c7de6e/?format=api",
            "uuid": "9072ba09-dc09-4f06-ba41-279c59c7de6e",
            "last_modified": "2019-08-20T08:41:29.912307Z",
            "created": "2019-07-23T13:35:53.777760Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                "name": "Nelen & Schuurmans Consultancy"
            },
            "access_modifier": "Public",
            "supplier": "kees.vanduijvendijk",
            "shared_with": [],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "NDVI Quarter 2 2019 Sentinel-2 20m mosaic",
            "description": "Best-available Pixel mosaic voor de periode april-juni 2019. Sentinel-2 data.",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/468/?format=api",
                "id": 468,
                "code": "ndvi",
                "parameter": "NDVI",
                "unit": "",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2015-12-03T16:55:37.522467Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "temporal": false,
            "layer_collections": [
                {
                    "url": "https://demo.lizard.net/api/v4/layercollections/verdamping/?format=api",
                    "slug": "verdamping",
                    "organisation": {
                        "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                        "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                        "name": "Nelen & Schuurmans Consultancy"
                    },
                    "access_modifier": "Public",
                    "supplier": "joeri.verheijden",
                    "created": "2019-07-26T11:46:22.139736Z",
                    "last_modified": "2019-08-09T10:11:13.283347Z"
                }
            ],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 2.776866594091204,
                "east": 8.243899405388282,
                "north": 54.00005976707493,
                "south": 49.97006067240785
            },
            "projection": "EPSG:28992",
            "origin_x": -16176.8107,
            "origin_y": 223222.074061419,
            "upper_bound_x": 342349.9193,
            "upper_bound_y": 671430.4875,
            "pixelsize_x": 20.0003754323329,
            "pixelsize_y": -20.0003754323329,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:ndvi-quarter-2-2019-sentinel-2-20m-mosaic"
            },
            "options": {
                "styles": "RdYlGn:0:1"
            },
            "rescalable": false,
            "aggregation_type": "average",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/93d6edeb-4e19-4446-acc3-0ed36cdbb629/?format=api",
            "uuid": "93d6edeb-4e19-4446-acc3-0ed36cdbb629",
            "last_modified": "2019-09-23T12:24:47.037950Z",
            "created": "2019-08-06T13:52:20.883196Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                "name": "Nelen & Schuurmans Consultancy"
            },
            "access_modifier": "Public",
            "supplier": "chris.kerklaan",
            "shared_with": [],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "TWN - Verandering vochtgebrek 2050",
            "description": "Verandering vochtgebrek in 2050.",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/372/?format=api",
                "id": 372,
                "code": "AANTL (%)",
                "parameter": "Aantal",
                "unit": "%",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "",
                "created": "2015-09-11T08:04:38.209526Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "temporal": false,
            "layer_collections": [],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 6.325387486542825,
                "east": 7.076764375945061,
                "north": 52.49742117818989,
                "south": 52.1140540468508
            },
            "projection": "EPSG:28992",
            "origin_x": 219250.0,
            "origin_y": 459750.0,
            "upper_bound_x": 269750.0,
            "upper_bound_y": 501500.0,
            "pixelsize_x": 250.0,
            "pixelsize_y": -250.0,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:twn-verandering-vochtgebrek-2050"
            },
            "options": {
                "styles": "BluGreRed:-5:5"
            },
            "rescalable": true,
            "aggregation_type": "average",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/5b792ee7-3806-413d-9750-a9a6c474e67b/?format=api",
            "uuid": "5b792ee7-3806-413d-9750-a9a6c474e67b",
            "last_modified": "2019-09-23T12:24:51.148793Z",
            "created": "2019-08-06T13:54:04.604018Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                "name": "Nelen & Schuurmans Consultancy"
            },
            "access_modifier": "Public",
            "supplier": "chris.kerklaan",
            "shared_with": [],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "TWN - Wateraanvoer",
            "description": "Wateraanvoer",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/547/?format=api",
                "id": 547,
                "code": "Water level",
                "parameter": "Water level",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "",
                "created": "2016-11-24T11:32:54.533447Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "temporal": false,
            "layer_collections": [],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 6.325387486542825,
                "east": 7.076764375945061,
                "north": 52.49742117818989,
                "south": 52.1140540468508
            },
            "projection": "EPSG:28992",
            "origin_x": 219250.0,
            "origin_y": 459750.0,
            "upper_bound_x": 269750.0,
            "upper_bound_y": 501500.0,
            "pixelsize_x": 250.0,
            "pixelsize_y": -250.0,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:twn-wateraanvoer"
            },
            "options": {
                "styles": "BuGn:-1:1"
            },
            "rescalable": true,
            "aggregation_type": "average",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/6cd792a6-82fc-47af-8218-a777845597f9/?format=api",
            "uuid": "6cd792a6-82fc-47af-8218-a777845597f9",
            "last_modified": "2019-08-20T08:40:31.588737Z",
            "created": "2019-08-12T11:12:26.522669Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                "name": "Nelen & Schuurmans Consultancy"
            },
            "access_modifier": "Public",
            "supplier": "kees.vanduijvendijk",
            "shared_with": [],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "NDVI mosaic Sentinel-2 droogteportaal 20m",
            "description": "pilot-mosaic voor droogte-portaal",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/468/?format=api",
                "id": 468,
                "code": "ndvi",
                "parameter": "NDVI",
                "unit": "",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2015-12-03T16:55:37.522467Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "temporal": true,
            "layer_collections": [
                {
                    "url": "https://demo.lizard.net/api/v4/layercollections/verdamping/?format=api",
                    "slug": "verdamping",
                    "organisation": {
                        "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                        "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                        "name": "Nelen & Schuurmans Consultancy"
                    },
                    "access_modifier": "Public",
                    "supplier": "joeri.verheijden",
                    "created": "2019-07-26T11:46:22.139736Z",
                    "last_modified": "2019-08-09T10:11:13.283347Z"
                }
            ],
            "first_value_timestamp": "2018-04-01T00:00:00Z",
            "last_value_timestamp": "2019-07-01T00:00:00Z",
            "spatial_bounds": {
                "west": 3.0,
                "east": 8.0,
                "north": 54.0,
                "south": 50.0
            },
            "projection": "EPSG:4326",
            "origin_x": 3.0,
            "origin_y": 50.0,
            "upper_bound_x": 8.0,
            "upper_bound_y": 54.0,
            "pixelsize_x": 0.000179662234998203,
            "pixelsize_y": -0.000179662234998203,
            "interval": "1 00:00:00",
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:ndvi-mosaic-sentinel-2-droogteportaal-20m"
            },
            "options": {
                "styles": "RdYlGn:0:1"
            },
            "rescalable": false,
            "aggregation_type": "average",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/54418f53-80fb-4b48-b04a-1e153b7ddec2/?format=api",
            "uuid": "54418f53-80fb-4b48-b04a-1e153b7ddec2",
            "last_modified": "2019-08-14T12:24:17.297524Z",
            "created": "2019-08-14T12:20:35.166142Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                "name": "Nelen & Schuurmans Consultancy"
            },
            "access_modifier": "Public",
            "supplier": "chris.kerklaan",
            "shared_with": [],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "storymap - relative_ndvi_grasland",
            "description": "storymap - relative_ndvi_grasland",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/1036/?format=api",
                "id": 1036,
                "code": "index",
                "parameter": "Index",
                "unit": "",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2019-04-03T13:10:41.085507Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "temporal": false,
            "layer_collections": [
                {
                    "url": "https://demo.lizard.net/api/v4/layercollections/verdamping/?format=api",
                    "slug": "verdamping",
                    "organisation": {
                        "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                        "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                        "name": "Nelen & Schuurmans Consultancy"
                    },
                    "access_modifier": "Public",
                    "supplier": "joeri.verheijden",
                    "created": "2019-07-26T11:46:22.139736Z",
                    "last_modified": "2019-08-09T10:11:13.283347Z"
                }
            ],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 5.309824996900871,
                "east": 5.474814261530036,
                "north": 52.107358010272975,
                "south": 52.05791647409866
            },
            "projection": "EPSG:28992",
            "origin_x": 149699.0,
            "origin_y": 452183.0,
            "upper_bound_x": 161002.0,
            "upper_bound_y": 457683.0,
            "pixelsize_x": 1.0,
            "pixelsize_y": -1.0,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:storymap-relative_ndvi_grasland"
            },
            "options": {
                "styles": "YlGn:0.75:1"
            },
            "rescalable": false,
            "aggregation_type": "sum",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/5dbdebbb-3d72-4a6e-b048-63ea50a8de50/?format=api",
            "uuid": "5dbdebbb-3d72-4a6e-b048-63ea50a8de50",
            "last_modified": "2019-08-14T12:24:38.030702Z",
            "created": "2019-08-14T12:22:59.277020Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                "name": "Nelen & Schuurmans Consultancy"
            },
            "access_modifier": "Public",
            "supplier": "chris.kerklaan",
            "shared_with": [],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "storymap -  soil_water_index",
            "description": "storymap -  soil_water_index",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/983/?format=api",
                "id": 983,
                "code": "soilmoisture",
                "parameter": "Soil moisture",
                "unit": "m3/m3",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2018-08-21T12:41:08.263771Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "temporal": false,
            "layer_collections": [
                {
                    "url": "https://demo.lizard.net/api/v4/layercollections/verdamping/?format=api",
                    "slug": "verdamping",
                    "organisation": {
                        "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                        "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                        "name": "Nelen & Schuurmans Consultancy"
                    },
                    "access_modifier": "Public",
                    "supplier": "joeri.verheijden",
                    "created": "2019-07-26T11:46:22.139736Z",
                    "last_modified": "2019-08-09T10:11:13.283347Z"
                }
            ],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 5.309824996900871,
                "east": 5.474814261530036,
                "north": 52.107358010272975,
                "south": 52.05791647409866
            },
            "projection": "EPSG:28992",
            "origin_x": 149699.0,
            "origin_y": 452183.0,
            "upper_bound_x": 161002.0,
            "upper_bound_y": 457683.0,
            "pixelsize_x": 1.0,
            "pixelsize_y": -1.0,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:storymap-soil_water_index"
            },
            "options": {
                "styles": "RdBu:0:100"
            },
            "rescalable": false,
            "aggregation_type": "sum",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/d55bbe84-a620-4dd2-a193-e3753a845d45/?format=api",
            "uuid": "d55bbe84-a620-4dd2-a193-e3753a845d45",
            "last_modified": "2019-08-20T14:38:37.546237Z",
            "created": "2019-08-16T13:19:08.863306Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                "name": "Nelen & Schuurmans Consultancy"
            },
            "access_modifier": "Public",
            "supplier": "kees.vanduijvendijk",
            "shared_with": [],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "Droogteschade landbouw 2018",
            "description": "Analyse droogte-schade 2018 optie 1",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/1036/?format=api",
                "id": 1036,
                "code": "index",
                "parameter": "Index",
                "unit": "",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2019-04-03T13:10:41.085507Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "temporal": false,
            "layer_collections": [
                {
                    "url": "https://demo.lizard.net/api/v4/layercollections/verdamping/?format=api",
                    "slug": "verdamping",
                    "organisation": {
                        "url": "https://demo.lizard.net/api/v4/organisations/61f5a464-c350-44c1-9bc7-d4b42d7f58cb/?format=api",
                        "uuid": "61f5a464-c350-44c1-9bc7-d4b42d7f58cb",
                        "name": "Nelen & Schuurmans Consultancy"
                    },
                    "access_modifier": "Public",
                    "supplier": "joeri.verheijden",
                    "created": "2019-07-26T11:46:22.139736Z",
                    "last_modified": "2019-08-09T10:11:13.283347Z"
                }
            ],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 3.258011056493513,
                "east": 7.237988060008022,
                "north": 53.48553107973631,
                "south": 50.73398813245823
            },
            "projection": "EPSG:28992",
            "origin_x": 13653.6127500013,
            "origin_y": 306820.986749999,
            "upper_bound_x": 277853.612750001,
            "upper_bound_y": 612620.986749999,
            "pixelsize_x": 100.0,
            "pixelsize_y": -100.0,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:droogteschade-landbouw-2018"
            },
            "options": {
                "styles": "Reds:0:10"
            },
            "rescalable": false,
            "aggregation_type": "average",
            "dtype": null,
            "fill_value": null
        }
    ]
}