필터 지우기
필터 지우기

Convert a list x y coordinates to lat long

조회 수: 27 (최근 30일)
Mathew Thomas
Mathew Thomas 2017년 4월 25일
답변: krishna teja 2021년 8월 12일
I have a list of x y values
a = [3600,2900; 4000, 2100; 4200, 3200, 3600, 2800; 3600, 2900];
I know the lat lon value for a(2) = [72.1890,-32.7989]... i.e., the lat-lon value for [4000,2100]
Can I get the lat lon list of 'a' if I know just this?
result = [?,?; 72.1890,-32.7989; ?,?; ?,?; ?,?];
  댓글 수: 1
John Chilleri
John Chilleri 2017년 4월 25일
Without making assumptions I don't think so. However, if you were to go ahead and make assumptions, such as:
x = 0 means lat = 0
y = 0 means lon = 0
And if you were to further assume a linear relation, you get:
lat = x/55.4101
lon = -y/64.0265
Maybe this will be helpful? Good luck!

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2017년 4월 25일
You might be able to use https://www.mathworks.com/help/map/ref/georefcells.html and related routines. (I am a bit hazy on where you would go from there.)

추가 답변 (1개)

krishna teja
krishna teja 2021년 8월 12일
local2latlon should help ...

카테고리

Help CenterFile Exchange에서 Geographic Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by