I'm interested in writing a visualization program for the road data in the 2009 Tiger/Line Shapefiles. I'd like to draw the line data to display all the roads for my county.

The ESRI Shapefile or simply a shapefile is a popular geospatial vector data format for geographic information systems software. It is developed and regulated by ESRI as a (mostly) open specification for data interoperability among ESRI and other software products.1 A "shapefile" commonly refers to a collection of files with ".shp", ".shx", ".dbf", and other extensions on a common prefix name (e.g., "lakes.*"). The actual shapefile relates specifically to files with the ".shp" extension, however this file alone is incomplete for distribution, as the other supporting files are required.

Does anyone know of existing libraries for parsing and reading in the line data for Shapefiles?

link|improve this question

63% accept rate
feedback

3 Answers

GeoTools will do it. There are a ton of jars and you don't need most of them. However, reading the shapefile is just a few lines.

File file = new File("mayshapefile.shp");

try {
  Map connect = new HashMap();
  connect.put("url", file.toURL());

  DataStore dataStore = DataStoreFinder.getDataStore(connect);
  String[] typeNames = dataStore.getTypeNames();
  String typeName = typeNames[0];

  System.out.println("Reading content " + typeName);

  FeatureSource featureSource = dataStore.getFeatureSource(typeName);
  FeatureCollection collection = featureSource.getFeatures();
  FeatureIterator iterator = collection.features();


  try {
    while (iterator.hasNext()) {
      Feature feature = iterator.next();
      Geometry sourceGeometry = feature.getDefaultGeometry();
    }
  } finally {
    iterator.close();
  }

} catch (Throwable e) {}
link|improve this answer
if you use Maven to compile the program it handles all the jars for you. – iant Feb 23 '11 at 18:31
Geotools has great tutorial on how to start development. It's a Swing application for visualizing a map docs.geotools.org/latest/userguide/tutorial/quickstart/… – Rafal Rusin Jun 12 '11 at 12:58
feedback

Openmap has a Java API that provides read and write access to ESRI files.

link|improve this answer
feedback

There is GeoTools, or more exactly this class ShapefileDataStore.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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