├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── package.json ├── remotepixel_api ├── __init__.py ├── cbers.py ├── elevation.py ├── landsat.py └── sentinel.py ├── serverless.yml ├── services ├── cbers.yml ├── landsat.yml └── sentinel.yml └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/package.json -------------------------------------------------------------------------------- /remotepixel_api/__init__.py: -------------------------------------------------------------------------------- 1 | # remotepixel_api 2 | 3 | __version__ = '3.1.0' 4 | -------------------------------------------------------------------------------- /remotepixel_api/cbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/remotepixel_api/cbers.py -------------------------------------------------------------------------------- /remotepixel_api/elevation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/remotepixel_api/elevation.py -------------------------------------------------------------------------------- /remotepixel_api/landsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/remotepixel_api/landsat.py -------------------------------------------------------------------------------- /remotepixel_api/sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/remotepixel_api/sentinel.py -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/serverless.yml -------------------------------------------------------------------------------- /services/cbers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/services/cbers.yml -------------------------------------------------------------------------------- /services/landsat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/services/landsat.yml -------------------------------------------------------------------------------- /services/sentinel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/services/sentinel.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemotePixel/remotepixel-api/HEAD/setup.py --------------------------------------------------------------------------------