Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 1 addition & 22 deletions .generation/input/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -6547,27 +6547,6 @@
}
}
},
"GdalDatasetGeoTransform": {
"type": "object",
"required": [
"originCoordinate",
"xPixelSize",
"yPixelSize"
],
"properties": {
"originCoordinate": {
"$ref": "#/components/schemas/Coordinate2D"
},
"xPixelSize": {
"type": "number",
"format": "double"
},
"yPixelSize": {
"type": "number",
"format": "double"
}
}
},
"GdalDatasetParameters": {
"type": "object",
"description": "Parameters for loading data using Gdal",
Expand Down Expand Up @@ -6608,7 +6587,7 @@
}
},
"geoTransform": {
"$ref": "#/components/schemas/GdalDatasetGeoTransform"
"$ref": "#/components/schemas/GeoTransform"
},
"height": {
"type": "integer",
Expand Down
4 changes: 0 additions & 4 deletions python/.openapi-generator/FILES
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.github/workflows/python.yml
.gitignore
.gitlab-ci.yml
.openapi-generator-ignore
.travis.yml
README.md
docs/AddDataset.md
Expand Down Expand Up @@ -56,7 +55,6 @@ docs/FileNotFoundHandling.md
docs/FormatSpecifics.md
docs/FormatSpecificsCsv.md
docs/GbifDataProviderDefinition.md
docs/GdalDatasetGeoTransform.md
docs/GdalDatasetParameters.md
docs/GdalLoadingInfoTemporalSlice.md
docs/GdalMetaDataList.md
Expand Down Expand Up @@ -341,7 +339,6 @@ geoengine_openapi_client/models/file_not_found_handling.py
geoengine_openapi_client/models/format_specifics.py
geoengine_openapi_client/models/format_specifics_csv.py
geoengine_openapi_client/models/gbif_data_provider_definition.py
geoengine_openapi_client/models/gdal_dataset_geo_transform.py
geoengine_openapi_client/models/gdal_dataset_parameters.py
geoengine_openapi_client/models/gdal_loading_info_temporal_slice.py
geoengine_openapi_client/models/gdal_meta_data_list.py
Expand Down Expand Up @@ -598,7 +595,6 @@ test/test_file_not_found_handling.py
test/test_format_specifics.py
test/test_format_specifics_csv.py
test/test_gbif_data_provider_definition.py
test/test_gdal_dataset_geo_transform.py
test/test_gdal_dataset_parameters.py
test/test_gdal_loading_info_temporal_slice.py
test/test_gdal_meta_data_list.py
Expand Down
2 changes: 1 addition & 1 deletion python/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.18.0
7.17.0
3 changes: 1 addition & 2 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This Python package is automatically generated by the [OpenAPI Generator](https:

- API version: 0.9.0
- Package version: 0.0.30
- Generator version: 7.18.0
- Generator version: 7.17.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.
Expand Down Expand Up @@ -240,7 +240,6 @@ Class | Method | HTTP request | Description
- [FormatSpecifics](docs/FormatSpecifics.md)
- [FormatSpecificsCsv](docs/FormatSpecificsCsv.md)
- [GbifDataProviderDefinition](docs/GbifDataProviderDefinition.md)
- [GdalDatasetGeoTransform](docs/GdalDatasetGeoTransform.md)
- [GdalDatasetParameters](docs/GdalDatasetParameters.md)
- [GdalLoadingInfoTemporalSlice](docs/GdalLoadingInfoTemporalSlice.md)
- [GdalMetaDataList](docs/GdalMetaDataList.md)
Expand Down
2 changes: 0 additions & 2 deletions python/geoengine_openapi_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@
"FormatSpecifics",
"FormatSpecificsCsv",
"GbifDataProviderDefinition",
"GdalDatasetGeoTransform",
"GdalDatasetParameters",
"GdalLoadingInfoTemporalSlice",
"GdalMetaDataList",
Expand Down Expand Up @@ -374,7 +373,6 @@
from geoengine_openapi_client.models.format_specifics import FormatSpecifics as FormatSpecifics
from geoengine_openapi_client.models.format_specifics_csv import FormatSpecificsCsv as FormatSpecificsCsv
from geoengine_openapi_client.models.gbif_data_provider_definition import GbifDataProviderDefinition as GbifDataProviderDefinition
from geoengine_openapi_client.models.gdal_dataset_geo_transform import GdalDatasetGeoTransform as GdalDatasetGeoTransform
from geoengine_openapi_client.models.gdal_dataset_parameters import GdalDatasetParameters as GdalDatasetParameters
from geoengine_openapi_client.models.gdal_loading_info_temporal_slice import GdalLoadingInfoTemporalSlice as GdalLoadingInfoTemporalSlice
from geoengine_openapi_client.models.gdal_meta_data_list import GdalMetaDataList as GdalMetaDataList
Expand Down
60 changes: 30 additions & 30 deletions python/geoengine_openapi_client/api/layers_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1461,7 +1461,7 @@ def autocomplete_handler(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param collection: Layer collection id (required)
:type collection: str
:param search_type: (required)
Expand Down Expand Up @@ -1547,7 +1547,7 @@ def autocomplete_handler_with_http_info(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param collection: Layer collection id (required)
:type collection: str
:param search_type: (required)
Expand Down Expand Up @@ -1633,7 +1633,7 @@ def autocomplete_handler_without_preload_content(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param collection: Layer collection id (required)
:type collection: str
:param search_type: (required)
Expand Down Expand Up @@ -1797,7 +1797,7 @@ def delete_provider(


:param provider: Layer provider id (required)
:type provider: UUID
:type provider: str
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
Expand Down Expand Up @@ -1863,7 +1863,7 @@ def delete_provider_with_http_info(


:param provider: Layer provider id (required)
:type provider: UUID
:type provider: str
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
Expand Down Expand Up @@ -1929,7 +1929,7 @@ def delete_provider_without_preload_content(


:param provider: Layer provider id (required)
:type provider: UUID
:type provider: str
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
Expand Down Expand Up @@ -2048,7 +2048,7 @@ def get_provider_definition(


:param provider: Layer provider id (required)
:type provider: UUID
:type provider: str
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
Expand Down Expand Up @@ -2114,7 +2114,7 @@ def get_provider_definition_with_http_info(


:param provider: Layer provider id (required)
:type provider: UUID
:type provider: str
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
Expand Down Expand Up @@ -2180,7 +2180,7 @@ def get_provider_definition_without_preload_content(


:param provider: Layer provider id (required)
:type provider: UUID
:type provider: str
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
Expand Down Expand Up @@ -2307,7 +2307,7 @@ def layer_handler(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param layer: Layer id (required)
:type layer: str
:param _request_timeout: timeout setting for this request. If one
Expand Down Expand Up @@ -2377,7 +2377,7 @@ def layer_handler_with_http_info(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param layer: Layer id (required)
:type layer: str
:param _request_timeout: timeout setting for this request. If one
Expand Down Expand Up @@ -2447,7 +2447,7 @@ def layer_handler_without_preload_content(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param layer: Layer id (required)
:type layer: str
:param _request_timeout: timeout setting for this request. If one
Expand Down Expand Up @@ -2580,7 +2580,7 @@ def layer_to_dataset(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param layer: Layer id (required)
:type layer: str
:param _request_timeout: timeout setting for this request. If one
Expand Down Expand Up @@ -2650,7 +2650,7 @@ def layer_to_dataset_with_http_info(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param layer: Layer id (required)
:type layer: str
:param _request_timeout: timeout setting for this request. If one
Expand Down Expand Up @@ -2720,7 +2720,7 @@ def layer_to_dataset_without_preload_content(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param layer: Layer id (required)
:type layer: str
:param _request_timeout: timeout setting for this request. If one
Expand Down Expand Up @@ -2853,7 +2853,7 @@ def layer_to_workflow_id_handler(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param layer: Layer id (required)
:type layer: str
:param _request_timeout: timeout setting for this request. If one
Expand Down Expand Up @@ -2923,7 +2923,7 @@ def layer_to_workflow_id_handler_with_http_info(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param layer: Layer id (required)
:type layer: str
:param _request_timeout: timeout setting for this request. If one
Expand Down Expand Up @@ -2993,7 +2993,7 @@ def layer_to_workflow_id_handler_without_preload_content(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param layer: Layer id (required)
:type layer: str
:param _request_timeout: timeout setting for this request. If one
Expand Down Expand Up @@ -3128,7 +3128,7 @@ def list_collection_handler(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param collection: Layer collection id (required)
:type collection: str
:param offset: (required)
Expand Down Expand Up @@ -3206,7 +3206,7 @@ def list_collection_handler_with_http_info(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param collection: Layer collection id (required)
:type collection: str
:param offset: (required)
Expand Down Expand Up @@ -3284,7 +3284,7 @@ def list_collection_handler_without_preload_content(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param collection: Layer collection id (required)
:type collection: str
:param offset: (required)
Expand Down Expand Up @@ -3986,7 +3986,7 @@ def provider_capabilities_handler(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
Expand Down Expand Up @@ -4052,7 +4052,7 @@ def provider_capabilities_handler_with_http_info(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
Expand Down Expand Up @@ -4118,7 +4118,7 @@ def provider_capabilities_handler_without_preload_content(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
Expand Down Expand Up @@ -5295,7 +5295,7 @@ def search_handler(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param collection: Layer collection id (required)
:type collection: str
:param search_type: (required)
Expand Down Expand Up @@ -5381,7 +5381,7 @@ def search_handler_with_http_info(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param collection: Layer collection id (required)
:type collection: str
:param search_type: (required)
Expand Down Expand Up @@ -5467,7 +5467,7 @@ def search_handler_without_preload_content(


:param provider: Data provider id (required)
:type provider: UUID
:type provider: str
:param collection: Layer collection id (required)
:type collection: str
:param search_type: (required)
Expand Down Expand Up @@ -6190,7 +6190,7 @@ def update_provider_definition(


:param provider: Layer provider id (required)
:type provider: UUID
:type provider: str
:param typed_data_provider_definition: (required)
:type typed_data_provider_definition: TypedDataProviderDefinition
:param _request_timeout: timeout setting for this request. If one
Expand Down Expand Up @@ -6260,7 +6260,7 @@ def update_provider_definition_with_http_info(


:param provider: Layer provider id (required)
:type provider: UUID
:type provider: str
:param typed_data_provider_definition: (required)
:type typed_data_provider_definition: TypedDataProviderDefinition
:param _request_timeout: timeout setting for this request. If one
Expand Down Expand Up @@ -6330,7 +6330,7 @@ def update_provider_definition_without_preload_content(


:param provider: Layer provider id (required)
:type provider: UUID
:type provider: str
:param typed_data_provider_definition: (required)
:type typed_data_provider_definition: TypedDataProviderDefinition
:param _request_timeout: timeout setting for this request. If one
Expand Down
Loading