Skip to content
Snippets Groups Projects
Commit 837be2b4 authored by Test Paul's avatar Test Paul
Browse files

removed some test code

parent a81cde70
No related branches found
No related tags found
No related merge requests found
......@@ -171,19 +171,6 @@ def set_variables(nas):
None
"""
# variable 1: examples for missing values and flagging
values = [1.22, 2.33, 3.2, 4.55] # missing value is None!
flags = [[], [], [], []]
# [] means no flags for this measurement
# [999] missing or invalid flag needed because of missing value (None)
# [632, 665] multiple flags per measurement possible
metadata = DataObject()
metadata.comp_name = 'relative_humidity'
metadata.unit = '%'
# alternatively, you could set all metadata at once:
# metadata = DataObject(comp_name='HCB', unit = 'pg/m3')
nas.variables.append(DataObject(values_=values, flags=flags, flagcol=True,
metadata=metadata))
# examples for missing values and flagging:
values = [1.22, 2.33, None, 4.55] # missing value is None!
flags = [[], [632, 665], [999], []]
# [] means no flags for this measurement
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment