├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── check_environment.py ├── environment.yml ├── img ├── CN_measurement_setup.png ├── TopologicSpatialRelarions2.png ├── geopandas │ ├── chapter3-overlay-both.png │ ├── chapter3-overlay-countries-circle-intersection-new.png │ ├── chapter3-overlay-countries.png │ ├── chapter3-overlay-overlayed.png │ └── chapter3-overlay-regions.png ├── illustration-spatial-join.svg ├── matplotlib_fundamentals.png ├── matplotlib_fundamentals.svg ├── mercator_projection_area.gif ├── notebook │ ├── enterbutton.png │ ├── keya.png │ ├── keyb.png │ ├── keyescape.png │ ├── shift-tab.png │ ├── shiftenter.jpg │ ├── tabbutton.jpg │ └── toomuch.jpg ├── pandas │ ├── 01_table_dataframe1.svg │ └── 06_groupby1.svg ├── projection.png ├── projections-AlbersEqualArea.png ├── projections-Mercator.png ├── projections-Robinson.png ├── raster-concept.png ├── raster-spatial-extent-coordinates.png ├── simple_features_3_text.svg ├── spatial-operations-base.png ├── spatial-operations-buffer-line.png ├── spatial-operations-buffer-point1.png ├── spatial-operations-buffer-point2.png ├── spatial-operations-buffer-polygon.png ├── spatial-operations-difference.png ├── spatial-operations-intersection.png └── spatial-operations-union.png ├── jupytext.toml ├── notebooks ├── 00-jupyter_introduction.ipynb ├── 00-jupyter_introduction.md ├── 01-introduction-tabular-data.ipynb ├── 01-introduction-tabular-data.md ├── 02-introduction-geospatial-data.ipynb ├── 02-introduction-geospatial-data.md ├── 03-coordinate-reference-systems.ipynb ├── 03-coordinate-reference-systems.md ├── 04-spatial-relationships-joins.ipynb ├── 04-spatial-relationships-joins.md ├── 05-spatial-operations-overlays.ipynb ├── 05-spatial-operations-overlays.md ├── 10-introduction-raster.ipynb ├── 10-introduction-raster.md ├── 11-xarray-intro.ipynb ├── 11-xarray-intro.md ├── 12-xarray-advanced.ipynb ├── 12-xarray-advanced.md ├── 13-raster-processing.ipynb ├── 13-raster-processing.md ├── 14-combine-data.ipynb ├── 14-combine-data.md ├── 15-xarray-dask-big-data.ipynb ├── 15-xarray-dask-big-data.md ├── 90_package_numpy.ipynb ├── 90_package_numpy.md ├── 91_package_rasterio.ipynb ├── 91_package_rasterio.md ├── case-argo-sea-floats.ipynb ├── case-argo-sea-floats.md ├── case-curieuzeneuzen-air-quality.ipynb ├── case-curieuzeneuzen-air-quality.md ├── case-sea-surface-temperature.ipynb ├── case-sea-surface-temperature.md ├── data │ ├── 2016-2017_global_rain-temperature.nc │ ├── CLC2018_V2018_legend_grouped.csv │ ├── CLC2018_V2020_20u1_flanders.tif │ ├── CN_Flanders_open_dataset.csv │ ├── VRBG │ │ ├── Refgem.cpg │ │ ├── Refgem.dbf │ │ ├── Refgem.prj │ │ ├── Refgem.shp │ │ └── Refgem.shx │ ├── argo_float.nc │ ├── averbode │ │ └── study_area.geojson │ ├── basin.nc │ ├── cities.csv │ ├── countries.csv │ ├── era5-land-monthly-means_example.nc │ ├── gent │ │ ├── DHMVIIDTMRAS25m.zip │ │ ├── raster │ │ │ ├── 2020-09-17_Sentinel_2_L1C_B04.tiff │ │ │ ├── 2020-09-17_Sentinel_2_L1C_B0408.tiff │ │ │ ├── 2020-09-17_Sentinel_2_L1C_B08.tiff │ │ │ └── 2020-09-17_Sentinel_2_L1C_True_color.tiff │ │ └── vector │ │ │ ├── gent.geojson │ │ │ ├── parken-gent.geojson │ │ │ └── wegsegmenten-gent.geojson.zip │ ├── herstappe │ │ ├── raster │ │ │ ├── 2020-09-17_Sentinel_2_L1C_True_color.tiff │ │ │ └── sentinel_moisture │ │ │ │ ├── 2016-05-01, Sentinel-2A L1C, Moisture index.tiff │ │ │ │ ├── 2019-02-15, Sentinel-2A L1C, Moisture index.tiff │ │ │ │ └── 2020-02-07, Sentinel-2A L1C, Moisture index.tiff │ │ └── vector │ │ │ └── herstappe.geojson │ ├── ne_110m_admin_0_countries.zip │ ├── ne_110m_populated_places.zip │ ├── ne_50m_rivers_lake_centerlines.zip │ ├── osm_network_gent.gpkg │ ├── paris_bike_stations.csv │ ├── paris_bike_stations.geojson │ ├── paris_bike_stations_mercator.gpkg │ ├── paris_districts.csv │ ├── paris_districts.geojson │ ├── paris_districts_mercator.gpkg │ ├── paris_districts_utm.geojson │ ├── paris_land_use.zip │ ├── paris_trees.gpkg │ ├── preprocess_data.ipynb │ └── vmm_flowdata.csv ├── visualization-01-matplotlib.ipynb ├── visualization-01-matplotlib.md ├── visualization-02-geopandas.ipynb ├── visualization-02-geopandas.md ├── visualization-03-cartopy.ipynb ├── visualization-03-cartopy.md ├── visualization-04-interactive.ipynb └── visualization-04-interactive.md └── web ├── README.md ├── build.py ├── config_example.toml ├── requirements.txt ├── static ├── img │ ├── doctoralschoolsprofiel_hq_rgb_web.png │ ├── download-button.png │ ├── ecosystem-gis-course.svg │ ├── ecosystem-gis-overview.svg │ ├── ecosystem-gis-overview_1.svg │ ├── ecosystem-gis-overview_2.svg │ ├── ecosystem-gis-overview_3.svg │ ├── ecosystem-gis-overview_4.svg │ ├── ecosystem-gis-overview_5.svg │ ├── ecosystem-gis-overview_6.svg │ ├── icon_github.svg │ ├── icon_twitter.svg │ ├── ipython.png │ ├── issuetracker.png │ ├── logo_flanders+richtingmorgen.png │ ├── navigator_notebook.png │ ├── navigator_notebook.svg │ ├── notebook.png │ ├── startup.png │ ├── work_joris_1.png │ └── work_stijn_1.png ├── remark-latest.min.js └── slides.css └── templates ├── _config.yml.tmpl ├── contributing.md.tmpl ├── index.md.tmpl ├── setup.md.tmpl └── slides.html.tmpl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/README.md -------------------------------------------------------------------------------- /check_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/check_environment.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/environment.yml -------------------------------------------------------------------------------- /img/CN_measurement_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/CN_measurement_setup.png -------------------------------------------------------------------------------- /img/TopologicSpatialRelarions2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/TopologicSpatialRelarions2.png -------------------------------------------------------------------------------- /img/geopandas/chapter3-overlay-both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/geopandas/chapter3-overlay-both.png -------------------------------------------------------------------------------- /img/geopandas/chapter3-overlay-countries-circle-intersection-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/geopandas/chapter3-overlay-countries-circle-intersection-new.png -------------------------------------------------------------------------------- /img/geopandas/chapter3-overlay-countries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/geopandas/chapter3-overlay-countries.png -------------------------------------------------------------------------------- /img/geopandas/chapter3-overlay-overlayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/geopandas/chapter3-overlay-overlayed.png -------------------------------------------------------------------------------- /img/geopandas/chapter3-overlay-regions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/geopandas/chapter3-overlay-regions.png -------------------------------------------------------------------------------- /img/illustration-spatial-join.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/illustration-spatial-join.svg -------------------------------------------------------------------------------- /img/matplotlib_fundamentals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/matplotlib_fundamentals.png -------------------------------------------------------------------------------- /img/matplotlib_fundamentals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/matplotlib_fundamentals.svg -------------------------------------------------------------------------------- /img/mercator_projection_area.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/mercator_projection_area.gif -------------------------------------------------------------------------------- /img/notebook/enterbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/notebook/enterbutton.png -------------------------------------------------------------------------------- /img/notebook/keya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/notebook/keya.png -------------------------------------------------------------------------------- /img/notebook/keyb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/notebook/keyb.png -------------------------------------------------------------------------------- /img/notebook/keyescape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/notebook/keyescape.png -------------------------------------------------------------------------------- /img/notebook/shift-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/notebook/shift-tab.png -------------------------------------------------------------------------------- /img/notebook/shiftenter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/notebook/shiftenter.jpg -------------------------------------------------------------------------------- /img/notebook/tabbutton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/notebook/tabbutton.jpg -------------------------------------------------------------------------------- /img/notebook/toomuch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/notebook/toomuch.jpg -------------------------------------------------------------------------------- /img/pandas/01_table_dataframe1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/pandas/01_table_dataframe1.svg -------------------------------------------------------------------------------- /img/pandas/06_groupby1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/pandas/06_groupby1.svg -------------------------------------------------------------------------------- /img/projection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/projection.png -------------------------------------------------------------------------------- /img/projections-AlbersEqualArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/projections-AlbersEqualArea.png -------------------------------------------------------------------------------- /img/projections-Mercator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/projections-Mercator.png -------------------------------------------------------------------------------- /img/projections-Robinson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/projections-Robinson.png -------------------------------------------------------------------------------- /img/raster-concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/raster-concept.png -------------------------------------------------------------------------------- /img/raster-spatial-extent-coordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/raster-spatial-extent-coordinates.png -------------------------------------------------------------------------------- /img/simple_features_3_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/simple_features_3_text.svg -------------------------------------------------------------------------------- /img/spatial-operations-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/spatial-operations-base.png -------------------------------------------------------------------------------- /img/spatial-operations-buffer-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/spatial-operations-buffer-line.png -------------------------------------------------------------------------------- /img/spatial-operations-buffer-point1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/spatial-operations-buffer-point1.png -------------------------------------------------------------------------------- /img/spatial-operations-buffer-point2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/spatial-operations-buffer-point2.png -------------------------------------------------------------------------------- /img/spatial-operations-buffer-polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/spatial-operations-buffer-polygon.png -------------------------------------------------------------------------------- /img/spatial-operations-difference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/spatial-operations-difference.png -------------------------------------------------------------------------------- /img/spatial-operations-intersection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/spatial-operations-intersection.png -------------------------------------------------------------------------------- /img/spatial-operations-union.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/img/spatial-operations-union.png -------------------------------------------------------------------------------- /jupytext.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/jupytext.toml -------------------------------------------------------------------------------- /notebooks/00-jupyter_introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/00-jupyter_introduction.ipynb -------------------------------------------------------------------------------- /notebooks/00-jupyter_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/00-jupyter_introduction.md -------------------------------------------------------------------------------- /notebooks/01-introduction-tabular-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/01-introduction-tabular-data.ipynb -------------------------------------------------------------------------------- /notebooks/01-introduction-tabular-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/01-introduction-tabular-data.md -------------------------------------------------------------------------------- /notebooks/02-introduction-geospatial-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/02-introduction-geospatial-data.ipynb -------------------------------------------------------------------------------- /notebooks/02-introduction-geospatial-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/02-introduction-geospatial-data.md -------------------------------------------------------------------------------- /notebooks/03-coordinate-reference-systems.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/03-coordinate-reference-systems.ipynb -------------------------------------------------------------------------------- /notebooks/03-coordinate-reference-systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/03-coordinate-reference-systems.md -------------------------------------------------------------------------------- /notebooks/04-spatial-relationships-joins.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/04-spatial-relationships-joins.ipynb -------------------------------------------------------------------------------- /notebooks/04-spatial-relationships-joins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/04-spatial-relationships-joins.md -------------------------------------------------------------------------------- /notebooks/05-spatial-operations-overlays.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/05-spatial-operations-overlays.ipynb -------------------------------------------------------------------------------- /notebooks/05-spatial-operations-overlays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/05-spatial-operations-overlays.md -------------------------------------------------------------------------------- /notebooks/10-introduction-raster.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/10-introduction-raster.ipynb -------------------------------------------------------------------------------- /notebooks/10-introduction-raster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/10-introduction-raster.md -------------------------------------------------------------------------------- /notebooks/11-xarray-intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/11-xarray-intro.ipynb -------------------------------------------------------------------------------- /notebooks/11-xarray-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/11-xarray-intro.md -------------------------------------------------------------------------------- /notebooks/12-xarray-advanced.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/12-xarray-advanced.ipynb -------------------------------------------------------------------------------- /notebooks/12-xarray-advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/12-xarray-advanced.md -------------------------------------------------------------------------------- /notebooks/13-raster-processing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/13-raster-processing.ipynb -------------------------------------------------------------------------------- /notebooks/13-raster-processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/13-raster-processing.md -------------------------------------------------------------------------------- /notebooks/14-combine-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/14-combine-data.ipynb -------------------------------------------------------------------------------- /notebooks/14-combine-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/14-combine-data.md -------------------------------------------------------------------------------- /notebooks/15-xarray-dask-big-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/15-xarray-dask-big-data.ipynb -------------------------------------------------------------------------------- /notebooks/15-xarray-dask-big-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/15-xarray-dask-big-data.md -------------------------------------------------------------------------------- /notebooks/90_package_numpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/90_package_numpy.ipynb -------------------------------------------------------------------------------- /notebooks/90_package_numpy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/90_package_numpy.md -------------------------------------------------------------------------------- /notebooks/91_package_rasterio.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/91_package_rasterio.ipynb -------------------------------------------------------------------------------- /notebooks/91_package_rasterio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/91_package_rasterio.md -------------------------------------------------------------------------------- /notebooks/case-argo-sea-floats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/case-argo-sea-floats.ipynb -------------------------------------------------------------------------------- /notebooks/case-argo-sea-floats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/case-argo-sea-floats.md -------------------------------------------------------------------------------- /notebooks/case-curieuzeneuzen-air-quality.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/case-curieuzeneuzen-air-quality.ipynb -------------------------------------------------------------------------------- /notebooks/case-curieuzeneuzen-air-quality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/case-curieuzeneuzen-air-quality.md -------------------------------------------------------------------------------- /notebooks/case-sea-surface-temperature.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/case-sea-surface-temperature.ipynb -------------------------------------------------------------------------------- /notebooks/case-sea-surface-temperature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/case-sea-surface-temperature.md -------------------------------------------------------------------------------- /notebooks/data/2016-2017_global_rain-temperature.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/2016-2017_global_rain-temperature.nc -------------------------------------------------------------------------------- /notebooks/data/CLC2018_V2018_legend_grouped.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/CLC2018_V2018_legend_grouped.csv -------------------------------------------------------------------------------- /notebooks/data/CLC2018_V2020_20u1_flanders.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/CLC2018_V2020_20u1_flanders.tif -------------------------------------------------------------------------------- /notebooks/data/CN_Flanders_open_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/CN_Flanders_open_dataset.csv -------------------------------------------------------------------------------- /notebooks/data/VRBG/Refgem.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /notebooks/data/VRBG/Refgem.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/VRBG/Refgem.dbf -------------------------------------------------------------------------------- /notebooks/data/VRBG/Refgem.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/VRBG/Refgem.prj -------------------------------------------------------------------------------- /notebooks/data/VRBG/Refgem.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/VRBG/Refgem.shp -------------------------------------------------------------------------------- /notebooks/data/VRBG/Refgem.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/VRBG/Refgem.shx -------------------------------------------------------------------------------- /notebooks/data/argo_float.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/argo_float.nc -------------------------------------------------------------------------------- /notebooks/data/averbode/study_area.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/averbode/study_area.geojson -------------------------------------------------------------------------------- /notebooks/data/basin.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/basin.nc -------------------------------------------------------------------------------- /notebooks/data/cities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/cities.csv -------------------------------------------------------------------------------- /notebooks/data/countries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/countries.csv -------------------------------------------------------------------------------- /notebooks/data/era5-land-monthly-means_example.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/era5-land-monthly-means_example.nc -------------------------------------------------------------------------------- /notebooks/data/gent/DHMVIIDTMRAS25m.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/gent/DHMVIIDTMRAS25m.zip -------------------------------------------------------------------------------- /notebooks/data/gent/raster/2020-09-17_Sentinel_2_L1C_B04.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/gent/raster/2020-09-17_Sentinel_2_L1C_B04.tiff -------------------------------------------------------------------------------- /notebooks/data/gent/raster/2020-09-17_Sentinel_2_L1C_B0408.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/gent/raster/2020-09-17_Sentinel_2_L1C_B0408.tiff -------------------------------------------------------------------------------- /notebooks/data/gent/raster/2020-09-17_Sentinel_2_L1C_B08.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/gent/raster/2020-09-17_Sentinel_2_L1C_B08.tiff -------------------------------------------------------------------------------- /notebooks/data/gent/raster/2020-09-17_Sentinel_2_L1C_True_color.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/gent/raster/2020-09-17_Sentinel_2_L1C_True_color.tiff -------------------------------------------------------------------------------- /notebooks/data/gent/vector/gent.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/gent/vector/gent.geojson -------------------------------------------------------------------------------- /notebooks/data/gent/vector/parken-gent.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/gent/vector/parken-gent.geojson -------------------------------------------------------------------------------- /notebooks/data/gent/vector/wegsegmenten-gent.geojson.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/gent/vector/wegsegmenten-gent.geojson.zip -------------------------------------------------------------------------------- /notebooks/data/herstappe/raster/2020-09-17_Sentinel_2_L1C_True_color.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/herstappe/raster/2020-09-17_Sentinel_2_L1C_True_color.tiff -------------------------------------------------------------------------------- /notebooks/data/herstappe/raster/sentinel_moisture/2016-05-01, Sentinel-2A L1C, Moisture index.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/herstappe/raster/sentinel_moisture/2016-05-01, Sentinel-2A L1C, Moisture index.tiff -------------------------------------------------------------------------------- /notebooks/data/herstappe/raster/sentinel_moisture/2019-02-15, Sentinel-2A L1C, Moisture index.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/herstappe/raster/sentinel_moisture/2019-02-15, Sentinel-2A L1C, Moisture index.tiff -------------------------------------------------------------------------------- /notebooks/data/herstappe/raster/sentinel_moisture/2020-02-07, Sentinel-2A L1C, Moisture index.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/herstappe/raster/sentinel_moisture/2020-02-07, Sentinel-2A L1C, Moisture index.tiff -------------------------------------------------------------------------------- /notebooks/data/herstappe/vector/herstappe.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/herstappe/vector/herstappe.geojson -------------------------------------------------------------------------------- /notebooks/data/ne_110m_admin_0_countries.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/ne_110m_admin_0_countries.zip -------------------------------------------------------------------------------- /notebooks/data/ne_110m_populated_places.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/ne_110m_populated_places.zip -------------------------------------------------------------------------------- /notebooks/data/ne_50m_rivers_lake_centerlines.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/ne_50m_rivers_lake_centerlines.zip -------------------------------------------------------------------------------- /notebooks/data/osm_network_gent.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/osm_network_gent.gpkg -------------------------------------------------------------------------------- /notebooks/data/paris_bike_stations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/paris_bike_stations.csv -------------------------------------------------------------------------------- /notebooks/data/paris_bike_stations.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/paris_bike_stations.geojson -------------------------------------------------------------------------------- /notebooks/data/paris_bike_stations_mercator.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/paris_bike_stations_mercator.gpkg -------------------------------------------------------------------------------- /notebooks/data/paris_districts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/paris_districts.csv -------------------------------------------------------------------------------- /notebooks/data/paris_districts.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/paris_districts.geojson -------------------------------------------------------------------------------- /notebooks/data/paris_districts_mercator.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/paris_districts_mercator.gpkg -------------------------------------------------------------------------------- /notebooks/data/paris_districts_utm.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/paris_districts_utm.geojson -------------------------------------------------------------------------------- /notebooks/data/paris_land_use.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/paris_land_use.zip -------------------------------------------------------------------------------- /notebooks/data/paris_trees.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/paris_trees.gpkg -------------------------------------------------------------------------------- /notebooks/data/preprocess_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/preprocess_data.ipynb -------------------------------------------------------------------------------- /notebooks/data/vmm_flowdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/data/vmm_flowdata.csv -------------------------------------------------------------------------------- /notebooks/visualization-01-matplotlib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/visualization-01-matplotlib.ipynb -------------------------------------------------------------------------------- /notebooks/visualization-01-matplotlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/visualization-01-matplotlib.md -------------------------------------------------------------------------------- /notebooks/visualization-02-geopandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/visualization-02-geopandas.ipynb -------------------------------------------------------------------------------- /notebooks/visualization-02-geopandas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/visualization-02-geopandas.md -------------------------------------------------------------------------------- /notebooks/visualization-03-cartopy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/visualization-03-cartopy.ipynb -------------------------------------------------------------------------------- /notebooks/visualization-03-cartopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/visualization-03-cartopy.md -------------------------------------------------------------------------------- /notebooks/visualization-04-interactive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/visualization-04-interactive.ipynb -------------------------------------------------------------------------------- /notebooks/visualization-04-interactive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/notebooks/visualization-04-interactive.md -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/README.md -------------------------------------------------------------------------------- /web/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/build.py -------------------------------------------------------------------------------- /web/config_example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/config_example.toml -------------------------------------------------------------------------------- /web/requirements.txt: -------------------------------------------------------------------------------- 1 | click 2 | Jinja2 3 | toml -------------------------------------------------------------------------------- /web/static/img/doctoralschoolsprofiel_hq_rgb_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/doctoralschoolsprofiel_hq_rgb_web.png -------------------------------------------------------------------------------- /web/static/img/download-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/download-button.png -------------------------------------------------------------------------------- /web/static/img/ecosystem-gis-course.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/ecosystem-gis-course.svg -------------------------------------------------------------------------------- /web/static/img/ecosystem-gis-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/ecosystem-gis-overview.svg -------------------------------------------------------------------------------- /web/static/img/ecosystem-gis-overview_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/ecosystem-gis-overview_1.svg -------------------------------------------------------------------------------- /web/static/img/ecosystem-gis-overview_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/ecosystem-gis-overview_2.svg -------------------------------------------------------------------------------- /web/static/img/ecosystem-gis-overview_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/ecosystem-gis-overview_3.svg -------------------------------------------------------------------------------- /web/static/img/ecosystem-gis-overview_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/ecosystem-gis-overview_4.svg -------------------------------------------------------------------------------- /web/static/img/ecosystem-gis-overview_5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/ecosystem-gis-overview_5.svg -------------------------------------------------------------------------------- /web/static/img/ecosystem-gis-overview_6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/ecosystem-gis-overview_6.svg -------------------------------------------------------------------------------- /web/static/img/icon_github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/icon_github.svg -------------------------------------------------------------------------------- /web/static/img/icon_twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/icon_twitter.svg -------------------------------------------------------------------------------- /web/static/img/ipython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/ipython.png -------------------------------------------------------------------------------- /web/static/img/issuetracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/issuetracker.png -------------------------------------------------------------------------------- /web/static/img/logo_flanders+richtingmorgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/logo_flanders+richtingmorgen.png -------------------------------------------------------------------------------- /web/static/img/navigator_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/navigator_notebook.png -------------------------------------------------------------------------------- /web/static/img/navigator_notebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/navigator_notebook.svg -------------------------------------------------------------------------------- /web/static/img/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/notebook.png -------------------------------------------------------------------------------- /web/static/img/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/startup.png -------------------------------------------------------------------------------- /web/static/img/work_joris_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/work_joris_1.png -------------------------------------------------------------------------------- /web/static/img/work_stijn_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/img/work_stijn_1.png -------------------------------------------------------------------------------- /web/static/remark-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/remark-latest.min.js -------------------------------------------------------------------------------- /web/static/slides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/static/slides.css -------------------------------------------------------------------------------- /web/templates/_config.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/templates/_config.yml.tmpl -------------------------------------------------------------------------------- /web/templates/contributing.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/templates/contributing.md.tmpl -------------------------------------------------------------------------------- /web/templates/index.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/templates/index.md.tmpl -------------------------------------------------------------------------------- /web/templates/setup.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/templates/setup.md.tmpl -------------------------------------------------------------------------------- /web/templates/slides.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plovercode/course-python-geospatial/HEAD/web/templates/slides.html.tmpl --------------------------------------------------------------------------------