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=208
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 2124,
    "next": "https://demo.lizard.net/api/v4/rasters/?format=api&page=209",
    "previous": "https://demo.lizard.net/api/v4/rasters/?format=api&page=207",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/rasters/588e2f24-330a-4d56-934c-71a424c27ea2/?format=api",
            "uuid": "588e2f24-330a-4d56-934c-71a424c27ea2",
            "last_modified": "2025-01-30T14:54:35.466543Z",
            "created": "2025-01-30T12:47:39.199797Z",
            "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": "ruben.vanderzaag",
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 2,
            "name": "PET_toetsing_bomen",
            "description": "",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/6191/?format=api",
                "id": 6191,
                "code": "treeheight",
                "parameter": "Tree height",
                "unit": "m",
                "scale": "interval",
                "description": "Height of trees in meters.",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2020-03-18T09:55:38.843019Z",
                "last_modified": "2020-03-18T09:55:38.842969Z"
            },
            "temporal": false,
            "layer_collections": [],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 4.537142033709564,
                "east": 4.550253711392045,
                "north": 51.91499819488621,
                "south": 51.90616944383196
            },
            "projection": "EPSG:28992",
            "origin_x": 96514.784,
            "origin_y": 435638.235,
            "upper_bound_x": 97405.784,
            "upper_bound_y": 436610.235,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans-consultancy:pet_toetsing_bomen"
            },
            "options": {
                "styles": "Greens"
            },
            "rescalable": false,
            "aggregation_type": "curve",
            "dtype": "u1",
            "fill_value": "255"
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/dbc7913d-0665-47b5-a68e-abb90c92edfd/?format=api",
            "uuid": "dbc7913d-0665-47b5-a68e-abb90c92edfd",
            "last_modified": "2025-01-30T14:26:36.903845Z",
            "created": "2025-01-30T12:50:41.885303Z",
            "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": "ruben.vanderzaag",
            "shared_with": [],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "PET_toetsing_Fveg",
            "description": "",
            "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": [],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 4.537142033709564,
                "east": 4.550253711392045,
                "north": 51.91499819488621,
                "south": 51.90616944383196
            },
            "projection": "EPSG:28992",
            "origin_x": 96514.784,
            "origin_y": 435638.235,
            "upper_bound_x": 97405.784,
            "upper_bound_y": 436610.235,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:PET_toetsing:Fveg"
            },
            "options": {
                "styles": "Greens:0:1"
            },
            "rescalable": false,
            "aggregation_type": "curve",
            "dtype": "f4",
            "fill_value": "-9999.0"
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/a79e27fe-1be6-4580-990b-263d78ee71fc/?format=api",
            "uuid": "a79e27fe-1be6-4580-990b-263d78ee71fc",
            "last_modified": "2025-01-30T14:35:03.000751Z",
            "created": "2025-01-30T12:53:19.025108Z",
            "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": "ruben.vanderzaag",
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 3,
            "name": "PET_toetsing_DSM_AHN4",
            "description": "",
            "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": 4.522461737215524,
                "east": 4.564878665636297,
                "north": 51.92404975640026,
                "south": 51.897092064413606
            },
            "projection": "EPSG:28992",
            "origin_x": 95516.5,
            "origin_y": 434640.0,
            "upper_bound_x": 98401.0,
            "upper_bound_y": 437606.0,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans-consultancy:pet_toetsing_dsm_ahn4"
            },
            "options": {
                "styles": "dem-nl"
            },
            "rescalable": true,
            "aggregation_type": "curve",
            "dtype": "f4",
            "fill_value": "3.4028234663852886e+38"
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/2f7b521e-528c-4a0b-a7f8-46a2beaadace/?format=api",
            "uuid": "2f7b521e-528c-4a0b-a7f8-46a2beaadace",
            "last_modified": "2025-01-31T08:30:53.991436Z",
            "created": "2025-01-30T15:21:50.079625Z",
            "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": null,
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 2,
            "name": "PET_toetsing_panden",
            "description": "",
            "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": [],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 4.537142033709564,
                "east": 4.550253711392045,
                "north": 51.91499819488621,
                "south": 51.90616944383196
            },
            "projection": "EPSG:28992",
            "origin_x": 96514.784,
            "origin_y": 435638.235,
            "upper_bound_x": 97405.784,
            "upper_bound_y": 436610.235,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans-consultancy:pet_toetsing_panden"
            },
            "options": {
                "styles": "Greens"
            },
            "rescalable": false,
            "aggregation_type": "curve",
            "dtype": "f4",
            "fill_value": "-9999.0"
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/d626ffcf-2d0c-4090-8a21-b83c05507f22/?format=api",
            "uuid": "d626ffcf-2d0c-4090-8a21-b83c05507f22",
            "last_modified": "2025-05-27T06:34:52.303728Z",
            "created": "2025-02-04T07:30:56.203126Z",
            "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": null,
            "shared_with": [],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "hittestress_rivium_to_delete",
            "description": "",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/8502/?format=api",
                "id": 8502,
                "code": "hittestress_int",
                "parameter": "Hittestress",
                "unit": "",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2021-02-11T09:23:24.691785Z",
                "last_modified": "2021-02-11T09:23:24.691738Z"
            },
            "temporal": false,
            "layer_collections": [],
            "first_value_timestamp": "1970-01-01T00:00:00Z",
            "last_value_timestamp": "1970-01-01T00:00:00Z",
            "spatial_bounds": {
                "west": 4.537142033709564,
                "east": 4.550253711392045,
                "north": 51.91499819488621,
                "south": 51.90616944383196
            },
            "projection": "EPSG:28992",
            "origin_x": 96514.784,
            "origin_y": 435638.235,
            "upper_bound_x": 97405.784,
            "upper_bound_y": 436610.235,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "hittestress_Rivium:to_delete"
            },
            "options": {},
            "rescalable": false,
            "aggregation_type": "curve",
            "dtype": "f4",
            "fill_value": "-9999.0"
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/1b3402b4-117f-45b5-8333-ca58957e14d2/?format=api",
            "uuid": "1b3402b4-117f-45b5-8333-ca58957e14d2",
            "last_modified": "2025-02-04T07:54:33.970050Z",
            "created": "2025-02-04T07:54:33.970063Z",
            "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": "ruben.vanderzaag",
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 4,
            "name": "PET_hittestressanalyse_schaduw_1400",
            "description": "Schaduw op hoogste zonnestand",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/1010/?format=api",
                "id": 1010,
                "code": "helling",
                "parameter": "Helling",
                "unit": "",
                "scale": "ratio",
                "description": "Hellling",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2019-01-15T13:04:07.666832Z",
                "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": 4.522461737215524,
                "east": 4.564878665636297,
                "north": 51.92404975640026,
                "south": 51.897092064413606
            },
            "projection": "EPSG:28992",
            "origin_x": 95516.5,
            "origin_y": 434640.0,
            "upper_bound_x": 98401.0,
            "upper_bound_y": 437606.0,
            "pixelsize_x": 0.5,
            "pixelsize_y": -0.5,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "nelen-schuurmans:PET_hittestressanalyse_schaduw_1400"
            },
            "options": {
                "styles": "gray_r:0:1"
            },
            "rescalable": false,
            "aggregation_type": "none",
            "dtype": "f4",
            "fill_value": "3.4028234663852886e+38"
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/74dbba5d-225b-4228-96b3-b6b920820133/?format=api",
            "uuid": "74dbba5d-225b-4228-96b3-b6b920820133",
            "last_modified": "2025-02-12T15:12:42.394740Z",
            "created": "2025-02-12T15:11:32.100796Z",
            "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": "sa_tools",
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 5,
            "name": "Voor digital twin Utrecht_7 2025-02-12 15-04-19 #1 - T100 Water depth (timeseries)",
            "description": "",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/8716/?format=api",
                "id": 8716,
                "code": "3di_waterdepth",
                "parameter": "Water depth",
                "unit": "m",
                "scale": "interval",
                "description": "Water depth (used in 3Di postprocessing)",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2022-05-10T14:59:01.690519Z",
                "last_modified": "2022-05-10T14:59:01.690509Z"
            },
            "temporal": true,
            "layer_collections": [],
            "first_value_timestamp": "2024-01-01T01:00:00Z",
            "last_value_timestamp": "2024-01-01T05:00:06.031250Z",
            "spatial_bounds": {
                "west": 5.104352354470765,
                "east": 5.1336447015118924,
                "north": 52.10251586449099,
                "south": 52.08447360610915
            },
            "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": "scenarios:41767:depth-dtri"
            },
            "options": {
                "styles": "3di_waterdepth:0.0:2.0"
            },
            "rescalable": false,
            "aggregation_type": "average",
            "dtype": "f4",
            "fill_value": "3.4028234663852886e+38"
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/976e4870-de97-43ac-b72d-9d4db3176b30/?format=api",
            "uuid": "976e4870-de97-43ac-b72d-9d4db3176b30",
            "last_modified": "2025-02-12T15:31:52.346982Z",
            "created": "2025-02-12T15:11:32.388709Z",
            "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": "sa_tools",
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 5,
            "name": "Voor digital twin Utrecht_7 2025-02-12 15-04-19 #1 - T100 Max water depth",
            "description": "",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/8716/?format=api",
                "id": 8716,
                "code": "3di_waterdepth",
                "parameter": "Water depth",
                "unit": "m",
                "scale": "interval",
                "description": "Water depth (used in 3Di postprocessing)",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2022-05-10T14:59:01.690519Z",
                "last_modified": "2022-05-10T14:59:01.690509Z"
            },
            "temporal": false,
            "layer_collections": [],
            "first_value_timestamp": "2024-01-01T05:00:06.031250Z",
            "last_value_timestamp": "2024-01-01T05:00:06.031250Z",
            "spatial_bounds": {
                "west": 5.104352354470765,
                "east": 5.1336447015118924,
                "north": 52.10251586449099,
                "south": 52.08447360610915
            },
            "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": "scenarios:41767:depth-max-dtri"
            },
            "options": {
                "styles": "3di_waterdepth:0.0:2.0"
            },
            "rescalable": false,
            "aggregation_type": "curve",
            "dtype": "f4",
            "fill_value": "3.4028234663852886e+38"
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/68e44d66-04d2-480b-a772-997ae0365137/?format=api",
            "uuid": "68e44d66-04d2-480b-a772-997ae0365137",
            "last_modified": "2025-02-12T15:12:42.469411Z",
            "created": "2025-02-12T15:11:32.710191Z",
            "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": "sa_tools",
            "shared_with": [],
            "writable": false,
            "is_geoblock": true,
            "weight": 10,
            "name": "Voor digital twin Utrecht_7 2025-02-12 15-04-19 #1 - T100 Flood hazard rating",
            "description": "",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/8712/?format=api",
                "id": 8712,
                "code": "3di_floodhazardrating",
                "parameter": "Flood hazard rating",
                "unit": "-",
                "scale": "interval",
                "description": "Flood hazard rating (used in 3Di postprocessing)",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2022-05-10T14:55:40.798827Z",
                "last_modified": "2022-05-10T15:00:34.136515Z"
            },
            "temporal": false,
            "layer_collections": [],
            "first_value_timestamp": "2024-01-01T05:00:06.031250Z",
            "last_value_timestamp": "2024-01-01T05:00:06.031250Z",
            "spatial_bounds": {
                "west": 5.104352354470765,
                "east": 5.1336447015118924,
                "north": 52.10251586449099,
                "south": 52.08447360610915
            },
            "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": "scenarios:41767:flood-hazard-rating"
            },
            "options": {
                "styles": "3di_floodhazardrating:0:2"
            },
            "rescalable": false,
            "aggregation_type": "curve",
            "dtype": "f4",
            "fill_value": "3.4028234663852886e+38"
        },
        {
            "url": "https://demo.lizard.net/api/v4/rasters/3af319f7-5b2d-4065-9ea4-701522892f22/?format=api",
            "uuid": "3af319f7-5b2d-4065-9ea4-701522892f22",
            "last_modified": "2025-02-12T15:11:33.004066Z",
            "created": "2025-02-12T15:11:33.004074Z",
            "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": "sa_tools",
            "shared_with": [],
            "writable": false,
            "is_geoblock": false,
            "weight": 0,
            "name": "Voor digital twin Utrecht_7 2025-02-12 15-04-19 #1 - T100 Rain",
            "description": "",
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/8714/?format=api",
                "id": 8714,
                "code": "3di_precipitation",
                "parameter": "Precipitation",
                "unit": "mm/h",
                "scale": "interval",
                "description": "Precipitation (used in 3Di postprocessing)",
                "domain_values": null,
                "reference_frame": null,
                "compartment": null,
                "created": "2022-05-10T14:57:45.709343Z",
                "last_modified": "2022-05-10T14:57:45.709330Z"
            },
            "temporal": true,
            "layer_collections": [],
            "first_value_timestamp": "2024-01-01T01:00:00Z",
            "last_value_timestamp": "2024-01-01T05:00:06.031250Z",
            "spatial_bounds": {
                "west": 5.104352354470037,
                "east": 5.1336447015118924,
                "north": 52.10251586449099,
                "south": 52.08447360610903
            },
            "projection": "EPSG:28992",
            "origin_x": 135620.4909367,
            "origin_y": 455171.7819796,
            "upper_bound_x": 137620.4909367,
            "upper_bound_y": 457171.7819796,
            "pixelsize_x": 10.0,
            "pixelsize_y": -10.0,
            "interval": null,
            "wms_info": {
                "endpoint": "https://demo.lizard.net/wms/",
                "layer": "scenarios:41767:rain-quad"
            },
            "options": {
                "styles": "3di_precipitation"
            },
            "rescalable": false,
            "aggregation_type": "average",
            "dtype": "f4",
            "fill_value": "-9999.0"
        }
    ]
}