How to convert Northing & Eastings to Long Lat (in decimals)
24 ビュー (過去 30 日間)
古いコメントを表示
Hi all,
I have a long list of coordinates (in Northing & Eastings) that I need to convert them into Long Lat (in decimals).
Is there a way to do it using MATLAB instead manually?
Need it URGENTLY!
Thanks heaps
0 件のコメント
回答 (1 件)
Christiaan
2015 年 3 月 10 日
編集済み: Christiaan
2015 年 3 月 10 日
Dear Eevee,
clc;clear all;close all;
% example (DMS=degrees, minutes, seconds)
dms = [40 42 46.021;
74 0 21.388;];
format long g
angleInDegrees = dms2degrees(dms);
Latitude_N = angleInDegrees(1);
Longitude_E = angleInDegrees(2);
Good luck! Christiaan
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!