├── .gitignore ├── README.md ├── examples ├── gnisNamesOnWater │ ├── README.md │ ├── conflate.py │ ├── fetchexternaldata.py │ ├── fetchosmdata.py │ ├── gnisschema.sql │ └── postgisloaddata.py ├── massMissingBuildings │ ├── README.md │ ├── conflate.py │ ├── fetchexternaldata.py │ ├── fetchosmdata.py │ ├── go.py │ ├── postgisloaddata.py │ └── stage.py ├── massMissingPonds │ ├── README.md │ ├── conflate.py │ ├── fetchexternaldata.py │ ├── fetchosmdata.py │ ├── go.py │ ├── ogrtranslation.py │ └── postgisloaddata.py ├── palisIdNamesOnWater │ ├── README.md │ ├── conflate.py │ ├── fetchexternaldata.py │ ├── fetchosmdata.py │ └── postgisloaddata.py └── removeAreaFromBuilding │ ├── README.md │ ├── conflate.py │ ├── fetchosmdata.py │ ├── go.py │ └── postgisloaddata.py ├── prep ├── findaerowwaywithnobuildings.py ├── findlandusereservoir.py ├── findoverlappingbuildings.py └── findschoolswithnobuildings.py └── upload ├── osm2osc.py ├── osmsplit.py └── osmupload.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /examples/gnisNamesOnWater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/gnisNamesOnWater/README.md -------------------------------------------------------------------------------- /examples/gnisNamesOnWater/conflate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/gnisNamesOnWater/conflate.py -------------------------------------------------------------------------------- /examples/gnisNamesOnWater/fetchexternaldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/gnisNamesOnWater/fetchexternaldata.py -------------------------------------------------------------------------------- /examples/gnisNamesOnWater/fetchosmdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/gnisNamesOnWater/fetchosmdata.py -------------------------------------------------------------------------------- /examples/gnisNamesOnWater/gnisschema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/gnisNamesOnWater/gnisschema.sql -------------------------------------------------------------------------------- /examples/gnisNamesOnWater/postgisloaddata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/gnisNamesOnWater/postgisloaddata.py -------------------------------------------------------------------------------- /examples/massMissingBuildings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingBuildings/README.md -------------------------------------------------------------------------------- /examples/massMissingBuildings/conflate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingBuildings/conflate.py -------------------------------------------------------------------------------- /examples/massMissingBuildings/fetchexternaldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingBuildings/fetchexternaldata.py -------------------------------------------------------------------------------- /examples/massMissingBuildings/fetchosmdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingBuildings/fetchosmdata.py -------------------------------------------------------------------------------- /examples/massMissingBuildings/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingBuildings/go.py -------------------------------------------------------------------------------- /examples/massMissingBuildings/postgisloaddata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingBuildings/postgisloaddata.py -------------------------------------------------------------------------------- /examples/massMissingBuildings/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingBuildings/stage.py -------------------------------------------------------------------------------- /examples/massMissingPonds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingPonds/README.md -------------------------------------------------------------------------------- /examples/massMissingPonds/conflate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingPonds/conflate.py -------------------------------------------------------------------------------- /examples/massMissingPonds/fetchexternaldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingPonds/fetchexternaldata.py -------------------------------------------------------------------------------- /examples/massMissingPonds/fetchosmdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingPonds/fetchosmdata.py -------------------------------------------------------------------------------- /examples/massMissingPonds/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingPonds/go.py -------------------------------------------------------------------------------- /examples/massMissingPonds/ogrtranslation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingPonds/ogrtranslation.py -------------------------------------------------------------------------------- /examples/massMissingPonds/postgisloaddata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/massMissingPonds/postgisloaddata.py -------------------------------------------------------------------------------- /examples/palisIdNamesOnWater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/palisIdNamesOnWater/README.md -------------------------------------------------------------------------------- /examples/palisIdNamesOnWater/conflate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/palisIdNamesOnWater/conflate.py -------------------------------------------------------------------------------- /examples/palisIdNamesOnWater/fetchexternaldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/palisIdNamesOnWater/fetchexternaldata.py -------------------------------------------------------------------------------- /examples/palisIdNamesOnWater/fetchosmdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/palisIdNamesOnWater/fetchosmdata.py -------------------------------------------------------------------------------- /examples/palisIdNamesOnWater/postgisloaddata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/palisIdNamesOnWater/postgisloaddata.py -------------------------------------------------------------------------------- /examples/removeAreaFromBuilding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/removeAreaFromBuilding/README.md -------------------------------------------------------------------------------- /examples/removeAreaFromBuilding/conflate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/removeAreaFromBuilding/conflate.py -------------------------------------------------------------------------------- /examples/removeAreaFromBuilding/fetchosmdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/removeAreaFromBuilding/fetchosmdata.py -------------------------------------------------------------------------------- /examples/removeAreaFromBuilding/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/removeAreaFromBuilding/go.py -------------------------------------------------------------------------------- /examples/removeAreaFromBuilding/postgisloaddata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/examples/removeAreaFromBuilding/postgisloaddata.py -------------------------------------------------------------------------------- /prep/findaerowwaywithnobuildings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/prep/findaerowwaywithnobuildings.py -------------------------------------------------------------------------------- /prep/findlandusereservoir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/prep/findlandusereservoir.py -------------------------------------------------------------------------------- /prep/findoverlappingbuildings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/prep/findoverlappingbuildings.py -------------------------------------------------------------------------------- /prep/findschoolswithnobuildings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/prep/findschoolswithnobuildings.py -------------------------------------------------------------------------------- /upload/osm2osc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/upload/osm2osc.py -------------------------------------------------------------------------------- /upload/osmsplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/upload/osmsplit.py -------------------------------------------------------------------------------- /upload/osmupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jremillard/osm-import-toolkit/HEAD/upload/osmupload.py --------------------------------------------------------------------------------