Dataverse should handle shapefiles as described here:
However, there's a bug where ".cpg" files aren't being re-packaged.
Fix
File: ShapefileHandler.java
- Current line with Bug. Should be
cpg, not .cpg
public final static List<String> SHAPEFILE_ALL_EXTENSIONS = Arrays.asList("shp", "shx", "dbf", "prj", "sbn", "sbx", "fbn", "fbx", "ain", "aih", "ixs", "mxs", "atx", ".cpg", SHP_XML_EXTENSION);
public final static List<String> SHAPEFILE_ALL_EXTENSIONS = Arrays.asList("shp", "shx", "dbf", "prj", "sbn", "sbx", "fbn", "fbx", "ain", "aih", "ixs", "mxs", "atx", "cpg", SHP_XML_EXTENSION);
Dataverse should handle shapefiles as described here:
However, there's a bug where ".cpg" files aren't being re-packaged.
Fix
File: ShapefileHandler.java
cpg, not.cpg