├── .DS_Store ├── 2024-03-15-DuckDB-GeoParquet-Source-Cooperative └── duckdb.sql ├── 2024-03-22-Geopandas └── notebook.ipynb ├── 2024-03-27-MotherDuck-Spatial └── spatial.sql ├── 2024-04-12-Cloud-GIS-101 ├── Dockerfile └── docker-compose.yml ├── 2024-04-18-ELT ├── .DS_Store ├── dbt.sh ├── explore.sql ├── logs │ └── dbt.log ├── overture_bigquery │ ├── .DS_Store │ ├── .gitignore │ ├── README.md │ ├── dbt_project.yml │ └── models │ │ ├── .DS_Store │ │ └── example │ │ ├── overture_geom_20240416.sql │ │ ├── overture_new_20240416.sql │ │ ├── overture_tiles.sql │ │ └── schema.yml └── overture_maps │ ├── .DS_Store │ ├── .duckdb.ddb │ ├── .gitignore │ ├── .user.yml │ ├── README.md │ ├── dbt_project.yml │ ├── models │ └── example │ │ ├── height_names_tokyo.sql │ │ ├── new_buildings_germany.sql │ │ ├── schema.yml │ │ ├── sources.yml │ │ └── updated_last_14_days.sql │ └── profiles.yml ├── 2024-05-30-Elephants-and-Ducks ├── .DS_Store ├── README.md ├── duckdb-to-postgis │ ├── .DS_Store │ ├── bike_ways.osm.gz │ ├── custom-pedia-cities-nyc-Mar2018.geojson │ ├── docker-compose.yml │ ├── mini-postgis.sh │ └── spatial.sql └── postgis-to-duckdb │ ├── Dockerfile │ ├── postgis.sql │ └── requirements.txt └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/.DS_Store -------------------------------------------------------------------------------- /2024-03-15-DuckDB-GeoParquet-Source-Cooperative/duckdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-03-15-DuckDB-GeoParquet-Source-Cooperative/duckdb.sql -------------------------------------------------------------------------------- /2024-03-22-Geopandas/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-03-22-Geopandas/notebook.ipynb -------------------------------------------------------------------------------- /2024-03-27-MotherDuck-Spatial/spatial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-03-27-MotherDuck-Spatial/spatial.sql -------------------------------------------------------------------------------- /2024-04-12-Cloud-GIS-101/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-12-Cloud-GIS-101/Dockerfile -------------------------------------------------------------------------------- /2024-04-12-Cloud-GIS-101/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-12-Cloud-GIS-101/docker-compose.yml -------------------------------------------------------------------------------- /2024-04-18-ELT/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/.DS_Store -------------------------------------------------------------------------------- /2024-04-18-ELT/dbt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/dbt.sh -------------------------------------------------------------------------------- /2024-04-18-ELT/explore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/explore.sql -------------------------------------------------------------------------------- /2024-04-18-ELT/logs/dbt.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/logs/dbt.log -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_bigquery/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_bigquery/.DS_Store -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_bigquery/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | target/ 3 | dbt_packages/ 4 | logs/ 5 | -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_bigquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_bigquery/README.md -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_bigquery/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_bigquery/dbt_project.yml -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_bigquery/models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_bigquery/models/.DS_Store -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_bigquery/models/example/overture_geom_20240416.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_bigquery/models/example/overture_geom_20240416.sql -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_bigquery/models/example/overture_new_20240416.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_bigquery/models/example/overture_new_20240416.sql -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_bigquery/models/example/overture_tiles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_bigquery/models/example/overture_tiles.sql -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_bigquery/models/example/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_bigquery/models/example/schema.yml -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_maps/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_maps/.DS_Store -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_maps/.duckdb.ddb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_maps/.duckdb.ddb -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_maps/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | target/ 3 | dbt_packages/ 4 | logs/ 5 | -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_maps/.user.yml: -------------------------------------------------------------------------------- 1 | id: bc702e9f-6672-4649-a8b7-0d7e0d22954c 2 | -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_maps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_maps/README.md -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_maps/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_maps/dbt_project.yml -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_maps/models/example/height_names_tokyo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_maps/models/example/height_names_tokyo.sql -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_maps/models/example/new_buildings_germany.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_maps/models/example/new_buildings_germany.sql -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_maps/models/example/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_maps/models/example/schema.yml -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_maps/models/example/sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_maps/models/example/sources.yml -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_maps/models/example/updated_last_14_days.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_maps/models/example/updated_last_14_days.sql -------------------------------------------------------------------------------- /2024-04-18-ELT/overture_maps/profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-04-18-ELT/overture_maps/profiles.yml -------------------------------------------------------------------------------- /2024-05-30-Elephants-and-Ducks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-05-30-Elephants-and-Ducks/.DS_Store -------------------------------------------------------------------------------- /2024-05-30-Elephants-and-Ducks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-05-30-Elephants-and-Ducks/README.md -------------------------------------------------------------------------------- /2024-05-30-Elephants-and-Ducks/duckdb-to-postgis/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-05-30-Elephants-and-Ducks/duckdb-to-postgis/.DS_Store -------------------------------------------------------------------------------- /2024-05-30-Elephants-and-Ducks/duckdb-to-postgis/bike_ways.osm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-05-30-Elephants-and-Ducks/duckdb-to-postgis/bike_ways.osm.gz -------------------------------------------------------------------------------- /2024-05-30-Elephants-and-Ducks/duckdb-to-postgis/custom-pedia-cities-nyc-Mar2018.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-05-30-Elephants-and-Ducks/duckdb-to-postgis/custom-pedia-cities-nyc-Mar2018.geojson -------------------------------------------------------------------------------- /2024-05-30-Elephants-and-Ducks/duckdb-to-postgis/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-05-30-Elephants-and-Ducks/duckdb-to-postgis/docker-compose.yml -------------------------------------------------------------------------------- /2024-05-30-Elephants-and-Ducks/duckdb-to-postgis/mini-postgis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-05-30-Elephants-and-Ducks/duckdb-to-postgis/mini-postgis.sh -------------------------------------------------------------------------------- /2024-05-30-Elephants-and-Ducks/duckdb-to-postgis/spatial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-05-30-Elephants-and-Ducks/duckdb-to-postgis/spatial.sql -------------------------------------------------------------------------------- /2024-05-30-Elephants-and-Ducks/postgis-to-duckdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-05-30-Elephants-and-Ducks/postgis-to-duckdb/Dockerfile -------------------------------------------------------------------------------- /2024-05-30-Elephants-and-Ducks/postgis-to-duckdb/postgis.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-05-30-Elephants-and-Ducks/postgis-to-duckdb/postgis.sql -------------------------------------------------------------------------------- /2024-05-30-Elephants-and-Ducks/postgis-to-duckdb/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforr/modern-gis-live/HEAD/2024-05-30-Elephants-and-Ducks/postgis-to-duckdb/requirements.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Modern GIS Live Workshops 2 | 3 | --------------------------------------------------------------------------------