Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dfulu committed Oct 25, 2023
1 parent 0643efa commit a3d4efb
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions pvnet_app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,13 +286,20 @@ def app(
# Download nwp data
logger.info("Downloading nwp data")
fs = fsspec.open(os.environ["NWP_ZARR_PATH"]).fs
fs.get(os.environ["NWP_ZARR_PATH"], "nwp.zarr", recursive=True)

################
# Hot fix as datapipes can't handle both lat-lon and osgb on same coord
fs.get(os.environ["NWP_ZARR_PATH"], "raw_nwp.zarr", recursive=True)
ds_nwp = xr.open_zarr("raw_nwp.zarr")
ds_nwp.drop_vars(("latitude", "longitude")).to_zarr("nwp.zarr")
ds_nwp = xr.open_zarr("nwp.zarr").compute()
if "latitude" in ds_nwp:
ds_nwp = ds_nwp.drop_vars(("latitude", "longitude"))
ds_nwp["variable"] = ds_nwp.variable.astype(str)
os.system("rm -r nwp.zarr")
ds_nwp.to_zarr("nwp.zarr")

del ds_nwp

################

# ---------------------------------------------------------------------------
# 2. Set up data loader
logger.info("Creating DataLoader")
Expand Down

0 comments on commit a3d4efb

Please sign in to comment.