getDepth(latitude, longitude)

버전 1.1.0.0 (5.31 KB) 작성자: Josiah Renfree
Obtain seabed depth at any location using high-resolution GMRT database
다운로드 수: 234
업데이트 날짜: 2018/6/27

라이선스 보기

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'})

인용 양식

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

MATLAB 릴리스 호환 정보
개발 환경: R2018a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Oceanography and Hydrology에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
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