Skip to content

Commit

Permalink
fix config file path
Browse files Browse the repository at this point in the history
  • Loading branch information
AugustinMortier committed Oct 18, 2024
1 parent b2db52c commit ea2183a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions aer_ifs/io/ifs.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ def read_rh(path: Path, datetime: datetime) -> xr.Dataset:
return ds

def get_aer_properties() -> xr.Dataset:
f = open(Path(Path(__file__).parent,'config','aerosol_ifs_49R1_20230725.nc'))
ds = xr.open_dataset(f)
path = Path(Path(__file__).parent,'..','config','aerosol_ifs_49R1_20230725.nc')
ds = xr.open_dataset(path)
return ds
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aer-ifs"
version = "0.5.1"
version = "0.5.2"
description = "Lidar Ratio computation from ECMWF IFS model data"
authors = ["augustinm <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit ea2183a

Please sign in to comment.