How to convert EPSG:3413 WGS 84 / NSIDC Sea Ice Polar Stereographic coordinate system to EPSG:4326 WGS 84 coordinate system?

조회 수: 34 (최근 30일)
Hello,
I got daily sea ice concentration data from https://nsidc.org/data/G02135/versions/3(please see attachment).I got the XY data using the following code. However, I want to convert them into lat (range 90~-90) and lon (range 180~-180).
The projection of N_20180101_concentration_v3.0.tif is Table 3 in this link:https://nsidc.org/data/polar-stereo/ps_grids.html. I can use epsg.io to achieve, but it can only be converted one by one, which is very troublesome. How to use matlab code to achieve the conversion?
Looking forward to your reply, thank you very much.!
Bei
filename = 'N_20180101_concentration_v3.0.tif' ;
[A,R] = readgeoraster(filename) ; % If not try geotiffread
[m,n] = size(A) ;
x = linspace(R.XWorldLimits(1),R.XIntrinsicLimits(2),n) ;
y = linspace(R.YWorldLimits(1),R.YIntrinsicLimits(2),m) ;
[X,Y] = meshgrid(x,y) ;

답변 (1개)

Zhaoyi Zhang
Zhaoyi Zhang 2021년 12월 7일

카테고리

Help CenterFile Exchange에서 Map Display에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by