This repo contains all materials used on Planet's training workshops. Below you will find environment set up instructions, decks and other learning resources to have you started on using Planet's APIs and tools.
This is a public Planet repository so you don't have to SSH authenticate to clone to your local environment. You can simply use
git clone git@github.com:planetlabs/training-workshop.git
In case you do have to authenticate, you'll have to make sure your SSH keys are added to your Github profile. Only in case you don't have SSH keys already, generate them using
ssh-keygen -t rsa
Press enter when asked if you want to save the keys to id_rsa and, if you want, enter a passphrase when asked to.
Print out your keys, copy them and add them to your Github's saved keys.
cat .ssh/id_rsa.pub
The following tools are regularly used in Planet School's guides:
- Python 3x (Note: Python 2.7 is in legacy support)
- cURL
- requests
- retrying
- jq
- geojsonio-cli
If you choose to follow along with code here, you may find it useful to install these libraries in your development environment. You can do this by yourself both installing each library individually,
$ pip install requests
$ pip install retrying
$ pip install jq
# Requires Node.js
$ npm install -g geojsonio-cli
or installing from our pre-defined requirements file (it install a bit more than what shown above)
pip install -r requirements.txt --user
When working with datasets like Planet's satellite imagery, here are a few useful Python libraries to know:
Rasterio is a free and open source library for working with geospatial raster imagery. Rasterio is used extensively in the Python code that you'll find through Planet School, as well as in most Jupyter Notebooks in Planet's open source Notebook collection.
Fiona is a sibling library to Rasterio used when working with geospatial vector data. While less frequently used in Planet's developer resources, Fiona can still come in handy when, for example, creating or manipulating an AOI (Area of Interest) vector dataset.
NumPy and MatPlotLib can be used to manipulate, plot, and display raster data that has been loaded via Rasterio.
Visit our learning hub: Planet's Developer Center. Explore Planet's API docs, references, tutorials, and developer tools: everything you need to start building with Planet today.
All tailored training decks will be available here once the workhops kick off. Below you can find some links to already publicly available resources
Some useful links: