Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

I want to convert polygons into points. I know how it's done in ArcGis and I think this may sound trivial but it's a serious issue :/.

I'll appreciate any hints :)

share|improve this question
1  
Do you mean convert the polygon borders into points or just reduce it to a point (get centroids)? – R.K. Apr 30 '12 at 14:35

3 Answers

up vote 8 down vote accepted

you can do this in qgis as :

Vector - Geometry Tools - Polygon Centroids

i hope it helps you...

share|improve this answer
thanks! It did! – Lukas Apr 30 '12 at 15:04

and polygon to border nodes

Vector - Geometry Tools - Nodes extraction
share|improve this answer

You could start here:

Feature To Point

import arcpy
from arcpy import env
env.workspace = "C:/data"
arcpy.FeatureToPoint_management("parcels.shp", "c:/data/output/parcels_center.shp", 
                            "CENTROID")

---OR---

Feature Vertices To Point

here:

import arcpy
from arcpy import env
env.workspace = "C:/data"
arcpy.FeatureVerticesToPoints_management("parcels.shp",
                                     "c:/output/output.gdb/parcels_corner", 
                                     "ALL")
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.