ArtesiaWater / hydropandas

Module for loading observation data into custom DataFrames
https://hydropandas.readthedocs.io
MIT License
51 stars 11 forks source link

remove unused modules and update io_knmi #71

Closed OnnoEbbens closed 2 years ago

OnnoEbbens commented 2 years ago

Some unused modules are removed together with their data and tests. These modules are:

Now, the recommended way to store and load an ObsCollection uses pickles: ObsCollection.to_pickle('oc.pklz')

Reading can be done using:

import pandas as pd
oc = pd.read_pickle('oc.pklz')