How to view a shape file in matlab
Mostrar comentarios más antiguos
Hello,
I have a .shp file of the country Ireland.
I read the file into matlab using the code:
S = shaperead('Ireland.shp')
My question is how can I view the map?
I would appreciate it if anybody had the time to show me.
Also, is it possible to overlay GPS data on a file of this type?
Thank you
1 comentario
alessio grechi
el 18 de Oct. de 2018
Editada: alessio grechi
el 18 de Oct. de 2018
ciao. Sei riuscito a far visualizzare la mappa in MatLab?
Respuesta aceptada
Más respuestas (2)
John
el 25 de Dic. de 2012
5 comentarios
ax = axesm('MapProjection','mercator','MapLatLimit',[50 55.5],...
'MapLonLimit',[-10.5 -5],'Frame','on')
land = shaperead('landareas', 'UseGeoCoords', true);
geoshow(ax, land, 'FaceColor', [0.5 0.7 0.5])
Please read the documentation about axesm() if you want to tweak the display.
John
el 25 de Dic. de 2012
John
el 25 de Dic. de 2012
José-Luis
el 25 de Dic. de 2012
doc plotm
Harold Steven Buitrago Segura
el 29 de Abr. de 2022
Maybe you could use the geolimit function
Clelia Massarino
el 20 de Sept. de 2018
0 votos
Hello,
I am having problem displaying the Germany map. My final goal is to have one with the elevation or at least different colors to discern different altitudes. I used the same code of you but it starts running endlessly. Any suggestion?
1 comentario
Alessandro Mura
el 21 de Dic. de 2021
@Clelia Massarino sei riuscito a cambiare i diversi colori della mappa della Germania? se si ti posso chiedere per favore lo script?
ti ringrazio
Categorías
Más información sobre Mapping Toolbox en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
