In what format can a drawn polyline (in a custom-built software) be saved so as to be able to be converted to shapefiles or usable in ArcGIS?
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.
|
|
For Vector format there are many formats supported. This 9.3 help page is a little dated. |
|||
|
|
|
Personally I would try incorporate a library/API to write the data out of my software. FME Objects for a commercial solution, OGR for an open source one. Either one would be able to write directly to Shape. If you really want to write a data format "manually" then go for a simple ASCII one like an x/y CSV format, WKT, some flavour of GML, or maybe even GeoJSON (Esri JSON?) - they'd be relatively simple and have tools available to convert them. |
|||
|
|