How to view a shape file in matlab
31 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
alessio grechi
2018 年 10 月 18 日
編集済み: alessio grechi
2018 年 10 月 18 日
ciao. Sei riuscito a far visualizzare la mappa in MatLab?
採用された回答
José-Luis
2012 年 12 月 24 日
doc mapshow
It can be as simple as:
S = shaperead(filename);
mapshow(S);
As long as you have latitude and longitude, you can plot pretty much anything
doc plotm
6 件のコメント
José-Luis
2012 年 12 月 24 日
If you are plotting a point, are you sure your Marker is large enough so you can see it, try a large size first
plot(x,y,'LineStyle','none','Marker','o','MarkerSize',20);
The map you are linking to does not appear to be in lat-long, it looks like UTM.
I don't know where you could find a suitable map, but google can help you. You could also look at worldmap() from Matlab.
その他の回答 (2 件)
Clelia Massarino
2018 年 9 月 20 日
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 件のコメント
Alessandro Mura
2021 年 12 月 21 日
@Clelia Massarino sei riuscito a cambiare i diversi colori della mappa della Germania? se si ti posso chiedere per favore lo script?
ti ringrazio
参考
カテゴリ
Help Center および File Exchange で Mapping Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
