├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── Makefile ├── README.md ├── env └── environment.yml ├── make.bat └── source ├── _static ├── aalto-logo-web.png ├── web-banner-blue.png ├── web-banner-green.png └── web-banner.png ├── conf.py ├── connect-hpc ├── allas-access.rst └── img │ └── 02-allas.png ├── course-info ├── introduction.rst └── overview.rst ├── getting-started ├── activate-account.rst ├── desktop-connect.rst ├── img │ ├── img1.png │ ├── img10.png │ ├── img11.png │ ├── img12.png │ ├── img12geo.png │ ├── img13.png │ ├── img13geo.png │ ├── img14.png │ ├── img14geo.png │ ├── img2.png │ ├── img21.png │ ├── img22.png │ ├── img23.png │ ├── img3.png │ ├── img31.png │ ├── img32.png │ ├── img33.png │ ├── img34.png │ ├── img35.png │ ├── img36.png │ ├── img4.png │ ├── img5.png │ ├── img6.png │ ├── img7.png │ ├── img8.png │ └── img9.png ├── install-env.rst ├── load-geoconda.rst └── set-up-jupyter.rst ├── index.rst ├── lessons ├── L1 │ ├── 01_CellularTowers-Parallelization.ipynb │ └── img │ │ ├── 1-dashboard.png │ │ ├── 1-htop.png │ │ ├── 2-dashboard.png │ │ ├── 2-htop.png │ │ ├── 3-dashboard.png │ │ ├── 3-htop.png │ │ ├── 4-session.png │ │ ├── dask-img1.png │ │ └── map-celltowers.png ├── L2 │ ├── 02_ShortestPath-Parallelization.ipynb │ └── img │ │ ├── GeoHPC-map1.png │ │ ├── machine-core-1.png │ │ ├── machine-core-16.png │ │ ├── machine-core-starting.png │ │ └── output-map1.png ├── L3 │ ├── 03_LandCoverClassification_syke_Parallelization.ipynb │ ├── img │ │ ├── Close-up.png │ │ ├── Grid.png │ │ ├── dask-img1.png │ │ ├── final_map.png │ │ └── point-eo.png │ └── point_eo │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── cli.cpython-310.pyc │ │ ├── cli.py │ │ └── scripts │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── analysis.cpython-310.pyc │ │ ├── postprocess_prediction.cpython-310.pyc │ │ ├── predict.cpython-310.pyc │ │ ├── sample_raster.cpython-310.pyc │ │ ├── sample_xarray.cpython-310.pyc │ │ ├── set_band_description.cpython-310.pyc │ │ └── tpot_train.cpython-310.pyc │ │ ├── analysis.py │ │ ├── postprocess_prediction.py │ │ ├── predict.py │ │ ├── sample_raster.py │ │ ├── sample_xarray.py │ │ ├── set_band_description.py │ │ └── tpot_train.py ├── L4 │ ├── 04_MergedTiledVectorData-Parallel.rst │ ├── fi_nls_ykj_etrs35fin.json │ ├── img │ │ ├── flowchart_multi.png │ │ ├── flowchart_single.png │ │ ├── kuva1.png │ │ └── paituli-data.png │ └── src │ │ ├── count.py │ │ ├── count_parallel.py │ │ ├── create_layer.py │ │ ├── create_layer_parallel.py │ │ ├── job_create_partial_index.sh │ │ ├── job_create_partial_layer.sh │ │ ├── job_join_partial_index.sh │ │ ├── job_join_partial_layer.sh │ │ ├── job_list_files.sh │ │ ├── main.py │ │ ├── main_create_partial_index.py │ │ ├── main_create_partial_layer.py │ │ ├── main_join_partial_indexes.py │ │ ├── main_join_partial_layers.py │ │ ├── main_list_files.py │ │ ├── merge.py │ │ ├── projection.py │ │ ├── settings.py │ │ └── utils.py └── L5 │ ├── 05_OvertureMaps-POI-Parallelization.ipynb │ └── img │ ├── bbox_helsinki.png │ ├── buildings.png │ ├── fin_bbox.png │ └── main-group.png ├── requirements.txt └── webinars └── geohpc-webinar-2024.rst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/README.md -------------------------------------------------------------------------------- /env/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/env/environment.yml -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/make.bat -------------------------------------------------------------------------------- /source/_static/aalto-logo-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/_static/aalto-logo-web.png -------------------------------------------------------------------------------- /source/_static/web-banner-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/_static/web-banner-blue.png -------------------------------------------------------------------------------- /source/_static/web-banner-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/_static/web-banner-green.png -------------------------------------------------------------------------------- /source/_static/web-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/_static/web-banner.png -------------------------------------------------------------------------------- /source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/conf.py -------------------------------------------------------------------------------- /source/connect-hpc/allas-access.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/connect-hpc/allas-access.rst -------------------------------------------------------------------------------- /source/connect-hpc/img/02-allas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/connect-hpc/img/02-allas.png -------------------------------------------------------------------------------- /source/course-info/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/course-info/introduction.rst -------------------------------------------------------------------------------- /source/course-info/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/course-info/overview.rst -------------------------------------------------------------------------------- /source/getting-started/activate-account.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/activate-account.rst -------------------------------------------------------------------------------- /source/getting-started/desktop-connect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/desktop-connect.rst -------------------------------------------------------------------------------- /source/getting-started/img/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img1.png -------------------------------------------------------------------------------- /source/getting-started/img/img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img10.png -------------------------------------------------------------------------------- /source/getting-started/img/img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img11.png -------------------------------------------------------------------------------- /source/getting-started/img/img12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img12.png -------------------------------------------------------------------------------- /source/getting-started/img/img12geo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img12geo.png -------------------------------------------------------------------------------- /source/getting-started/img/img13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img13.png -------------------------------------------------------------------------------- /source/getting-started/img/img13geo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img13geo.png -------------------------------------------------------------------------------- /source/getting-started/img/img14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img14.png -------------------------------------------------------------------------------- /source/getting-started/img/img14geo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img14geo.png -------------------------------------------------------------------------------- /source/getting-started/img/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img2.png -------------------------------------------------------------------------------- /source/getting-started/img/img21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img21.png -------------------------------------------------------------------------------- /source/getting-started/img/img22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img22.png -------------------------------------------------------------------------------- /source/getting-started/img/img23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img23.png -------------------------------------------------------------------------------- /source/getting-started/img/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img3.png -------------------------------------------------------------------------------- /source/getting-started/img/img31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img31.png -------------------------------------------------------------------------------- /source/getting-started/img/img32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img32.png -------------------------------------------------------------------------------- /source/getting-started/img/img33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img33.png -------------------------------------------------------------------------------- /source/getting-started/img/img34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img34.png -------------------------------------------------------------------------------- /source/getting-started/img/img35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img35.png -------------------------------------------------------------------------------- /source/getting-started/img/img36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img36.png -------------------------------------------------------------------------------- /source/getting-started/img/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img4.png -------------------------------------------------------------------------------- /source/getting-started/img/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img5.png -------------------------------------------------------------------------------- /source/getting-started/img/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img6.png -------------------------------------------------------------------------------- /source/getting-started/img/img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img7.png -------------------------------------------------------------------------------- /source/getting-started/img/img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img8.png -------------------------------------------------------------------------------- /source/getting-started/img/img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/img/img9.png -------------------------------------------------------------------------------- /source/getting-started/install-env.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/install-env.rst -------------------------------------------------------------------------------- /source/getting-started/load-geoconda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/load-geoconda.rst -------------------------------------------------------------------------------- /source/getting-started/set-up-jupyter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/getting-started/set-up-jupyter.rst -------------------------------------------------------------------------------- /source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/index.rst -------------------------------------------------------------------------------- /source/lessons/L1/01_CellularTowers-Parallelization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L1/01_CellularTowers-Parallelization.ipynb -------------------------------------------------------------------------------- /source/lessons/L1/img/1-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L1/img/1-dashboard.png -------------------------------------------------------------------------------- /source/lessons/L1/img/1-htop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L1/img/1-htop.png -------------------------------------------------------------------------------- /source/lessons/L1/img/2-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L1/img/2-dashboard.png -------------------------------------------------------------------------------- /source/lessons/L1/img/2-htop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L1/img/2-htop.png -------------------------------------------------------------------------------- /source/lessons/L1/img/3-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L1/img/3-dashboard.png -------------------------------------------------------------------------------- /source/lessons/L1/img/3-htop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L1/img/3-htop.png -------------------------------------------------------------------------------- /source/lessons/L1/img/4-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L1/img/4-session.png -------------------------------------------------------------------------------- /source/lessons/L1/img/dask-img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L1/img/dask-img1.png -------------------------------------------------------------------------------- /source/lessons/L1/img/map-celltowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L1/img/map-celltowers.png -------------------------------------------------------------------------------- /source/lessons/L2/02_ShortestPath-Parallelization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L2/02_ShortestPath-Parallelization.ipynb -------------------------------------------------------------------------------- /source/lessons/L2/img/GeoHPC-map1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L2/img/GeoHPC-map1.png -------------------------------------------------------------------------------- /source/lessons/L2/img/machine-core-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L2/img/machine-core-1.png -------------------------------------------------------------------------------- /source/lessons/L2/img/machine-core-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L2/img/machine-core-16.png -------------------------------------------------------------------------------- /source/lessons/L2/img/machine-core-starting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L2/img/machine-core-starting.png -------------------------------------------------------------------------------- /source/lessons/L2/img/output-map1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L2/img/output-map1.png -------------------------------------------------------------------------------- /source/lessons/L3/03_LandCoverClassification_syke_Parallelization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/03_LandCoverClassification_syke_Parallelization.ipynb -------------------------------------------------------------------------------- /source/lessons/L3/img/Close-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/img/Close-up.png -------------------------------------------------------------------------------- /source/lessons/L3/img/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/img/Grid.png -------------------------------------------------------------------------------- /source/lessons/L3/img/dask-img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/img/dask-img1.png -------------------------------------------------------------------------------- /source/lessons/L3/img/final_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/img/final_map.png -------------------------------------------------------------------------------- /source/lessons/L3/img/point-eo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/img/point-eo.png -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/__init__.py -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/__main__.py -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/__pycache__/cli.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/__pycache__/cli.cpython-310.pyc -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/cli.py -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/__pycache__/analysis.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/__pycache__/analysis.cpython-310.pyc -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/__pycache__/postprocess_prediction.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/__pycache__/postprocess_prediction.cpython-310.pyc -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/__pycache__/predict.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/__pycache__/predict.cpython-310.pyc -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/__pycache__/sample_raster.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/__pycache__/sample_raster.cpython-310.pyc -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/__pycache__/sample_xarray.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/__pycache__/sample_xarray.cpython-310.pyc -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/__pycache__/set_band_description.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/__pycache__/set_band_description.cpython-310.pyc -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/__pycache__/tpot_train.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/__pycache__/tpot_train.cpython-310.pyc -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/analysis.py -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/postprocess_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/postprocess_prediction.py -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/predict.py -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/sample_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/sample_raster.py -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/sample_xarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/sample_xarray.py -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/set_band_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/set_band_description.py -------------------------------------------------------------------------------- /source/lessons/L3/point_eo/scripts/tpot_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L3/point_eo/scripts/tpot_train.py -------------------------------------------------------------------------------- /source/lessons/L4/04_MergedTiledVectorData-Parallel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/04_MergedTiledVectorData-Parallel.rst -------------------------------------------------------------------------------- /source/lessons/L4/fi_nls_ykj_etrs35fin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/fi_nls_ykj_etrs35fin.json -------------------------------------------------------------------------------- /source/lessons/L4/img/flowchart_multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/img/flowchart_multi.png -------------------------------------------------------------------------------- /source/lessons/L4/img/flowchart_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/img/flowchart_single.png -------------------------------------------------------------------------------- /source/lessons/L4/img/kuva1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/img/kuva1.png -------------------------------------------------------------------------------- /source/lessons/L4/img/paituli-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/img/paituli-data.png -------------------------------------------------------------------------------- /source/lessons/L4/src/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/count.py -------------------------------------------------------------------------------- /source/lessons/L4/src/count_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/count_parallel.py -------------------------------------------------------------------------------- /source/lessons/L4/src/create_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/create_layer.py -------------------------------------------------------------------------------- /source/lessons/L4/src/create_layer_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/create_layer_parallel.py -------------------------------------------------------------------------------- /source/lessons/L4/src/job_create_partial_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/job_create_partial_index.sh -------------------------------------------------------------------------------- /source/lessons/L4/src/job_create_partial_layer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/job_create_partial_layer.sh -------------------------------------------------------------------------------- /source/lessons/L4/src/job_join_partial_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/job_join_partial_index.sh -------------------------------------------------------------------------------- /source/lessons/L4/src/job_join_partial_layer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/job_join_partial_layer.sh -------------------------------------------------------------------------------- /source/lessons/L4/src/job_list_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/job_list_files.sh -------------------------------------------------------------------------------- /source/lessons/L4/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/main.py -------------------------------------------------------------------------------- /source/lessons/L4/src/main_create_partial_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/main_create_partial_index.py -------------------------------------------------------------------------------- /source/lessons/L4/src/main_create_partial_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/main_create_partial_layer.py -------------------------------------------------------------------------------- /source/lessons/L4/src/main_join_partial_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/main_join_partial_indexes.py -------------------------------------------------------------------------------- /source/lessons/L4/src/main_join_partial_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/main_join_partial_layers.py -------------------------------------------------------------------------------- /source/lessons/L4/src/main_list_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/main_list_files.py -------------------------------------------------------------------------------- /source/lessons/L4/src/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/merge.py -------------------------------------------------------------------------------- /source/lessons/L4/src/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/projection.py -------------------------------------------------------------------------------- /source/lessons/L4/src/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/settings.py -------------------------------------------------------------------------------- /source/lessons/L4/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L4/src/utils.py -------------------------------------------------------------------------------- /source/lessons/L5/05_OvertureMaps-POI-Parallelization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L5/05_OvertureMaps-POI-Parallelization.ipynb -------------------------------------------------------------------------------- /source/lessons/L5/img/bbox_helsinki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L5/img/bbox_helsinki.png -------------------------------------------------------------------------------- /source/lessons/L5/img/buildings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L5/img/buildings.png -------------------------------------------------------------------------------- /source/lessons/L5/img/fin_bbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L5/img/fin_bbox.png -------------------------------------------------------------------------------- /source/lessons/L5/img/main-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/lessons/L5/img/main-group.png -------------------------------------------------------------------------------- /source/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/requirements.txt -------------------------------------------------------------------------------- /source/webinars/geohpc-webinar-2024.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoGIS/GeoHPC/HEAD/source/webinars/geohpc-webinar-2024.rst --------------------------------------------------------------------------------