How can I find the exact value of the corresponding point in specific longitude and latitude?
1 次查看(过去 30 天)
显示 更早的评论
I have problem to extract exact value in projection coordinate, I actually want to extract the exact value of the point with a specific latitude and longitude (e.g., lat=45.2 and lon=28.7) from the attached data. I really appreciate anybody can help.
2 个评论
Andrei Bobrov
2019-10-18
编辑:Andrei Bobrov
2019-10-18
I really appreciate your prompt response
"xy.mat" are the projection 'x' and 'y' coordinate in meters.
回答(1 个)
Andrei Bobrov
2019-10-18
编辑:Andrei Bobrov
2019-10-18
load('data.mat');load('lat.mat');load('lon.mat');load('xy.mat');
F1 = scatteredInterpolant(LAT,LON,data)
F2 = scatteredInterpolant(LAT,LON,xx);
F3 = scatteredInterpolant(LAT,LON,yy);
lat=45.2;
lon=28.7;
out = [F1(lat,lon),F2(lat,lon),F3(lat,lon)];
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!