Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions python/mantaray/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ def single_ray(
Time step for the simulation
bathymetry : str
Path to a netCDF file containing the bathymetry file. It is expected
to have x and y dimensions as floats and depth (x, y) as a float,
to have x and y dimensions as floats and depth (y, x) as a float,
where depth is zero at surface and positive downwards.
current : str
Paths to a netCDF file containing the current field. It is expected
to have x and y dimensions as floats and u(x,y) and v(x,y) as floats.
to have x and y dimensions as floats and u(y,x) and v(y,x) as floats.

Return
------
Expand Down Expand Up @@ -96,11 +96,11 @@ def ray_tracing(
Time step for the simulation
bathymetry : str
Path to a netCDF file containing the bathymetry file. It is expected
x and y dimensions as floats and depth (x, y) as a float, where
x and y dimensions as floats and depth (y, x) as a float, where
depth is zero at surface and positive downwards.
current : str
Paths to a netCDF file containing the current field. It is expected
to have x and y dimensions as floats and u(x,y) and v(x,y) as floats.
to have x and y dimensions as floats and u(y,x) and v(y,x) as floats.

Returns
-------
Expand Down