Terrain Elevation

버전 1.2 (406 KB) 작성자: Samuel Pfrommer
Downloads US terrain elevation from the USGS in 1/3rd arc-second resolution.
다운로드 수: 882
업데이트 날짜: 2024/6/7
An easy-to-use MATLAB library for working with terrain elevation from the USGS in 1/3rd arc-second resolution. Supports automatic download and synthesization of multiple 1x1 degree cells, elevation data sampling, easy conversion from latitude/longitude to cartesian coordinates, and terrain visualization.
This library works in all of the mainland United States, Hawaii, and most of Alaska. It depends on the MATLAB Mapping Toolbox.
Example code:
% Download the USGS 1/3 arc-second data covering northwestern Wyoming, from
% 42.5 to 45 latitude and from -111.05 to -108.6 longitude
region = fetchregion([42.5, 45], [-111.05, -108.6], 'display', true);
% Read the elevation data for Yellowstone National Park (the indicated
% latitude and longitude range), sampling at 1/5th of the maximum
% resolution (i.e., 5 arc-seconds).
yellowstoneElevData = region.readelevation([44.255813, 44.649888], [-110.861772, -110.183366], 'sampleFactor', 5, 'display', true);
% Graph the elevation data for Yellowstone, using latitude and longitude
% for the x and y coordinates
dispelev(yellowstoneElevData, 'mode', 'latlong');
% Read the elevation data for the Jackson Hole resort (the indicated
% latitude and longitude range), sampling all data points (1 arc-second resolution)
jacksonElevData = region.readelevation([43.450467, 43.546597], [-110.837225, -110.732854], 'SampleFactor', 1, 'display', true);
% Graph the elevation data for Jackson Hole, using meters for the x and y
% coordinates and specifying roughly 50 grid lines
dispelev(jacksonElevData, 'mode', 'cartesian', 'gridLines', 50);

인용 양식

Samuel Pfrommer (2026). Terrain Elevation (https://github.com/spfrommer/terrain-elevation/releases/tag/v1.2), GitHub. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2024a
R2020a 이상 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Data Analysis에 대해 자세히 알아보기

GitHub 디폴트 브랜치를 사용하는 버전은 다운로드할 수 없음

버전 게시됨 릴리스 정보
1.2

See release notes for this release on GitHub: https://github.com/spfrommer/terrain-elevation/releases/tag/v1.2

1.1.3

See release notes for this release on GitHub: https://github.com/spfrommer/terrain-elevation/releases/tag/v1.1.3

1.1.2

See release notes for this release on GitHub: https://github.com/spfrommer/terrain-elevation/releases/tag/v1.1.2

1.1.1

Try 3 at pulling from GitHub.

1.1

Correctly pull latest GitHub repo.

1.0.0.3

Modify from 1/3 arc-second to 1 arc-second to reflect updated USGS interface.

1.0.0.2

Update description readability

1.0.0.1

Improved error messages when missing mapping toolbox

1.0.0.0

이 GitHub 애드온의 문제를 보거나 보고하려면 GitHub 리포지토리로 가십시오.
이 GitHub 애드온의 문제를 보거나 보고하려면 GitHub 리포지토리로 가십시오.