Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 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) {}
share|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
This answers example is excellent, saved me having to deep dive into the API docs – philostler May 30 '12 at 16:09

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

share|improve this answer
Note that although BBN's OpenMap is open source, it uses a weird BBN-specific license. It's pretty permissive, but the fact that it's not a standard license may cause issues when trying to combine it with other software (or when attempting to get it approved by your legal beagles). – Tom Morris Jul 27 '12 at 17:38

There is GeoTools, or more exactly this class ShapefileDataStore.

share|improve this answer

I was trying to read shape file so I came across this post. I tried to follow Clint answer and followed "http://docs.geotools.org/latest/userguide/tutorial/quickstart/netbeans.html" for set up a sample project. I have used exact same POM file for the sample inside. The

<project
    xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.geotools</groupId>
    <artifactId>tutorial</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>tutorial</name>
    <url>http://maven.apache.org</url>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <geotools.version>10-SNAPSHOT</geotools.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.geotools</groupId>
            <artifactId>gt-shapefile</artifactId>
            <version>${geotools.version}</version>
        </dependency>
        <dependency>
            <groupId>org.geotools</groupId>
            <artifactId>gt-swing</artifactId>
            <version>${geotools.version}</version>
        </dependency>
    </dependencies>
    <repositories>
        <repository>
            <id>maven2-repository.dev.java.net</id>
            <name>Java.net repository</name>
            <url>http://download.java.net/maven/2</url>
        </repository>
        <repository>
            <id>osgeo</id>
            <name>Open Source Geospatial Foundation Repository</name>
            <url>http://download.osgeo.org/webdav/geotools/</url>
        </repository>
    </repositories>
</project>

But for some reason it comes back with error on build says: Failed to execute goal on project tutorial2: Could not resolve dependencies for project org.geotools:tutorial2:jar:0.0.1-SNAPSHOT: The following artifacts could not be resolved: org.geotools:gt-shapefile:jar:10-SNAPSHOT, org.geotools:gt-swing:jar:10-SNAPSHOT: Could not find artifact org.geotools:gt-shapefile:jar:10-SNAPSHOT in maven2-repository.dev.java.net (http://download.java.net/maven/2) -> [Help 1]

Any comment would be appreciated.

share|improve this answer
Got the answer at: stackoverflow.com/questions/16225573/… – user1372020 May 3 at 10:30

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.