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=12
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=13",
    "previous": "https://demo.lizard.net/api/v4/rasters/?format=api&page=11",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/rasters/558d9fe5-31f7-41b2-9d06-943a41953a16/?format=api",
            "uuid": "558d9fe5-31f7-41b2-9d06-943a41953a16",
            "last_modified": "2019-08-21T12:14:00.769129Z",
            "created": "2019-08-21T12:13:44.712128Z",
            "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 - Droogte - Verandering kwel",
            "description": "Verandering kwel",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/343/?format=api",
                "id": 343,
                "code": "BODHTE (mm)",
                "parameter": "Bodemhoogte",
                "unit": "mm",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "",
                "created": "2015-09-11T08:04:16.345254Z",
                "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-droogte-verandering-kwel"
            },
            "options": {
                "styles": "RdBu:-2.74:2.88"
            },
            "rescalable": true,
            "aggregation_type": "sum",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/045ff506-d7a2-42ed-ae19-fb320c5e0555/?format=api",
            "uuid": "045ff506-d7a2-42ed-ae19-fb320c5e0555",
            "last_modified": "2019-08-21T12:16:40.155120Z",
            "created": "2019-08-21T12:16:24.463181Z",
            "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 -  Droogte - Verandering GLG",
            "description": "Verandering glg",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/358/?format=api",
                "id": 358,
                "code": "NEERSG (mm)",
                "parameter": "Neerslag",
                "unit": "mm",
                "scale": "ratio",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "",
                "created": "2015-09-11T08:04:25.630182Z",
                "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-droogte-verandering-glg"
            },
            "options": {
                "styles": "RdBu:-5.11:10.86"
            },
            "rescalable": true,
            "aggregation_type": "sum",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/bd81e309-8a70-4c6e-b5d9-cedf3f18bfa5/?format=api",
            "uuid": "bd81e309-8a70-4c6e-b5d9-cedf3f18bfa5",
            "last_modified": "2019-08-21T14:59:59.339922Z",
            "created": "2019-08-21T14:59:00.139336Z",
            "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 - Droogte - GLG huidig",
            "description": "glg",
            "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": 1.1251398933597005,
                "east": 2.423205478912409,
                "north": 5.030826169652366,
                "south": 3.8329441473028516
            },
            "projection": "EPSG:3857",
            "origin_x": 125250.0,
            "origin_y": 427000.0,
            "upper_bound_x": 269750.0,
            "upper_bound_y": 560750.0,
            "pixelsize_x": 250.0,
            "pixelsize_y": -250.0,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:twn-droogte-glg"
            },
            "options": {
                "styles": "Blues:-4.29:8.54"
            },
            "rescalable": true,
            "aggregation_type": "sum",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/ee342e12-5c79-4dbe-9130-8e16136fd032/?format=api",
            "uuid": "ee342e12-5c79-4dbe-9130-8e16136fd032",
            "last_modified": "2023-12-15T15:31:30.303358Z",
            "created": "2019-08-22T12:52:56.939033Z",
            "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 - ALMELO - GHG",
            "description": "Gemiddeld hoogste grondwaterstand Almelo",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/298/?format=api",
                "id": 298,
                "code": "STIJGHTE (mNAP)",
                "parameter": "Stijghoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "NAP",
                "compartment": "",
                "created": "2015-09-11T07:11:50.753022Z",
                "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.421474953824799,
                "east": 6.839988633535304,
                "north": 52.43865972288494,
                "south": 52.264165228542026
            },
            "projection": "EPSG:28992",
            "origin_x": 225598.0,
            "origin_y": 476113.0,
            "upper_bound_x": 253793.0,
            "upper_bound_y": 495048.0,
            "pixelsize_x": 5.0,
            "pixelsize_y": -5.0,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:twn-almelo-ghg"
            },
            "options": {
                "styles": "Blues:7.9:11.56"
            },
            "rescalable": true,
            "aggregation_type": "sum",
            "dtype": "f4",
            "fill_value": "-9999.0"
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/0fe4a416-3217-4f78-b157-a04d214864ab/?format=api",
            "uuid": "0fe4a416-3217-4f78-b157-a04d214864ab",
            "last_modified": "2019-12-05T14:22:24.354495Z",
            "created": "2019-08-26T12:47:26.451138Z",
            "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": "ivar.lokhorst",
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 4,
            "name": "TWN - Wateroverlast - NENS - 160mm masked",
            "description": "Stresstest-resultaten TWN voor een T1000-bui: 160mm in 2 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": [],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 6.3227480050713325,
                "east": 7.0775130429007405,
                "north": 52.49816126092554,
                "south": 52.1138462114894
            },
            "projection": "EPSG:28992",
            "origin_x": 219069.5,
            "origin_y": 459728.0,
            "upper_bound_x": 269799.0,
            "upper_bound_y": 501580.0,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:stresstest-160mm-twn_panden_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/45273b27-68a7-45a8-af72-ef47bbcdbf77/?format=api",
            "uuid": "45273b27-68a7-45a8-af72-ef47bbcdbf77",
            "last_modified": "2019-12-05T13:26:07.255521Z",
            "created": "2019-08-26T14:08:48.502388Z",
            "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": true,
            "weight": 4,
            "name": "TWN - Wateroverlast - NENS - 70mm masked",
            "description": "Stresstest-resultaten TWN voor een T1000-bui: 70mm in 2 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": [],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 6.3227480050713325,
                "east": 7.0775130429007405,
                "north": 52.49816126092554,
                "south": 52.1138462114894
            },
            "projection": "EPSG:28992",
            "origin_x": 219069.5,
            "origin_y": 459728.0,
            "upper_bound_x": 269799.0,
            "upper_bound_y": 501580.0,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:stresstest-70mm-twn_panden_mask"
            },
            "options": {
                "styles": "Blues:0:0.3"
            },
            "rescalable": false,
            "aggregation_type": "none",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/02545262-bdb7-4179-a8a0-755990a74958/?format=api",
            "uuid": "02545262-bdb7-4179-a8a0-755990a74958",
            "last_modified": "2019-12-05T14:11:26.241061Z",
            "created": "2019-08-26T14:13:57.289725Z",
            "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": true,
            "weight": 4,
            "name": "TWN - Wateroverlast - NENS - 90mm masked",
            "description": "TWN - Wateroverlast - NENS - 90mm masked",
            "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": 6.3227480050713325,
                "east": 7.0775130429007405,
                "north": 52.49816126092554,
                "south": 52.1138462114894
            },
            "projection": "EPSG:28992",
            "origin_x": 219069.5,
            "origin_y": 459728.0,
            "upper_bound_x": 269799.0,
            "upper_bound_y": 501580.0,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:stresstest-90mm-twn_panden_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/9073a7d3-4c7c-476c-8328-2873122d8a2d/?format=api",
            "uuid": "9073a7d3-4c7c-476c-8328-2873122d8a2d",
            "last_modified": "2019-12-05T13:58:52.643845Z",
            "created": "2019-08-27T13:11:22.489264Z",
            "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": true,
            "weight": 17,
            "name": "Geoblock waterlichamen",
            "description": "simpel geoblock droogte-portaal",
            "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.0,
                "east": 8.0,
                "north": 54.0,
                "south": 50.0
            },
            "projection": "EPSG:4326",
            "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": "nelen-schuurmans:geoblock-waterlichamen"
            },
            "options": {
                "styles": "Blues:0:1"
            },
            "rescalable": false,
            "aggregation_type": "average",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/2ec352bb-5acb-43c6-93de-ea81f9c0d201/?format=api",
            "uuid": "2ec352bb-5acb-43c6-93de-ea81f9c0d201",
            "last_modified": "2019-12-05T14:05:51.550742Z",
            "created": "2019-08-27T14:23:09.557365Z",
            "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": true,
            "weight": 4,
            "name": "Stresstest 160mm 48h TWN masked",
            "description": "Stresstest-resultaten TWN voor 160mm in 2 dagen panden gemasked",
            "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": 6.3227480050713325,
                "east": 7.0775130429007405,
                "north": 52.49816126092554,
                "south": 52.1138462114894
            },
            "projection": "EPSG:28992",
            "origin_x": 219069.5,
            "origin_y": 459728.0,
            "upper_bound_x": 269799.0,
            "upper_bound_y": 501580.0,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:stresstest-160mm-48h-twn_panden_masked"
            },
            "options": {
                "styles": "Blues:0:0.3"
            },
            "rescalable": false,
            "aggregation_type": "curve",
            "dtype": null,
            "fill_value": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/1d45cc53-f6ae-437a-9cfd-76586a193f07/?format=api",
            "uuid": "1d45cc53-f6ae-437a-9cfd-76586a193f07",
            "last_modified": "2019-09-23T12:17:47.725111Z",
            "created": "2019-08-30T11:34:34.380717Z",
            "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": "1830_twn_verandering_glg_2050",
            "description": "De laag verandering_glg_2050 komt van twn. Voor meer informatie over \r\n        deze laag, ga naar de klimaatatlas www.twn.klimaatatlas.net.",
            "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": 4.943732300234112,
                "east": 7.097408739231976,
                "north": 53.03283826338092,
                "south": 51.81979238538452
            },
            "projection": "EPSG:28992",
            "origin_x": 125250.0,
            "origin_y": 427000.0,
            "upper_bound_x": 269750.0,
            "upper_bound_y": 560750.0,
            "pixelsize_x": 250.0,
            "pixelsize_y": -250.0,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:1830_twn_verandering_glg_2050"
            },
            "options": {
                "styles": "RdBu:-0.8:0.8"
            },
            "rescalable": true,
            "aggregation_type": "curve",
            "dtype": null,
            "fill_value": null
        }
    ]
}