How to convert EPSG:3413 WGS 84 / NSIDC Sea Ice Polar Stereographic coordinate system to EPSG:4326 WGS 84 coordinate system?
6 次查看(过去 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) ;
0 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Cartesian Coordinate System Conversion 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!