Skip to content

Commit

Permalink
Merge pull request #2 from uber/update
Browse files Browse the repository at this point in the history
Start updating repo
  • Loading branch information
ajfriend authored Jun 3, 2020
2 parents 4e547fd + f2aae8a commit d8e3028
Show file tree
Hide file tree
Showing 10 changed files with 1,006 additions and 1,122 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store
env/
.ipynb_checkpoints/
21 changes: 0 additions & 21 deletions README.rst

This file was deleted.

916 changes: 0 additions & 916 deletions UnifiedDataLayers.ipynb

This file was deleted.

185 changes: 0 additions & 185 deletions Usage.ipynb

This file was deleted.

12 changes: 12 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
init: purge
virtualenv -p python3 env
env/bin/pip install -r requirements.txt

purge:
-@rm -rf env

lab:
env/bin/jupyter lab

ipython:
env/bin/ipython
772 changes: 772 additions & 0 deletions notebooks/unified_data_layers.ipynb

Large diffs are not rendered by default.

File renamed without changes.
187 changes: 187 additions & 0 deletions notebooks/usage.ipynb

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# h3-py Notebooks

[![version](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)

Welcome to H3 in Jupyter Notebooks!

[H3](https://h3geo.org/) is a hierarchical hexagonal
geospatial indexing system.

This repo is a gallery of Jupyter notebooks including H3 Python
API tutorials, examples and visualizations.
You can visualize them on
[NBViewer](https://nbviewer.jupyter.org/github/uber/h3-py-notebooks/tree/master/notebooks/),
[mybinder](https://mybinder.org/v2/gh/uber/h3-py-notebooks/master?filepath=notebooks),
or execute jupyter notebook from your own terminal.
To execute notebooks locally, you need to install
[`h3-py`](https://github.com/uber/h3-py).


You are more than welcome to contribute new notebooks.
Before we can merge your changes, you must agree to the
[Uber Contributor License Agreement](https://cla-assistant.io/uber/h3).

This repo is licensed under [Apache 2.0 License](LICENSE).
8 changes: 8 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
h3>=3.6.1

jupyterlab
pandas
geopandas
matplotlib
descartes
folium

0 comments on commit d8e3028

Please sign in to comment.