Skip to content

Commit

Permalink
add nomissing for h
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Barth committed Oct 24, 2024
1 parent 0b2c4b5 commit 9abd539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/plots.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ using ROMS, PythonPlot, NCDatasets, GeoDatasets, Statistics
ds_grid = NCDataset("LS2v.nc");
lon = ds_grid["lon_rho"][:,:];
lat = ds_grid["lat_rho"][:,:];
h = ds_grid["h"][:,:];
h = nomissing(ds_grid["h"][:,:],NaN);
mask_rho = ds_grid["mask_rho"][:,:];
clf();
Expand Down

0 comments on commit 9abd539

Please sign in to comment.