|
21 | 21 | # prerequisite: setuptools |
22 | 22 | # http://pypi.python.org/pypi/setuptools |
23 | 23 | NAME = "actinia-openapi-python-client" |
24 | | -VERSION = "0.0.4" |
| 24 | +VERSION = "0.0.5" |
25 | 25 | PYTHON_REQUIRES = ">=3.7" |
26 | 26 | REQUIRES = [ |
27 | 27 | "urllib3 >= 1.25.3, <= 2.2.2", |
|
33 | 33 | setup( |
34 | 34 | name=NAME, |
35 | 35 | version=VERSION, |
36 | | - description="Actinia", |
37 | | - author="OpenAPI Generator community", |
38 | | - |
39 | | - url="", |
40 | | - keywords=["OpenAPI", "OpenAPI-Generator", "Actinia"], |
| 36 | + description="Actinia OpenAPI Python Client", |
| 37 | + author="OpenPlainsInc", |
| 38 | + |
| 39 | + url="https://github.com/OpenPlainsInc/actinia_openapi_python_client", |
| 40 | + keywords=["OpenAPI", "Actinia", "OpenPlains", "GRASS GIS"], |
41 | 41 | install_requires=REQUIRES, |
42 | 42 | packages=find_packages(exclude=["test", "tests"]), |
43 | 43 | include_package_data=True, |
44 | 44 | long_description_content_type='text/markdown', |
45 | 45 | long_description="""\ |
46 | | - ================================ Actinia - The GRASS GIS REST API ================================ **Actinia** is an open source REST API for scalable, distributed, high performance processing of geographical data that uses GRASS GIS for computational tasks. It provides a REST API to process satellite images, time series of satellite images, arbitrary raster data with geographical relations and vector data. The REST interface allows to access, manage and manipulate the GRASS GIS database via HTTP GET,PUT,POST and DELETE requests and to process raster, vector and time series data located in a persistent GRASS GIS database. **Actinia** allows the processing of cloud based data, for example all Landsat 4-8 scenes as well as all Sentinel2A scenes in an ephemeral databases. The computational results of ephemeral processing are available via object storage as GeoTIFF files. The full API documentation is available here: https://redocly.github.io/redoc/?url=https://actinia.mundialis.de/latest/ swagger.json Examples: --------- To execute the examples, first setup login information, IP address and port: export ACTINIA_URL=https://actinia.mundialis.de/latest export AUTH='-u demouser:gu3st!pa55w0rd' **Data management** - List all locations that are available in the actinia persistent database: curl ${AUTH} -X GET \"${ACTINIA_URL}/locations\" - List all mapsets in the location latlong_wgs84: curl ${AUTH} -X GET \"${ACTINIA_URL}/locations/latlong_wgs84/mapsets\" - List all raster layers in location latlong_wgs84 and mapset Sentinel2A curl ${AUTH} -X GET \"${ACTINIA_URL}/locations/latlong_wgs84/mapsets/Sentinel2A/raster_layers\" - List all space-time raster datasets (STRDS) in location ECAD and mapset PERMANENT: curl ${AUTH} -X GET \"${ACTINIA_URL}/locations/ECAD/mapsets/PERMANENT/raster_layers\" - List all raster map layers of the STRDS precipitation_1950_2013_yearly_mm: curl ${AUTH} -X GET \"${ACTINIA_URL}/locations/ECAD/mapsets/PERMANENT/strds/precipitation_ 1950_2013_yearly_mm/raster_layers\" **Landsat and Sentinel2A NDVI computation** This API call will compute the NDVI of the top of atmosphere (TOAR) corrected Landsat4 scene LC80440342016259LGN00: curl ${AUTH} -X POST \"${ACTINIA_URL}/landsat_process/ LC80440342016259LGN00/TOAR/NDVI\" NDVI computation of Sentinel2A scene S2A_MSIL1C_20170212T104141_N0204_R008_T31TGJ_20170212T104138: curl ${AUTH} -X POST \"${ACTINIA_URL}/sentinel2_process/ndvi/ S2A_MSIL1C_20170212T104141_N0204_R008_T31TGJ_20170212T104138\" The results of the asynchronous computations are available as GeoTIFF file in a cloud storage for download. |
| 46 | + # actinia-openapi-python-client |
| 47 | +
|
| 48 | + ## Actinia - The GRASS GIS REST API |
| 49 | +
|
| 50 | + **Actinia** is an open source REST API for scalable, distributed, high |
| 51 | + performance processing of geographical data that uses GRASS GIS for |
| 52 | + computational tasks. |
| 53 | +
|
| 54 | + It provides a REST API to process satellite images, time series of satellite |
| 55 | + images, arbitrary raster data with geographical relations and vector data. |
| 56 | +
|
| 57 | + The REST interface allows to access, manage and manipulate the GRASS GIS |
| 58 | + database via HTTP GET,PUT,POST and DELETE requests and to process raster, |
| 59 | + vector and time series data located in a persistent GRASS GIS database. |
| 60 | + **Actinia** allows the processing of cloud based data, for example all Landsat |
| 61 | + 4-8 scenes as well as all Sentinel2A scenes in an ephemeral databases. The |
| 62 | + computational results of ephemeral processing are available via object storage |
| 63 | + as GeoTIFF files. |
47 | 64 | """, # noqa: E501 |
48 | 65 | package_data={"actinia_openapi_python_client": ["py.typed"]}, |
49 | 66 | ) |
0 commit comments