https://github.com/hamedalemo/raster-data-tutorial
Notebooks to learn basics of geospatial raster data processing in Python
https://github.com/hamedalemo/raster-data-tutorial
geospatial geospatial-analysis geospatial-processing geospatial-rasters python
Last synced: 11 months ago
JSON representation
Notebooks to learn basics of geospatial raster data processing in Python
- Host: GitHub
- URL: https://github.com/hamedalemo/raster-data-tutorial
- Owner: HamedAlemo
- License: mit
- Created: 2024-10-24T01:49:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-31T15:41:38.000Z (about 1 year ago)
- Last Synced: 2025-01-15T10:57:46.015Z (about 1 year ago)
- Topics: geospatial, geospatial-analysis, geospatial-processing, geospatial-rasters, python
- Language: Jupyter Notebook
- Homepage:
- Size: 1.58 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Geospatial Raster Data Processing in Python
This repository contains an introduction to geospatial raster data processing in Python. This is part of the course on [Advanced Geospatial Analytics with Python](https://hamedalemo.github.io/advanced-geo-python/intro.html) taught since Fall 2023 at Clark University.
## Requirements
You need to have Docker installed on your machine.
## Instructions
It's recommended to pull the Docker image from Dockerhub. Otherwise, if you prefer, you can build your own image using the instructions in the following section.
```
docker pull hamedalemo/raster-tutorial:1.1
```
```
docker run -it -p 8888:8888 -p 8787:8787 hamedalemo/raster-tutorial:1.1
```
- Copy the Jupyter Lab url and paste it in your browser.
- Open `raster_analysis.ipynb` and `raster_processing.ipynb`, and follow the instructions.
Build the Docker image:
```
docker build -t raster-tutorial .
```
Run the container as following after switching to the repository's directory locally:
```
docker run -it -p 8888:8888 raster-tutorial
```
- Copy the Jupyter Lab url and paste it in your browser.
- Open `raster_analysis.ipynb` and `raster_processing.ipynb`, and follow the instructions.