getDepth(latitude, longitude)

Obtain seabed depth at any location using high-resolution GMRT database
238 Downloads
Updated 27 Jun 2018

View License

DEPTH = GETDEPTH(LATITUDE, LONGITUDE) estimates the seabed depth DEPTH at specified coordinate(s). LATITUDE and LONGITUDE coordinates can either be numeric arrays specifying decimal degrees or cell arrays of strings specifying degrees, minutes, and seconds or GPS degrees. DEPTH is returned in meters, where negative values correspond to depths below sea level.
If LATITUDE and LONGITUDE are cell arrays of strings, the hemisphere designator (N/S/E/W) must prepend the location (e.g. 'N 37 23 30') and all values must be separated by spaces.
This function uses the Marine Geoscience Data System website to obtain seabed estimates from their Global Multi-Resolution Topography (GMRT) dataset. Thus, an Internet connection is required.
Examples:

getDepth(32.930667, -117.3175)
getDepth('N 32 55 50', 'W 117 19 3')
getDepth('N 32 55.84', 'W 117 19.05')
getDepth([33.52 35.14], [-119.88 -123.35])
getDepth({'N 33 31.2' 'N 35 8.4'}, {'W 119 52.8' 'W 123 21.0'})
getDepth({'N 33 31 12' 'N 35 8 24'}, {'W 119 52 48' 'W 123 21 0'})

Cite As

Josiah Renfree (2024). getDepth(latitude, longitude) (https://www.mathworks.com/matlabcentral/fileexchange/57174-getdepth-latitude-longitude), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2018a
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Oceanography and Hydrology in Help Center and MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.1.0.0

GMRT website changed, so had to update URL. Also changed urlread() to webread(), as recommended by Matlab

1.0.0.0

Updated the function description
Updated function description