Projection of data into map file
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Jung BC
el 23 de Nov. de 2016
Comentada: Jung BC
el 24 de Nov. de 2016
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 comentarios
Respuesta aceptada
KSSV
el 23 de Nov. de 2016
data = imread('your image') ;
image([min(x) max(x)], [min(y) max(y)],data);
hold on
%%now plot your data
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Mapping Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!