Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to 0.6.0 #192

Merged
merged 122 commits into from
Jun 7, 2023
Merged

Update to 0.6.0 #192

merged 122 commits into from
Jun 7, 2023

Commits on Apr 12, 2023

  1. Update dev version

    rubencalje committed Apr 12, 2023
    Configuration menu
    Copy the full SHA
    2e942b5 View commit details
    Browse the repository at this point in the history
  2. Remove dependency on mfpymake

    As this is no longer needed to download the executables
    rubencalje committed Apr 12, 2023
    Configuration menu
    Copy the full SHA
    fdbb2f8 View commit details
    Browse the repository at this point in the history
  3. make surface water methods more robust

    add_stages_from_waterboards and add_bottom_height_from_waterboards
    rubencalje committed Apr 12, 2023
    Configuration menu
    Copy the full SHA
    4224213 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2ad644c View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2023

  1. Update setup.py

    add hydrology as topic
    martinvonk committed Apr 14, 2023
    Configuration menu
    Copy the full SHA
    4c585f5 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2023

  1. Configuration menu
    Copy the full SHA
    e8e601e View commit details
    Browse the repository at this point in the history
  2. Add information about webservices Rijn en IJssel

    And improve handling of columns
    rubencalje committed Apr 17, 2023
    Configuration menu
    Copy the full SHA
    f4fa303 View commit details
    Browse the repository at this point in the history
  3. typo

    dbrakenhoff committed Apr 17, 2023
    Configuration menu
    Copy the full SHA
    76c44a1 View commit details
    Browse the repository at this point in the history
  4. update ci

    dbrakenhoff committed Apr 17, 2023
    Configuration menu
    Copy the full SHA
    e9b8e0f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4fd79da View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2023

  1. Configuration menu
    Copy the full SHA
    18a9bf3 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2023

  1. add methods:

    - get_structured_grid_ds: create a structured grid DataSet
    - get_vertex_grid_ds: create a vertex grid Dataset
    dbrakenhoff committed May 1, 2023
    Configuration menu
    Copy the full SHA
    236437e View commit details
    Browse the repository at this point in the history
  2. add modelgrid_to_ds function

    - allow creation of datasets based on flopy modelgrid objects
    - supports both vertex and structured grid
    dbrakenhoff committed May 1, 2023
    Configuration menu
    Copy the full SHA
    ebab4b8 View commit details
    Browse the repository at this point in the history
  3. code formatting

    dbrakenhoff committed May 1, 2023
    Configuration menu
    Copy the full SHA
    22798da View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f5c909c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6bd3d3e View commit details
    Browse the repository at this point in the history
  6. minor update nb (black)

    dbrakenhoff committed May 1, 2023
    Configuration menu
    Copy the full SHA
    e227c95 View commit details
    Browse the repository at this point in the history
  7. update reqs

    dbrakenhoff committed May 1, 2023
    Configuration menu
    Copy the full SHA
    f09e4a6 View commit details
    Browse the repository at this point in the history
  8. codacy suggestion

    dbrakenhoff committed May 1, 2023
    Configuration menu
    Copy the full SHA
    d6302c8 View commit details
    Browse the repository at this point in the history
  9. move to pyproject.toml

    - update RTD workflow
    - update CI workflow
    - remove setup.py
    - move shape data
    dbrakenhoff committed May 1, 2023
    Configuration menu
    Copy the full SHA
    cc98281 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    125c8ed View commit details
    Browse the repository at this point in the history
  11. fix

    dbrakenhoff committed May 1, 2023
    Configuration menu
    Copy the full SHA
    6a853f5 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    9978392 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2023

  1. fix nb

    dbrakenhoff committed May 2, 2023
    Configuration menu
    Copy the full SHA
    b61b20d View commit details
    Browse the repository at this point in the history
  2. fix reading ascii file header if key is not in header

    fix #171
    header reading is now fine if not all ascii keys:
            "ncols",
            "nrows",
            "nodata_value",
            "xllcorner",
            "yllcorner",
            "cellsize",
            "xllcenter",
            "yllcenter",
        are in the header
    martinvonk committed May 2, 2023
    Configuration menu
    Copy the full SHA
    77970e8 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2023

  1. Configuration menu
    Copy the full SHA
    17bd391 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7bf05e7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    69cdafd View commit details
    Browse the repository at this point in the history

Commits on May 8, 2023

  1. some improvements:

    - add gridtype attr
    - improve reading grids at real-world coords
    - set delr/delc for structured grids
    dbrakenhoff committed May 8, 2023
    Configuration menu
    Copy the full SHA
    7eacd18 View commit details
    Browse the repository at this point in the history
  2. set gridgen_ws

    add correct x,y-offsets
    dbrakenhoff committed May 8, 2023
    Configuration menu
    Copy the full SHA
    2756593 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1f9b276 View commit details
    Browse the repository at this point in the history
  4. Knmi stations (#174)

    * Add option to only use most common station
    
    Slow determination of stations (locations.geo.get_nearest_point) is removed
    
    * solve minor bug and add test for most_common_station=True
    
    * Set gridgen files in a separate directory. Solves issue #158
    
    * minor changes
    
    * Make most_common_station work with structured grids as well
    
    * Create gridgen directory when it does not exist
    
    * Solve fiona.errors.DriverError:  not recognized as a supported file format.
    
    * Remove rasterstats as a dependency for tests and docs
    
    * Codacy stuff
    rubencalje authored May 8, 2023
    Configuration menu
    Copy the full SHA
    2a527b9 View commit details
    Browse the repository at this point in the history
  5. Knmi stations (#174)

    * Add option to only use most common station
    
    Slow determination of stations (locations.geo.get_nearest_point) is removed
    
    * solve minor bug and add test for most_common_station=True
    
    * Set gridgen files in a separate directory. Solves issue #158
    
    * minor changes
    
    * Make most_common_station work with structured grids as well
    
    * Create gridgen directory when it does not exist
    
    * Solve fiona.errors.DriverError:  not recognized as a supported file format.
    
    * Remove rasterstats as a dependency for tests and docs
    
    * Codacy stuff
    rubencalje authored May 8, 2023
    Configuration menu
    Copy the full SHA
    eab2d35 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    607d748 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2023

  1. Merge pull request #169 from ArtesiaWater/ds_from_modelgrids

    Create nlmod Datasets from flopy modelgrids
    dbrakenhoff authored May 9, 2023
    Configuration menu
    Copy the full SHA
    b662e4b View commit details
    Browse the repository at this point in the history
  2. add methods:

    - get_structured_grid_ds: create a structured grid DataSet
    - get_vertex_grid_ds: create a vertex grid Dataset
    dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    b8e227e View commit details
    Browse the repository at this point in the history
  3. add modelgrid_to_ds function

    - allow creation of datasets based on flopy modelgrid objects
    - supports both vertex and structured grid
    dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    c0770dd View commit details
    Browse the repository at this point in the history
  4. code formatting

    dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    1b6488b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    224f8ba View commit details
    Browse the repository at this point in the history
  6. codacy suggestion

    dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    8576c3c View commit details
    Browse the repository at this point in the history
  7. some improvements:

    - add gridtype attr
    - improve reading grids at real-world coords
    - set delr/delc for structured grids
    dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    8d242ca View commit details
    Browse the repository at this point in the history
  8. set gridgen_ws

    add correct x,y-offsets
    dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    c4ca68d View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f7b65ed View commit details
    Browse the repository at this point in the history
  10. fix reading ascii file header if key is not in header

    fix #171
    header reading is now fine if not all ascii keys:
            "ncols",
            "nrows",
            "nodata_value",
            "xllcorner",
            "yllcorner",
            "cellsize",
            "xllcenter",
            "yllcenter",
        are in the header
    martinvonk authored and dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    0de78bb View commit details
    Browse the repository at this point in the history
  11. Minor change in surface_water.py

    rubencalje authored and dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    ad39be6 View commit details
    Browse the repository at this point in the history
  12. Knmi stations (#174)

    * Add option to only use most common station
    
    Slow determination of stations (locations.geo.get_nearest_point) is removed
    
    * solve minor bug and add test for most_common_station=True
    
    * Set gridgen files in a separate directory. Solves issue #158
    
    * minor changes
    
    * Make most_common_station work with structured grids as well
    
    * Create gridgen directory when it does not exist
    
    * Solve fiona.errors.DriverError:  not recognized as a supported file format.
    
    * Remove rasterstats as a dependency for tests and docs
    
    * Codacy stuff
    rubencalje authored and dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    f1c920e View commit details
    Browse the repository at this point in the history
  13. Knmi stations (#174)

    * Add option to only use most common station
    
    Slow determination of stations (locations.geo.get_nearest_point) is removed
    
    * solve minor bug and add test for most_common_station=True
    
    * Set gridgen files in a separate directory. Solves issue #158
    
    * minor changes
    
    * Make most_common_station work with structured grids as well
    
    * Create gridgen directory when it does not exist
    
    * Solve fiona.errors.DriverError:  not recognized as a supported file format.
    
    * Remove rasterstats as a dependency for tests and docs
    
    * Codacy stuff
    rubencalje authored and dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    f931206 View commit details
    Browse the repository at this point in the history
  14. update pyproject toml

    dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    ae08bd1 View commit details
    Browse the repository at this point in the history
  15. codacy

    dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    d7d7f16 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    cbf54e6 View commit details
    Browse the repository at this point in the history
  17. merge again...

    isort+blac
    dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    fc5839a View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    9a970d9 View commit details
    Browse the repository at this point in the history
  19. add ipython

    dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    e42e066 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    a9f6299 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    d271581 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    2bc181c View commit details
    Browse the repository at this point in the history
  23. add ipykernel

    dbrakenhoff committed May 9, 2023
    Configuration menu
    Copy the full SHA
    5312c0f View commit details
    Browse the repository at this point in the history

Commits on May 10, 2023

  1. Merge pull request #170 from ArtesiaWater/pyproject_toml2

    Move to pyproject.toml
    dbrakenhoff authored May 10, 2023
    Configuration menu
    Copy the full SHA
    1ef997a View commit details
    Browse the repository at this point in the history
  2. Address @rubencalje comments

    - make _get_*_grid_ds functions internal
    - move all vertex grid logic into function
    - users should use modelgrid_to_ds()
    - make tight_layout optional, as this does not work nicely with animations
    dbrakenhoff committed May 10, 2023
    Configuration menu
    Copy the full SHA
    79c4fe1 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2023

  1. add animate map func

    dbrakenhoff committed May 11, 2023
    Configuration menu
    Copy the full SHA
    8418eea View commit details
    Browse the repository at this point in the history
  2. formatting

    dbrakenhoff committed May 11, 2023
    Configuration menu
    Copy the full SHA
    8c34e1f View commit details
    Browse the repository at this point in the history

Commits on May 12, 2023

  1. Merge pull request #176 from ArtesiaWater/animate

    Add animate function
    dbrakenhoff authored May 12, 2023
    Configuration menu
    Copy the full SHA
    131156e View commit details
    Browse the repository at this point in the history
  2. Use the provisonal version of modpath (#177)

    * Use the provisonal version of modpath
    
    * Put modpath files in its own directory
    
    * fix modpath notebook warnings and codacy issue
    
    * Fix rtd requirements
    
    * make sure geocube is in requirements rtd
    
    * Fix spelling error: provisonal -> provisional
    
    * make mp7_provisional executable
    
    * don't need adjustment of file paths?
    
    * add back file location check
    
    * add modpath excecutable to setuptools.package-data
    
    * Fix sphinx_rtd_theme, so menu button functions again
    
    ---------
    
    Co-authored-by: dbrakenhoff <d.brakenhoff@artesia-water.nl>
    rubencalje and dbrakenhoff authored May 12, 2023
    Configuration menu
    Copy the full SHA
    0b328cd View commit details
    Browse the repository at this point in the history

Commits on May 13, 2023

  1. Update dev version

    rubencalje committed May 13, 2023
    Configuration menu
    Copy the full SHA
    1229e2f View commit details
    Browse the repository at this point in the history

Commits on May 15, 2023

  1. Configuration menu
    Copy the full SHA
    1967697 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1c7be69 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    eb6bfaa View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    21a5604 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    648a9d2 View commit details
    Browse the repository at this point in the history
  6. isort+black

    dbrakenhoff committed May 15, 2023
    Configuration menu
    Copy the full SHA
    3f1d037 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    bc843bc View commit details
    Browse the repository at this point in the history
  8. add improved plotting submodule

    - move plot.py
    - add flopy plotting module (plot/flopy.py)
    - move all flopy style plotting into flopy.py
    - move plotting util functions to plotutil.py
    - add init
    dbrakenhoff committed May 15, 2023
    Configuration menu
    Copy the full SHA
    f7653ed View commit details
    Browse the repository at this point in the history
  9. black

    dbrakenhoff committed May 15, 2023
    Configuration menu
    Copy the full SHA
    a7443ee View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    60ab0f6 View commit details
    Browse the repository at this point in the history
  11. rename cbf to cbc

    dbrakenhoff committed May 15, 2023
    Configuration menu
    Copy the full SHA
    c143a59 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #178 from ArtesiaWater/time-coord-outputs

    Improve getting time coordinates from groundwater model objects
    dbrakenhoff authored May 15, 2023
    Configuration menu
    Copy the full SHA
    0773ed1 View commit details
    Browse the repository at this point in the history
  13. fix init

    dbrakenhoff committed May 15, 2023
    Configuration menu
    Copy the full SHA
    70af375 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #179 from ArtesiaWater/improve-plotting

    Improve plotting
    dbrakenhoff authored May 15, 2023
    Configuration menu
    Copy the full SHA
    8cbda23 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2023

  1. Minor fixes to meteobase

    Folder may contain non-ASC files
    bdestombe committed May 23, 2023
    Configuration menu
    Copy the full SHA
    b7bf72d View commit details
    Browse the repository at this point in the history

Commits on May 24, 2023

  1. Write crs to meteodata

    bdestombe committed May 24, 2023
    Configuration menu
    Copy the full SHA
    646a548 View commit details
    Browse the repository at this point in the history
  2. Set nodata values to nan

    bdestombe committed May 24, 2023
    Configuration menu
    Copy the full SHA
    de43745 View commit details
    Browse the repository at this point in the history
  3. Add units to meteobase data

    For plotting purposes
    bdestombe committed May 24, 2023
    Configuration menu
    Copy the full SHA
    187e19a View commit details
    Browse the repository at this point in the history
  4. Minor bug prevents using meteobase <py3.9

    This "|" operator is not supported in Python 3.8.
    bdestombe committed May 24, 2023
    Configuration menu
    Copy the full SHA
    1c736ad View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a85e412 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2023

  1. Configuration menu
    Copy the full SHA
    d55865c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    18d7331 View commit details
    Browse the repository at this point in the history
  3. add functions to obtain time index for xarray

    - from model
    - from model.modeltime
    - from array of elapsed time
    dbrakenhoff committed May 25, 2023
    Configuration menu
    Copy the full SHA
    cf1aa30 View commit details
    Browse the repository at this point in the history
  4. improve gwf output

    - build time index from output times
    - add support for non constant delr/delc
    - improve support for angrot
    dbrakenhoff committed May 25, 2023
    Configuration menu
    Copy the full SHA
    1860e7e View commit details
    Browse the repository at this point in the history
  5. improve well tools

    - ensure no wells added in inactive cells
    - improve handling of aux variable
    dbrakenhoff committed May 25, 2023
    Configuration menu
    Copy the full SHA
    b5f3728 View commit details
    Browse the repository at this point in the history
  6. improve flopy plotting

    dbrakenhoff committed May 25, 2023
    Configuration menu
    Copy the full SHA
    7d3d76d View commit details
    Browse the repository at this point in the history
  7. improve dataset plotting

    - add support for rotation argument
    - add extent kwarg
    - add date_fmt for plot title
    - add alpha
    dbrakenhoff committed May 25, 2023
    Configuration menu
    Copy the full SHA
    ba11748 View commit details
    Browse the repository at this point in the history
  8. black + isort

    dbrakenhoff committed May 25, 2023
    Configuration menu
    Copy the full SHA
    8b6f67e View commit details
    Browse the repository at this point in the history
  9. make meteobase changes a bit more robust

    only use metadata if available
    check if CRS is actually RD new
    only replace nans if specified
    martinvonk committed May 25, 2023
    Configuration menu
    Copy the full SHA
    a1e79e2 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d4691ec View commit details
    Browse the repository at this point in the history
  11. Merge pull request #182 from ArtesiaWater/meteobase

    Small fixes to Meteobase
    martinvonk authored May 25, 2023
    Configuration menu
    Copy the full SHA
    ea654a7 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2023

  1. Reading data from KNMI Data Platform (#166)

    * Add first methods to get data from knmi data platform
    
    * Improve knmi_data_platform
    
    * from this day onward, I pledge to use type hints when making new functions
    
    * minor change to make os.path.isdir work
    
    * Read multiple files at once and add tests
    
    * create method to get api_key
    
    * Update knmi_data_platform.py
    
    add two type hints and move some arguments
    
    * add h5netcdf as dependency
    
    needed for reading knmi_data_platform files
    
    * add functions to read hdf5 files
    
    - also reformats the read_dataset_from_zip
    - add a function to read_nc_knmi
    
    * update read_h5 and read_nc functions
    
    * add read_grib_knmi function
    
    * Update knmi_data_platform.py
    
    fix some handling with ZipFile
    
    * update reading h5 file
    
    only open h5file when reading contents, also fix bug with getting h5Dataset
    
    * isort
    
    * Update knmi_data_platform.py
    
    add check_hour function that handles hour=24
    
    * don't provide engine when reading netcdf
    
    * Update knmi_data_platform.py
    
    remove reading from download function
    
    * Update knmi_data_platform.py
    
    some renaming
    
    * Delete HA40_N55_202304130000_00600_GB
    
    * Update knmi_data_platform.py
    
    remove _knmi from function names
    read dataset now also supports a list of fnames
    
    * Update test_018_knmi_data_platform.py
    
    * Create KNMI_Data_Platform_GRIB.tar
    
    * Create KNMI_Data_Platform_H5.zip
    
    * move hour check to read_dataset
    
    * Update knmi_data_platform.py
    
    fix download_files function
    
    * full install in ci
    
    * resolve merge conflicts setup.py?
    
    * add dependencies for knmi_data_platform
    
    * seperate download and file reading
    
    file reading took too long
    
    * upload correct dataset
    
    * fix codacy stuff and add simple docstring
    
    - add timeout to request.get
    - better exceptions
    - add docstring
    - {} instead of dict()?
    - nog wat ander gejank
    
    * fix meta update bug
    
    ---------
    
    Co-authored-by: Ruben Caljé <r.calje@artesia-water.nl>
    martinvonk and rubencalje authored May 26, 2023
    Configuration menu
    Copy the full SHA
    c91f705 View commit details
    Browse the repository at this point in the history
  2. Delete pytest.ini

    rubencalje committed May 26, 2023
    Configuration menu
    Copy the full SHA
    275641f View commit details
    Browse the repository at this point in the history
  3. make h5netcdf optional

    depedencies for knmi_data_platform backend using hdf5 files are now optional
    martinvonk committed May 26, 2023
    Configuration menu
    Copy the full SHA
    ca3e471 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9d179cb View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2023

  1. remove deprecated functions

    - get_heads_dataarray
    - get_heads_array
    dbrakenhoff committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    4e1b474 View commit details
    Browse the repository at this point in the history
  2. refactor gwf/gwt output

    - create mfoutput.py with generic _get_output_da function
    - apply new function in
      - get_heads_da
      - get_conc_da
      - get_budget_da
    dbrakenhoff committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    c6cdecc View commit details
    Browse the repository at this point in the history
  3. improve plotting

    - use map_array as base for animate_map
    dbrakenhoff committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    06e524e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4a2d4d1 View commit details
    Browse the repository at this point in the history
  5. improve DatasetCrossSection

    - support no colors by setting "none"
    dbrakenhoff committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    fbc611b View commit details
    Browse the repository at this point in the history
  6. move dcs to plot

    OnnoEbbens committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    0602780 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0eec828 View commit details
    Browse the repository at this point in the history
  8. black, isort, codacy

    dbrakenhoff committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    e6d723f View commit details
    Browse the repository at this point in the history
  9. fix test

    dbrakenhoff committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    8e30f3c View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2023

  1. fix imports

    OnnoEbbens authored Jun 3, 2023
    Configuration menu
    Copy the full SHA
    1b5c4fb View commit details
    Browse the repository at this point in the history
  2. Fix 2 Codacy errors

    OnnoEbbens authored Jun 3, 2023
    Configuration menu
    Copy the full SHA
    d275258 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2023

  1. Merge pull request #183 from ArtesiaWater/nhzz

    Several improvements from NH zoet/zout project
    OnnoEbbens authored Jun 5, 2023
    Configuration menu
    Copy the full SHA
    6be8251 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    070a03c View commit details
    Browse the repository at this point in the history
  3. Fix some plot imports

    rubencalje committed Jun 5, 2023
    Configuration menu
    Copy the full SHA
    06ff3d8 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2023

  1. Flip MeteoBase data (#185)

    * Flip meteobase data and bug in loading data
    
    * Default to replacing nodata values with nan
    
    * Meteobase: Remove nodata value from attributes when converting nodata to nan
    
    * move flipping when interpreting y instead of reading ascii
    
    * formatting
    
    ---------
    
    Co-authored-by:
    Martin Vonk <vonk.mart@gmail.com>
    Bas des Tombe
    bdestombe authored Jun 6, 2023
    Configuration menu
    Copy the full SHA
    e218e01 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2023

  1. Deprecate nlmod facet plot method (#189)

    * use xarray facet plot in nb
    
    * use xarray facet plot in nb
    dbrakenhoff authored Jun 7, 2023
    Configuration menu
    Copy the full SHA
    7b63db0 View commit details
    Browse the repository at this point in the history
  2. fix for #186 (#187)

    * fix for #186
    
    * Update 00_model_from_scratch.ipynb
    
    ---------
    
    Co-authored-by: Ruben Caljé <r.calje@artesia-water.nl>
    OnnoEbbens and rubencalje authored Jun 7, 2023
    Configuration menu
    Copy the full SHA
    b5e58e5 View commit details
    Browse the repository at this point in the history
  3. Update modules.rst

    rubencalje committed Jun 7, 2023
    Configuration menu
    Copy the full SHA
    80019b0 View commit details
    Browse the repository at this point in the history
  4. Handling data when building flopy packages from model dataset (#188)

    * improve data variable handling:
    - use _get_value_from_ds_attr and _get_value_from_data_var
    - deprecation warning for ghb/drn `da_name=` kwarg
    - rename 'chd' arg to 'mask' (with deprecationwarning)
    
    * move _get_value_from_ds_* funcs to util
    
    * move _get_value_from_ds_* funcs to util
    
    * rename "_peil" to "_stage" data var for rws data
    
    * line length
    
    * shorten func names
    - since we use ds as a common abbreviation for dataset
    
    * add tests for _get_value_from_ds_*
    
    * update notebooks
    
    * update tests
    
    * isort
    
    * fix import
    
    * codacy
    
    * Remove da_name from nlmod.gwf.ghb in transport-notebook
    
    ---------
    
    Co-authored-by: Ruben Caljé <r.calje@artesia-water.nl>
    dbrakenhoff and rubencalje authored Jun 7, 2023
    Configuration menu
    Copy the full SHA
    813df78 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c89c505 View commit details
    Browse the repository at this point in the history
  6. add test for lake (#184)

    * add test for lake
    
    * add evaporation to test
    
    * update docstring
    
    * add extra test and some fixes to lake from_gdf
    
    * Add a TODO to check for a length unit
    
    ---------
    
    Co-authored-by: Ruben Caljé <r.calje@artesia-water.nl>
    OnnoEbbens and rubencalje authored Jun 7, 2023
    Configuration menu
    Copy the full SHA
    68db768 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d8a8502 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3610637 View commit details
    Browse the repository at this point in the history