This task creates a Cloud Optimized GeoTIFF from a standard GeoTIFF input image.
- Docker
- Python 2.7
docker build -t cloud-optimized-geotiff:<version> -f ./src/Dockerfile ./src
# Push versioned image
docker tag cloud-optimized-geotiff:0.2.1 jonduckworthdg/cloudoptimizedgeotiff:0.2.1
docker push jonduckworthdg/cloudoptimizedgeotiff:0.2.1
# Push latest image
docker tag cloud-optimized-geotiff:0.2.1 jonduckworthdg/cloudoptimizedgeotiff:latest
docker push jonduckworthdg/cloudoptimizedgeotiff:latest
-
Create a
test/data
folder with the following subfolders:input
output
-
Place a standard GeoTIFF file in
test-data/input
-
Create a
test-data/input/ports.json
file with the following format:{ "images": "my_image_id.tif" }
-
Run
docker-compose up geotiff-test
from this directory to mount all of the proper data directories and run the task.
Note: This will also mount all python code in the current directory to /src/*.py
in the container so you can make changes to the source code and re-run without rebuilding the image. Be sure to re-build the image after completing your changes and before you re-deploy the task.
- Make any necessary changes to ./src/task-definition.json
- Run utility to register task:
$ python ./scripts/register_task.py --help
Usage: register_task.py [OPTIONS] TASK_DEFINITION
Register this task with GBDX using the provided version.
Options:
--version TEXT The task version to deploy. If not provided, defaults to the
current version in the task definition.
--help Show this message and exit.