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=7
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=8",
    "previous": "https://demo.lizard.net/api/v4/rasters/?format=api&page=6",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/rasters/364260ab-57b3-4785-ba60-a063bc2ea375/?format=api",
            "uuid": "364260ab-57b3-4785-ba60-a063bc2ea375",
            "last_modified": "2018-03-26T14:45:37.580428Z",
            "created": "2018-03-22T10:10:46.445620Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/38b30b5a-292c-416a-a909-c94549d22109/?format=api",
                "uuid": "38b30b5a-292c-416a-a909-c94549d22109",
                "name": "Rijkswaterstaat"
            },
            "access_modifier": "Public",
            "supplier": null,
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 3,
            "name": "HW T1000 Decimeringshoogte",
            "description": "RWS NWM Hydrazoet Hoogwater - Decimeringshoogte referentie situatie 2015 tussen T1000 en T100 (zie helpdeskwater.nl voor meer info)",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/921/?format=api",
                "id": 921,
                "code": "H.decim.T1000",
                "parameter": "T1000 - decimeringshoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2018-03-26T14:45:32.772225Z",
                "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": 3.9987439174997546,
                "east": 6.404107087978171,
                "north": 53.08783938384209,
                "south": 50.74822207145652
            },
            "projection": "EPSG:28992",
            "origin_x": 61970.0,
            "origin_y": 307310.0,
            "upper_bound_x": 223130.0,
            "upper_bound_y": 567260.0,
            "pixelsize_x": 10.0,
            "pixelsize_y": -10.0,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "intern:nl:rws:nwm:hw_decim_t1000"
            },
            "options": {
                "styles": "RdYlGn_r:0:0.3"
            },
            "rescalable": true,
            "aggregation_type": "curve",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/efb2da0e-7e11-4c80-987b-b786984aa812/?format=api",
            "uuid": "efb2da0e-7e11-4c80-987b-b786984aa812",
            "last_modified": "2018-03-26T14:46:16.615872Z",
            "created": "2018-03-22T10:11:37.313417Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/38b30b5a-292c-416a-a909-c94549d22109/?format=api",
                "uuid": "38b30b5a-292c-416a-a909-c94549d22109",
                "name": "Rijkswaterstaat"
            },
            "access_modifier": "Public",
            "supplier": null,
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 3,
            "name": "HW T10000 Decimeringshoogte",
            "description": "RWS NWM Hydrazoet Hoogwater - Decimeringshoogte referentie situatie 2015 tussen T10000 en T1000 (zie helpdeskwater.nl voor meer info)",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/922/?format=api",
                "id": 922,
                "code": "H.decim.T10000",
                "parameter": "T10000 - decimeringshoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2018-03-26T14:46:08.635983Z",
                "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": 3.9987439174997546,
                "east": 6.404107087978171,
                "north": 53.08783938384209,
                "south": 50.74822207145652
            },
            "projection": "EPSG:28992",
            "origin_x": 61970.0,
            "origin_y": 307310.0,
            "upper_bound_x": 223130.0,
            "upper_bound_y": 567260.0,
            "pixelsize_x": 10.0,
            "pixelsize_y": -10.0,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "intern:nl:rws:nwm:hw_decim_t10000"
            },
            "options": {
                "styles": "RdYlGn_r:0:0.3"
            },
            "rescalable": true,
            "aggregation_type": "curve",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/6de18ab2-4658-4aee-a691-059af10cfd7a/?format=api",
            "uuid": "6de18ab2-4658-4aee-a691-059af10cfd7a",
            "last_modified": "2019-10-30T21:16:22.986454Z",
            "created": "2018-04-15T15:41:55.864531Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/1a659052-7d3c-45b1-b09d-d814654575f7/?format=api",
                "uuid": "1a659052-7d3c-45b1-b09d-d814654575f7",
                "name": "SarVision"
            },
            "access_modifier": "Public",
            "supplier": "project.support",
            "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": "Land cover",
            "description": "[Description]: Land cover in Bangladesh on 15m resolution \r\n    [Sensor]: Sentinel-1 (Sarvision - Fosholi)",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/501/?format=api",
                "id": 501,
                "code": "CLASS",
                "parameter": "Class",
                "unit": "",
                "scale": "nominal",
                "description": "",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2016-04-26T07:47:14.214853Z",
                "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": 87.3625,
                "east": 93.45243886,
                "north": 26.8038889,
                "south": 20.4202118
            },
            "projection": "EPSG:4326",
            "origin_x": 87.3625,
            "origin_y": 20.4202118,
            "upper_bound_x": 93.45243886,
            "upper_bound_y": 26.8038889,
            "pixelsize_x": 0.00013499,
            "pixelsize_y": -0.00013499,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "extern:import:bd:land_cover_s2_basic"
            },
            "options": {
                "styles": "lc-bd-sentinel2"
            },
            "rescalable": false,
            "aggregation_type": "counts",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/cfd1b2d9-8966-4c53-bbdd-69c9943bdee0/?format=api",
            "uuid": "cfd1b2d9-8966-4c53-bbdd-69c9943bdee0",
            "last_modified": "2020-06-19T08:09:38.322599Z",
            "created": "2018-04-25T10:39:39.625968Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/0258eefa-4043-409f-879c-601740340654/?format=api",
                "uuid": "0258eefa-4043-409f-879c-601740340654",
                "name": "Waterpanel Noord"
            },
            "access_modifier": "Public",
            "supplier": "project.support",
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 2,
            "name": "wpn_s0149_maxwaterdiepte_60mm",
            "description": "Maximale waterdiepte - resultaat van 2D modelstudie voor Waterpanel Noord - bui 60mm",
            "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": 5.640117583899814,
                "east": 6.227593080169043,
                "north": 51.77761560316315,
                "south": 51.02968973099068
            },
            "projection": "EPSG:28992",
            "origin_x": 172742.0,
            "origin_y": 338114.5,
            "upper_bound_x": 213000.0,
            "upper_bound_y": 421025.5,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "extern:nl:lb:depth_int_max_mask"
            },
            "options": {
                "styles": "Blues:0:0.3"
            },
            "rescalable": false,
            "aggregation_type": "curve",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/fedf2927-cb1b-4f63-b763-126f32367da9/?format=api",
            "uuid": "fedf2927-cb1b-4f63-b763-126f32367da9",
            "last_modified": "2020-06-19T08:08:50.475047Z",
            "created": "2018-04-25T14:06:20.553332Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/0258eefa-4043-409f-879c-601740340654/?format=api",
                "uuid": "0258eefa-4043-409f-879c-601740340654",
                "name": "Waterpanel Noord"
            },
            "access_modifier": "Public",
            "supplier": "project.support",
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 2,
            "name": "wpn_s0149_maxwaterdiepte_herwijnen",
            "description": "wpn_s0149_maxwaterdiepte_herwijnen",
            "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": 5.640117583899814,
                "east": 6.227593080169043,
                "north": 51.77761560316315,
                "south": 51.02968973099068
            },
            "projection": "EPSG:28992",
            "origin_x": 172742.0,
            "origin_y": 338114.5,
            "upper_bound_x": 213000.0,
            "upper_bound_y": 421025.5,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "extern:nl:lb:s0149_depth_int_max_herwijnen_mask"
            },
            "options": {
                "styles": "Blues:0:0.3"
            },
            "rescalable": false,
            "aggregation_type": "curve",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/197cbb40-7a4e-4ecc-83ac-f98117728e94/?format=api",
            "uuid": "197cbb40-7a4e-4ecc-83ac-f98117728e94",
            "last_modified": "2020-06-19T09:00:43.056675Z",
            "created": "2018-06-07T08:26:12.002986Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/0258eefa-4043-409f-879c-601740340654/?format=api",
                "uuid": "0258eefa-4043-409f-879c-601740340654",
                "name": "Waterpanel Noord"
            },
            "access_modifier": "Public",
            "supplier": "project.support",
            "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": "depth_int_max_mask",
            "description": "depth_int_max",
            "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": 5.640117583899814,
                "east": 6.227593080169043,
                "north": 51.77761560316315,
                "south": 51.02968973099068
            },
            "projection": "EPSG:28992",
            "origin_x": 172742.0,
            "origin_y": 338114.5,
            "upper_bound_x": 213000.0,
            "upper_bound_y": 421025.5,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "extern:nl:lb:depth_int_max-w6g7aq1x"
            },
            "options": {
                "styles": "Blues:0.025:0.3"
            },
            "rescalable": false,
            "aggregation_type": "average",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/ee9f56cb-b47a-4066-85b2-9f324463b588/?format=api",
            "uuid": "ee9f56cb-b47a-4066-85b2-9f324463b588",
            "last_modified": "2020-06-19T08:01:42.577923Z",
            "created": "2018-06-08T08:35:22.715346Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/0258eefa-4043-409f-879c-601740340654/?format=api",
                "uuid": "0258eefa-4043-409f-879c-601740340654",
                "name": "Waterpanel Noord"
            },
            "access_modifier": "Public",
            "supplier": "project.support",
            "shared_with": [],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "s0149_depth_int_max_herwijnen",
            "description": "depth_int_max_hw",
            "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": 5.640117583899814,
                "east": 6.227593080169043,
                "north": 51.77761560316315,
                "south": 51.02968973099068
            },
            "projection": "EPSG:28992",
            "origin_x": 172742.0,
            "origin_y": 338114.5,
            "upper_bound_x": 213000.0,
            "upper_bound_y": 421025.5,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "extern:nl:lb:s0149_depth_int_max_herwijnen"
            },
            "options": {
                "styles": "Blues:0.025:0.3"
            },
            "rescalable": false,
            "aggregation_type": "average",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/7944523a-fddd-4fad-9b1e-2c3569a148a3/?format=api",
            "uuid": "7944523a-fddd-4fad-9b1e-2c3569a148a3",
            "last_modified": "2020-06-19T09:00:30.100761Z",
            "created": "2018-06-08T12:32:23.386891Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/0258eefa-4043-409f-879c-601740340654/?format=api",
                "uuid": "0258eefa-4043-409f-879c-601740340654",
                "name": "Waterpanel Noord"
            },
            "access_modifier": "Public",
            "supplier": "project.support",
            "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": "depth_hw_max_mask",
            "description": "depth_hw_max",
            "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": 5.565300194802019,
                "east": 6.234124689483367,
                "north": 51.779555429355305,
                "south": 51.026291425436334
            },
            "projection": "EPSG:28992",
            "origin_x": 167494.5,
            "origin_y": 337741.5,
            "upper_bound_x": 213448.5,
            "upper_bound_y": 421225.5,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "extern:nl:lb:depth_int_max-0wkyvmd3"
            },
            "options": {
                "styles": "Blues:0.025:0.3"
            },
            "rescalable": true,
            "aggregation_type": "average",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/afc86bbe-4b84-40d2-a35b-3f4db241835d/?format=api",
            "uuid": "afc86bbe-4b84-40d2-a35b-3f4db241835d",
            "last_modified": "2021-07-08T11:48:45.628270Z",
            "created": "2018-06-21T12:58:22.287786Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/e29fe554-2610-4037-b4b1-4e6bd37a7881/?format=api",
                "uuid": "e29fe554-2610-4037-b4b1-4e6bd37a7881",
                "name": "Den Haag"
            },
            "access_modifier": "Public",
            "supplier": "project.support",
            "shared_with": [],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "Ontwateringsdiepte",
            "description": "De ontwateringsdiepte is afgeleid van de AHN3 en grondwatergegevens (beschikbaar gesteld door Wareco Ingenieurs) en geeft het verschil tussen het maaiveld uit de AHN3 en het grondwaterpeil aan.\r\n\r\nMet het stedelijk grondwatermodel van Den Haag (opgesteld door Wareco Ingenieurs in 2008) zijn de grondwaterstanden bij klimaatverandering berekend. Daarbij is het KNMI’06 klimaatscenario G+ en W voor 2050 doorgerekend voor een representatief natte wintersituatie.",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/821/?format=api",
                "id": 821,
                "code": "ONTWDPTE",
                "parameter": "Ontwateringsdiepte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "MV",
                "compartment": "GW",
                "created": "2017-06-12T13:59:51.723058Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "temporal": false,
            "layer_collections": [
                {
                    "url": "https://demo.lizard.net/api/v4/layercollections/denhaag_klimaatatlas/?format=api",
                    "slug": "denhaag_klimaatatlas",
                    "organisation": {
                        "url": "https://demo.lizard.net/api/v4/organisations/e29fe554-2610-4037-b4b1-4e6bd37a7881/?format=api",
                        "uuid": "e29fe554-2610-4037-b4b1-4e6bd37a7881",
                        "name": "Den Haag"
                    },
                    "access_modifier": "Public",
                    "supplier": "jelmer.roosjen",
                    "created": "2021-06-01T14:48:16.651399Z",
                    "last_modified": "2021-07-08T12:33:46.506483Z"
                }
            ],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 3.986513679075376,
                "east": 4.595447665819819,
                "north": 52.21335162828261,
                "south": 51.85638987370996
            },
            "projection": "EPSG:28992",
            "origin_x": 59262.0,
            "origin_y": 430673.0,
            "upper_bound_x": 100462.0,
            "upper_bound_y": 469773.0,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "intern:nl:den_haag_ontwateringsdiepte"
            },
            "options": {
                "styles": "Blues:-1:10"
            },
            "rescalable": true,
            "aggregation_type": "curve",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/81ef31b1-a65c-4071-acce-c77a172ba8a9/?format=api",
            "uuid": "81ef31b1-a65c-4071-acce-c77a172ba8a9",
            "last_modified": "2024-08-27T10:17:32.338527Z",
            "created": "2018-06-28T12:07:47.005437Z",
            "organisation": {
                "url": "https://demo.lizard.net/api/v4/organisations/f1a084a2-073b-4a3c-a097-e31d16faee48/?format=api",
                "uuid": "f1a084a2-073b-4a3c-a097-e31d16faee48",
                "name": "STOWA"
            },
            "access_modifier": "Public",
            "supplier": null,
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 6,
            "name": "AHN3 WSS",
            "description": "Hoogtekaart o.b.v. AHN3 zoals gebruikt in Waterschadeschatter",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/308/?format=api",
                "id": 308,
                "code": "HOOGTE (mNAP)",
                "parameter": "Hoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "NAP",
                "compartment": "",
                "created": "2015-09-11T07:13:11.538482Z",
                "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": 3.2553720700505795,
                "east": 7.241735776043489,
                "north": 53.510380458865484,
                "south": 50.734091157216554
            },
            "projection": "EPSG:28992",
            "origin_x": 13560.5,
            "origin_y": 306835.0,
            "upper_bound_x": 278031.0,
            "upper_bound_y": 615392.5,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "intern:nl:ahn3:wss"
            },
            "options": {
                "styles": "dem-nl"
            },
            "rescalable": true,
            "aggregation_type": "curve",
            "dtype": "f4",
            "fill_value": "3.4028234663852886e+38"
        }
    ]
}