Skip to content

Commit

Permalink
changed structure type in nc file from devgrid to simple_rectangular …
Browse files Browse the repository at this point in the history
…in the 10x10 case
  • Loading branch information
MarionBWeinzierl committed Nov 10, 2023
1 parent e5ef96a commit 01efe81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run/make_init_rect10x10.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import netCDF4
root = netCDF4.Dataset("init_rect10x10.nc", "w", format="NETCDF4")
metagrp = root.createGroup("structure")
metagrp.type = "devgrid"
metagrp.type = "simple_rectangular"
datagrp = root.createGroup("data")
xDim = datagrp.createDimension("x", 10)
yDim = datagrp.createDimension("y", 10)
Expand Down

0 comments on commit 01efe81

Please sign in to comment.