GEUS-Glaciology-and-Climate / pypromice

Process AWS data from L0 (raw logger) through Lx (end user)
https://pypromice.readthedocs.io
GNU General Public License v2.0
12 stars 4 forks source link

aws object processing #84

Closed PennyHow closed 1 year ago

PennyHow commented 1 year ago

Brought up by @BaptisteVandecrux, it would be good for development purposes if the initialisation of the aws processing only loaded L0 data in the object. Then the processing steps L0toL1, L1toL2 and L2toL3 could be performed incrementally, rather than all wrapped up in the process function.

PennyHow commented 1 year ago

Done. Now, aws object initialization is separate from processing. For example:

a = AWS(config_file, inpath, variables, metadata)
a.process()
a.write(outpath)