Extract Lat/lon from Shapefiles
이전 댓글 표시
I have a grid projected in a Cartesian coordinate where each point represents a portion of a terrain. And I'd like to know the distance between each of these points to the closest road.
These roads are in a shapefile, and the function I'm using ipdm needs a XY input (as my grid point in Cartesian coordinates). So, my thinking is somehow extract the lat/lon of the roads, convert to a projected coordinate, ad then use the ipdm .
Any thoughts?
답변 (1개)
Chad Greene
2015년 6월 18일
0 개 추천
You should be able to use shaperead with the 'UseGeoCoords',false option to get roads in cartesian coordinates. Just make sure the projection associated with the shapefile is the same projection you're using for your data.
댓글 수: 3
Igor Noberto
2015년 6월 23일
Chad Greene
2015년 6월 24일
I assume the road coordinates are in a structure array, so I wouldn't expect scatter(roads.X,roads.Y) to plot all the roads. What happens if you do
[X,Y] = polyjoin(roads.X,roads.Y);
plot(X,Y)
Igor Noberto
2015년 6월 29일
편집: Igor Noberto
2015년 6월 29일
카테고리
도움말 센터 및 File Exchange에서 Map Display에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

