Skip to content

Commit

Permalink
made arguments explicit in notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
veenstrajelmer committed Jan 20, 2025
1 parent 62d7b73 commit 02ce909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/notebooks/modelbuilder_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
],
"source": [
"# generate spherical regular grid\n",
"mk_object = dfmt.make_basegrid(lon_min, lon_max, lat_min, lat_max, dx=dxy, dy=dxy, crs=crs)\n",
"mk_object = dfmt.make_basegrid(lon_min=lon_min, lon_max=lon_max, lat_min=lat_min, lat_max=lat_max, dx=dxy, dy=dxy, crs=crs)\n",
"\n",
"# retrieve actual lat/lon bounds from grid, the lon_max and lat_max are likely larger than requested\n",
"lon_min, lat_min, lon_max, lat_max = dfmt.meshkernel_get_bbox(mk_object)\n",
Expand Down

0 comments on commit 02ce909

Please sign in to comment.