Projection of data into map file

조회 수: 1 (최근 30일)
Jung BC
Jung BC 2016년 11월 23일
댓글: Jung BC 2016년 11월 24일
Hello,
I am planning to extract hotspots information of a city. I have following input paramaters:
Latitude = (1x316)double in xyz-coordinates
Longitude = (1x316) double in xyz-Coordinates
Besides this, i have a map of that city in .png file format with known Lat,Long coordinates. Now, i need to project my input data of (Latitude, Longitude) along with this map of city.
Any ideas, Suggestions? Thanks!
  댓글 수: 2
KSSV
KSSV 2016년 11월 23일
You want to plot your locations on the .png file of the city?
Jung BC
Jung BC 2016년 11월 23일
편집: Jung BC 2016년 11월 23일
Hi KSSV, Yes, i want to plot my location points(Lat, Lon) into given map
which has it's known (Lat, Lon)co-ordinates of edges i.e. map has
lower left (Lat, Lon ) and upper right (Lat, Lon) points.

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

채택된 답변

KSSV
KSSV 2016년 11월 23일
data = imread('your image') ;
image([min(x) max(x)], [min(y) max(y)],data);
hold on
%%now plot your data
  댓글 수: 3
KSSV
KSSV 2016년 11월 23일
It has to work ....check your code and data once...
Jung BC
Jung BC 2016년 11월 24일
Thanks a lot! I optimised my input data it worked well!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Mapping Toolbox에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by