How to handle loaded data outside of valid value range #33
luukvdmeer
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
Let's have a look at the options that we have:
1: Mixes the semantics of missing values Any other ideas? My preference with the given options is still (1) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The layout file specifies for each layer which values it may contain. For categorical data this is a list of each possible value, for numerical data it is a lower and upper bound. Right now the retriever functions do not mask data that are outside of these valid ranges. This is mainly important for those layers that refer to the same actual data source, like "atmosphere colortype" and "appearance colortype". For example, the retrieved "appearance colortype" layer still contains category indices of the cloud category but this index does not appear in the value labels (since the metadata object of the layer does not contain it). We cannot really remove those values, because they are not the same as "missing data". How to handle them?
Beta Was this translation helpful? Give feedback.
All reactions