이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
SP_PROJ converts between geographic (latitude and longitude) and US state plane coordinates. SP_PROJ can perform both forward (from geographic to state plane) and inverse transformations (from state plane to geographic). All US state plane zones are included except for Alaska. Calculations assume the NAD83 datum and GRS1980 spheriod.
Mapping toolbox is required. SP_PROJ creates the map structure for the specified US state plane zone and passes it to either PROJFWD and PROJINV to perform the coordinate transformations.
EXAMPLE
%geographic data
lat = 37.45569;
lon = -122.17009;
% Calculate the x,y, coordinates in survey feet
% in the 'California 1' state plane zone.
[xsp,ysp] = sp_proj('california 1','forward',lon,lat,'sf')
% Re-calculate the geographic coordinates
% also output the map structure as optional 3rd output
[lon1,lat1,mstruct] = sp_proj('california 1','inverse',xsp,ysp,'sf')
인용 양식
Andrew Stevens (2026). SP_PROJ (https://kr.mathworks.com/matlabcentral/fileexchange/26413-sp_proj), MATLAB Central File Exchange. 검색 날짜: .
도움
도움 받은 파일: deg2utm
