Summary
Instructions provided describe the various methods for creating a shapefile using the MapObjects—Java API and the important details of each method.
Procedure
Shapefiles can be created by three different levels of interaction. These are as follows:
- The highest level of interaction provides convenience methods that accept Layers and FeatureClasses. These methods create a shapefile that contains ALL of the features of the layer or feature class. There are two static methods at this level:
Code:
ShapefileWriter.writeFeatureClass(featureClass,path,name);
ShapefileWriter.writeFeatureLayer(layer,path,name);
Note:
It is also possible to use these methods with the MemoryFeatureClass and MemoryLayerSource objects, respectively. This allows a shapefile to be created from features held in memory.
- The medium level of interaction provides a series of methods to create a shapefile one feature at a time. This gives some flexibility when determining which features to output to the shapefile. The general sequence of method calls is as follows:
Code:
ShapefileWriter sw = new ShapefileWriter(path,name,shapeType);
sw.setFields(fields,correctName);
sw.addFeature(feature); // Repeat for each feature.
sw.close();
Keep in mind that the shapeType argument is NOT the same as the feature class type. For instance, a feature class type may be MapDataset.POLYGON, but the shape type could be ShapeTypes.POLYGON, ShapeTypes.POLYGONM, or ShapeTypes.POLYGONZ. A static function has been provided that returns the shape type for a given feature class:
Code:
ShapefileWriter.guessShapefileType(featureClass)
This middle level of access gives the greatest amount of flexibility. For instance, the features written out to the file may be the result of a search or selection made on a feature class or layer. In addition, a layer's current selection set of features may be written out as well. The only precaution is to make sure that all of the features added to the shapefile are of the same type. For example, it is not possible to add point features to a polyline shapefile.
Note:
Refer to Sample 6.2 - 'Create a Shapefile' in the Tutorial sample application for an example using this level of interaction.
- The lowest level of access allows the shapefile to be created directly using the corresponding shapes. This level is best used by those who are converting geometry from one primitive source to another. However, a distinct advantage of the other two levels over this one is that the conversion from FeatureGeometry to ShpGeometry is automatically handled. At this level, FeatureGeometry objects will have to explicitly be converted to ShpGeometry.
Code:
// Convert polygon feature to polygon shape.
polyFeature = (Polygon)featureGeometry;
polyShape = new PolygonShp();
rings = polyFeature.getRings();
polyShape.setNumParts(rings.length);
for (i=0; i<rings.length; i++) {
pc = rings[i].getPoints();
polyShape.setNumPoints(i,pc.size());
polyShape.setX(i,pc.getX());
polyShape.setY(i,pc.getY());
}