eoAPI
[Active Development] Earth Observation API (Metadata, Raster and Vector services)
File Explorer
- bug_report.md
- config.yml
- deploy_mkdocs.yml
- dependabot.yml
- settings.json
- CMIP6_daily_GISS-E2-1-G_tas_collection.json
- generate_cmip6_items.ipynb
- seed-db.sh
- demo.ipynb
- facebook_collection.json
- facebook_items.json
- README.md
- eoAPI_Maxar_demo.ipynb
- demo.ipynb
- noaa-emergency-response.json
- noaa-eri-nashville2020.json
- README.md
- OpenAerialMap_demo.ipynb
- README.md
- wait-for-it.sh
- browser_config.js
- Dockerfile.browser
- eoAPI.png
- eoAPI_logo_large.png
- eoAPI_logo_medium.png
- eoAPI_logo_no_text_large.png
- eoAPI_logo_small.png
- index.md
- aws_logo.svg
- devseed_logo.svg
- downloaddeploy.png
- earth.jpg
- eoAPI.png
- eoapi_veda.png
- favicon.ico
- ingestdata.png
- logo.png
- msft_logo.svg
- nasa_logo.svg
- NASA_SunEarth.jpg
- pgstac_logo.png
- sharevisualize.png
- stacfastapi_logo.png
- tipg_logo.png
- titilerpgstac_logo.png
- eoAPI_Maxar_Hawaii_demo.ipynb
- eoAPI_Maxar_Kahramanmaras_demo.ipynb
- getting-started.ipynb
- home.css
- plausible.html
- extra.css
- home.html
- main.html
- CNAME
- contributing.md
- customization.md
- deployment.md
- index.md
- intro.md
- services.md
- mkdocs.yml
- requirements.txt
- .dockerignore
- .gitignore
- CONTRIBUTING.md
- docker-compose.yml
- LICENSE
- Makefile
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
docker compose up
View Details ▼
docker compose up
Start and run Docker services defined in a Compose file.
docker compose up
Start all services defined in the docker-compose file:
docker compose up {{[-d|--detach]}}
Start services in the background (detached mode):
docker compose up --build
Start services and rebuild images before starting:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
virtualenv
View Details ▼
virtualenv
Create virtual isolated Python environments.
virtualenv {{path/to/venv}}
Create a new environment:
virtualenv --prompt {{prompt_prefix}} {{path/to/venv}}
Customize the prompt prefix:
virtualenv {{[-p|--python]}} {{path/to/pythonbin}} {{path/to/venv}}
Use a different version of Python with virtualenv:
