fluves / pywaterinfo

Python package to download time series data from waterinfo.be
https://fluves.github.io/pywaterinfo/
MIT License
17 stars 9 forks source link

document usage of `metadata=False` for `get_timeseries_value_layer` #23

Closed stijnvanhoey closed 3 years ago

stijnvanhoey commented 3 years ago

When requestingwith returnfields defined for get_timeseries_value_layer, the data returned contains still a lot of metadata fields added by default. This can be overcome with setting metadata equal to False in the request:

water_level = vmm.get_timeseries_value_layer("192780", returnfields="timestamp,ts_value", metadata="false")

Need to be added to documentation.