ZGIS / semantique

Semantic Querying in Earth Observation Data Cubes
https://zgis.github.io/semantique/
Apache License 2.0
16 stars 6 forks source link

Verb to fill missing values #19

Closed luukvdmeer closed 1 year ago

luukvdmeer commented 1 year ago

Description

This verb is already added as a "placeholder", but has no implementation yet. There are three different approaches:

Additional context

Add any other context or screenshots about the feature request here.

luukvdmeer commented 1 year ago

@whisperingpixel @dtiede The fill verb is implemented now and fills missing data by interpolation. Interpolation methods to choose from are "nearest", "linear" and "cubic". 2D interpolation over space is also possible, then it will use 2D nearest neighbour, bilinear and bicubic, repspectively. See here the docs: https://zgis.github.io/semantique/_notebooks/verbs.html#Fill

Another way to handle missing data is using the assign verb in combination with the "is_missing" operator. This can assign fixed values to the missing data. See here the docs: https://zgis.github.io/semantique/_notebooks/verbs.html#Assigning-to-nodata-values

This still has to be added to the Sen2Cube frontend

dtiede commented 1 year ago

Great, thanks!!