Convert UTM to lat lon
Afficher commentaires plus anciens
I have a 290x480x90 array where the x and y are coordinates in UTM. I'd like to convert them to degrees minutes seconds and I'd normally use the function utm2deg from the file exchange, but this requires the lat and lon arrays to be of equal length. Is there another solution? Thanks
Réponses (1)
Rafael Palacios
le 26 Nov 2021
0 votes
I don't understand which column in your 3D array contains X coordinates and which one contains Y coordinates.
It sill be about saying something like:
X=[];
for i=1:90
X=[X; data(:,7,i)]; %7th column are X coordinates
end
RAFAEL
2 commentaires
Louise Wilson
le 27 Nov 2021
Modifié(e) : Louise Wilson
le 27 Nov 2021
Louise Wilson
le 27 Nov 2021
Catégories
En savoir plus sur Coordinate Reference Systems dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!