🗂️ Shapefile Reader
The Shapefile (SHP) reader allows you to upload ESRI Shapefiles into Geoflip. Shapefiles are a widely used GIS format consisting of multiple component files. To work with Geoflip, these must be packaged into a single .zip archive.
📜 Format Details
- File type:
.ziparchive containing the required Shapefile components. - Required files inside the archive:
.shp— geometry.shx— shape index.dbf— attributes.prj— projection information (CRS)
- Upload type: Always send the
.ziparchive asinput_filein a multipart form. - CRS handling:
- Geoflip reads the CRS from the
.prjfile. - If
.prjis missing or invalid, reprojection may fail.
- Geoflip reads the CRS from the
⚙️ Example Config
{
"input": {
"format": "shp"
},
"transformations": [
{ "type": "union" }
],
"output": {
"format": "dxf",
"epsg": 3857
}
}