OpenSenseAction / OPENSENSE_sandbox

Collection of runable examples with software packages for processing opportunistic rainfall sensors
BSD 3-Clause "New" or "Revised" License
13 stars 16 forks source link

add a basic pycomlink example using OpenMRG data #45

Closed maxmargraf closed 2 years ago

maxmargraf commented 2 years ago

As the title suggests the recent notebook is reworked to no feature an example routine to process the openMRG data with pycomlink.

github-actions[bot] commented 2 years ago

Binder :point_left: Launch a binder notebook on branch _maxmargraf/OPENSENSE_sandbox/updated_pycomlinkexample

maxmargraf commented 2 years ago

Notebook runs in mybinder without too much memory consumption.

cchwala commented 2 years ago

Small correction:

TRSL is the transmitted signal level minus the received signal level and represents the total path loss along the CML

should be

TL (total path loss) is ...

Also, can you add a scatter plot or hexbin plot of the final result?

I quickly tried, e.g. like this

df['CML'] = pd.Series(index=cml.time.values, data=cml.rainfall_amount.values/60)

Seems to work fine.

maxmargraf commented 2 years ago

@cchwala only saw your suggestion for the scatter plot now. I updated it with an hourly scatter plot for now.

cchwala commented 2 years ago

Thanks 👍