-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f38097f
commit c127d1a
Showing
3 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,31 @@ | ||
# popgis | ||
Blazing fast ingestion of ShapeFile & GeoJSON into a PostGIS database | ||
A blazing fast way to insert Shapefiles & GeoJSON into a PostGIS database. | ||
|
||
## Install | ||
*Upcoming...* | ||
|
||
## Usage | ||
Required flags are `input`, `uri` & `table`. | ||
|
||
1. Use the **input** flag to choose the *shapefile* or *geojson* file to insert into a PostGIS database. | ||
2. Use the **uri** flag to tell `popgis` the PostGIS database where you'd like to insert the input data. | ||
3. The **table** flag is for choosing the name of the resulting table. | ||
|
||
## Examples | ||
*Upcoming...* | ||
|
||
## License | ||
See [`LICENSE`](./LICENSE) | ||
|
||
## Benchmarks | ||
*Upcoming...* | ||
|
||
## Limitations | ||
Currently, only ShapeFile files are implemented. | ||
|
||
## Future implementation | ||
The list below contains the upcoming implementations. | ||
|
||
To do: | ||
|
||
* Allow GeoJSON as input. |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
pub mod common; | ||
mod geo; | ||
pub mod shapefile; | ||
pub mod geojson; |