Order new or archive geospatial data.
View repositoryConstants
Constant | Description | Value |
---|---|---|
UnitType | The type of unit. | Literal["SQ_KM", "SCENE"] |
A data class that represents errors encountered during order cost estimation or creation.
Attributes
Attribute | Description |
---|---|
index | int The failed geometry index number. |
message | str The error message associated with the failed geometry. |
details | str Error message details. |
A data class that represents references to orders in the system.
Attributes
Attribute | Description |
---|---|
index | int A sequence identifier for the order reference. |
id | str The order ID. |
A data class that represents the cost details of an order.
Attributes
Attribute | Description |
---|---|
index | int The geometry index number. Indexing starts from zero. |
credits | float The estimated cost of the geometry, in credits. |
size | float The size of the geometry. |
unit | UnitType The unit of measurement used to calculate the size. |
A data class that represents the estimated cost of a tasking or catalog order batch.
Attributes
Attribute | Description |
---|---|
items | list[Union[OrderCost, OrderError]] A list of geometries in the estimation. It might include successful cost details ( OrderCost ) or errors encountered during the estimation (OrderError ). |
credits | float The estimate of the order batch cost, in credits. |
size | float The size of the order batch in square kilometers or the number of scenes needed to cover the requested geometry. |
unit | UnitType The unit of measurement used to calculate the size. |
A data class that defines a template for creating and estimating batch orders.
Attributes
Attribute | Description |
---|---|
data_product_id | str The data product ID. |
display_name | str A human-readable name that describes the order. |
tags | list[str] A list of tags that categorize the order. A tag can consist of letters, numbers, spaces, and special characters ( . , - , _ , / , : ). If the list is empty, tags will be removed. |
features | geojson.FeatureCollection A GeoJSON feature collection. |
params | dict Order parameters. |