How to extract polygons coordinates from shape file?
14 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Reema Alhassan
il 10 Giu 2018
Commentato: Reema Alhassan
il 11 Giu 2018
hello, I have a shape file which contains 10 polygons I need to extract the coordinates for each polygon how can I do that ?
thanks,
0 Commenti
Risposta accettata
KSSV
il 11 Giu 2018
S = shaperead(shapefile) ; % Read shape file
N = length(S) ; % total number of polygons
% GEt coordinates of each polygon
for i = 1:N
[S(i).X ;S(i).Y] ;
end
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Elementary Polygons in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!