postFileProcess
Import a staged file into a target schema/table with options for dry-run mode, append, coordinate system handling, and more.
Instructions
Import a staged file into a target schema/table. Supports dry-run, append, SRS, and more.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Uploaded file name to import. | |
| schema | Yes | Destination schema name. | |
| import | No | If false, run a dry-run (no changes). | |
| t_srs | No | Fallback target SRS. Used if no authority name/code is available. | EPSG:4326 |
| s_srs | No | Fallback source SRS. Used if the file has no projection information. | EPSG:4326 |
| append | No | Append to an existing table instead of creating a new one. | |
| p_multi | No | Promote single-part geometries to multi-part. | |
| truncate | No | Truncate table before appending. Only applies when append is true. | |
| timestamp | No | Name of timestamp field to create. Omit to skip creating a timestamp field. | |
| x_possible_names | No | Possible column names for X/longitude (CSV only). | lon*,Lon*,x,X |
| y_possible_names | No | Possible column names for Y/latitude (CSV only). | lat*,Lat*,y,Y |