MATLAB: Hi I have a doubt in changing map projection

how to change map projection?

I have matrices of latitude and longitude data.The latitude and longitude data are projected according to ortho map projection. I want to convert these matrices into a linear ID array of latitude and longitude.
I am not sure how to do it.
Is there a way to do it in Matlab?
Thanks in advance

Best Answer

Do something like this solve your problem:
Lat1D = LAT2D(:);
Long1D = LONG2D(:);
If that gives you the values in a "wrong" order you can just transpose the 2-D matrices first.
HTH
Related Question