Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
annefou authored Jun 9, 2024
1 parent 857bb55 commit 1e39080
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ GEO-OPEN-HACK-2024 is a comprehensive and informative event designed for advance

The event is organised by the [International Institute of Applied Systems Analysis](https://iiasa.ac.at/) (IIASA) in collaboration with [Spatial Ecology](https://spatial-ecology.net/). This hackathon delves into advanced cutting-edge open techniques, tools, and best practices for efficiently handling and processing vast amounts of geospatial data. Participants will gain hands-on experience in leveraging HPC resources and geo-tools for tasks such as geospatial data preprocessing, spatial modeling and analytics, and visualization.

## Documentation

Documentation can be viewed at [https://pangeo-data.github.io/geo-open-hack-2024/](https://pangeo-data.github.io/geo-open-hack-2024/).


## Hackathon highlights

- **Introduction to Big Geospatial Data**: Understanding the challenges and opportunities presented by large-scale geospatial datasets.
Expand All @@ -17,3 +22,50 @@ The event is organised by the [International Institute of Applied Systems Analys
- **Case Studies**: Real-world examples of successful big geospatial data projects on HPC systems.
- **Scalability and Big Data Challenges**: Addressing issues related to data volume, velocity, variety, and veracity in geospatial analysis.


## Clone the github repository

To get a local copy of the `geo-open-hack-2024` repository, you can clone it on your local computer and/or server:

```
git clone https://github.com/pangeo-data/geo-open-hack-2024.git
```

## Install and run `geo-open-hack-2024` jupyter notebooks locally from source

Jupyter notebooks are in the `docs` folder and can be run after installing Python and the required packages listed in the [.binder/environment.yml](https://raw.githubusercontent.com/pangeo-data/geo-open-hack-2024/main/.binder/environment.yml) file.

### Install Python

To install Python, we recommend to install [conda](https://conda.io/projects/conda/en/latest/index.html) or [miniconda](https://docs.anaconda.com/free/miniconda/) and then create a new conda environment using [.binder/environment.yml](https://raw.githubusercontent.com/pangeo-data/geo-open-hack-2024/main/.binder/environment.yml):

```
conda env create -f environment.yml
```

Do not forget to switch to the `geohack` conda environment prior to executing any Jupyter notebooks or programs from the `geo-open-hack-2024` repository.

```
conda activate geohack
```

To deactivate the `geohack` environment:

```
conda deactivate
```

### Start JupyerLab and run the Jupyter notebooks

Once all the required packages are installed, you can start JupyterLab and run the jupyter notebooks from the `docs` folder:

```
jupyter lab
```
## Contributions

To contribute to `geo-open-hack-2024` please refer to [CONTRIBUTING](docs/CONTRIBUTING.md)

## Code of Conduct

Pangeo open source community abide to this [Code of Conduct](https://github.com/pangeo-data/geo-open-hack-2024/tree/main?tab=coc-ov-file#readme)

0 comments on commit 1e39080

Please sign in to comment.