├── .gitignore ├── Makefile ├── README.md ├── requirements.txt ├── scripts └── build.sh ├── src └── handler.py └── test └── event.json /.gitignore: -------------------------------------------------------------------------------- 1 | dist.zip 2 | build 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perrygeo/lambda-rasterio/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perrygeo/lambda-rasterio/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | rasterio>=1.0a2 2 | boto3 3 | -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perrygeo/lambda-rasterio/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /src/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perrygeo/lambda-rasterio/HEAD/src/handler.py -------------------------------------------------------------------------------- /test/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perrygeo/lambda-rasterio/HEAD/test/event.json --------------------------------------------------------------------------------