currently gauge_meta stores computed data per gauge if in the yml file compute_each_decade is set to false and in the other case a variable gauge_meta_decadal is created which stores the same but has a nother flag column named decade
This double structure is very annoying and overcoming it will save many lines of code
Idea is to write all gauge_meta data to a single variable called gauge_meta which has a column decade which is set to -9999 if compute_each_decade is set to false
currently
gauge_meta
stores computed data per gauge if in the yml filecompute_each_decade
is set to false and in the other case a variablegauge_meta_decadal
is created which stores the same but has a nother flag column nameddecade
This double structure is very annoying and overcoming it will save many lines of code
Idea is to write all gauge_meta data to a single variable called
gauge_meta
which has a columndecade
which is set to -9999 ifcompute_each_decade
is set to false