Skip to content

Releases: ArtesiaWater/hydropandas

Update to version 0.7.0

07 Feb 16:19
bdd4288
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.1...v0.7.0

Update to version 0.6.1

18 Aug 13:55
27573b7
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.0...v0.6.1

Update to version 0.6.0

10 Aug 10:58
73af819
Compare
Choose a tag to compare

New features:

  • get different types of evaporation from measurements (Pennman, Makkink or Hargraves)
  • get an evaporation time series which is interpolated from the time series of multiple measurements stations
  • write an ObsCollection to an .xlsx file with one overview tab and another tab per observation
  • merge two observations and merge two observation collections.

Update to version 0.5.1

17 Mar 16:10
f04193d
Compare
Choose a tag to compare

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

  • io_arctic
  • io_pystore

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')

The knmi module is modified to distinguish between precipitation and meteo stations as described in #70.

Update to version 0.5.0

26 Oct 13:25
6cf3590
Compare
Choose a tag to compare

In version 0.5.0 the KNMIObs is removed and 3 new objects are created instead:

  • MeteoObs for any type of meteorological observation
  • PrecipitationObs a child class of MeteoObs for precipitation data
  • EvaporationObs a child class of MeteoObs for evaporation data

The update also contains some modifications to the knmi module:

  • missing precipitation data from a meteo station can now be filled with nearby data of a precipitation (neerslag) station.
  • if you want to use the knmi api but the api is offline the non-api method for downloading data will be used.

Minor release v04.2

06 Oct 11:04
fa00ea0
Compare
Choose a tag to compare

Some small improvements:

  • Remove pandas max dependency
  • improve examples
  • add interpolation to from_modflow method
  • improve interpolation
  • fix deprecation warning pyproj
  • allow getting modellayer for piezometers from xarray DataSet

v0.4.1

31 Aug 11:02
5644a3a
Compare
Choose a tag to compare

Minor improvements and fixes for the name of KNMI observations and the plotting module. Also some improvements to the testing.

Update to version 0.4.0

13 Aug 08:40
448b867
Compare
Choose a tag to compare

This update includes:

  • reinstate and update the old KNMI api functions
  • create a repr for observation objects
  • replace verbose with the logging module
  • remove fieldlogger functions as they are outdated and unused
  • many smaller fixes and documentation improvements

release v0.3.7 knmi api fix

23 Apr 10:28
ad8b3b5
Compare
Choose a tag to compare

Main fix for the KNMI api that went offline see #59.

Other minor fixes:

  • add option for unstructured grids in io_modflow
  • fix error with duplicate index in Dino, #61
  • fix memory usage of io_fews and add filtering on xml headers

Minor Release v0.3.6

18 Mar 13:16
8812a45
Compare
Choose a tag to compare

Minor fixes

  • fix io_xml import error
  • update meteo stations coordinates
  • add overwrite keyword argument to to_pastastore()