diff --git a/README.md b/README.md index 42282e4..a0624e0 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,10 @@ A minimal Python library to draw customized maps from OpenStreetMap data. Based on [osmnx](https://github.com/gboeing/osmnx), [matplotlib](https://matplotlib.org/), [shapely](https://shapely.readthedocs.io/en/stable/index.html) and [vsketch](https://github.com/abey79/vsketch) libraries. +## Google Colaboratory Demo + +[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/marceloprates/prettymaps/blob/master/notebooks/examples.ipynb) + ## Installation Install with diff --git a/notebooks/examples.ipynb b/notebooks/examples.ipynb index 12c3210..b8b12c9 100644 --- a/notebooks/examples.ipynb +++ b/notebooks/examples.ipynb @@ -1,5 +1,35 @@ { "cells": [ + { + "cell_type": "markdown", + "source": [ + "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/marceloprates/prettymaps/blob/master/notebooks/examples.ipynb)" + ], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Installation" + ], + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "source": [ + "!pip install git+https://github.com/marceloprates/prettymaps.git" + ], + "outputs": [], + "metadata": {} + }, + { + "cell_type": "markdown", + "source": [ + "# Imports" + ], + "metadata": {} + }, { "cell_type": "code", "execution_count": 1,