Worldview 3D (Limited Release)
Ordering and downloading Worldview 3D data is in limited release and is not currently available to all accounts.
Overview
Worldview 3D is an on-demand suite of three-dimensional surface mesh, elevation, and true ortho products that can be generated from stereo image pairs collected on specific dates. Worldview 3D leverages photogrammetric stereo collections that are correlated and enhanced by the global Vivid Terrain 3D Surface Model.
Note: currently supported sensors are WV01, WV02, WV03.
Ordering Worldview 3D Products
This documentation describes the requirements that are specific for ordering Worldview 3D products. To see the full description of an order request, see the Ordering API Guide.
When you place an order for data, you will:
- include the
nameand thenamespacein the URL path. - include the
settingsobject for the pipeline in the order request body.
| Product | Namespace | Name |
|---|---|---|
| Worldview 3D | 3d | rapid |
Supported Requests
The table below lists all requests available for Worldview 3D.
Base URL: https://api.maxar.com
| Request Type | Method | Path | Description |
|---|---|---|---|
| Place an Order | POST | ordering/v1/pipelines/3d/rapid/order | Place an order for Worldview 3D products. |
| Validate Order | POST | ordering/v1/pipelines/3d/rapid/validate | Verify that the order passes validation checks before submission. |
| Estimate Usage | POST | ordering/v1/pipelines/rapid/3d/estimate | Get a usage estimate for an order request before placing the order. |
| Get Order Details | GET | ordering/v1/orders/{orderID} | Get the details and status of an order request. |
| Cancel Order | POST | ordering/v1/orders/{orderid}/cancel | Cancels the order specified in the URL path. Orders cannot be canceled once the delivery process has started. |
Place an order
POST https://api.maxar.com/ordering/v1/pipelines/3D/rapid/order
The following Worldview 3D products are available to order:
- Worldview 3D 3D Surface Model (3DSM)
- Worldview 3D Digital Surface Model (DSM)
- Worldview 3D Bundle (3DSM, DSM, and True Ortho)
The request body for an order includes a settings object. The fields in this object are specific to ordering Worldview 3D.
| Parameter | Required | Description | Allowed Values | Example |
|---|---|---|---|---|
catalog_ids | required | Array of Catalog IDs for each image of the stereo-pair chosen for the Worldview 3D production | Two IDs | “catalog_ids”: [“1030010108287D00”, “103001010885E900”] |
aoi | required | AOI to process | GeoJSON polygon with no holes (10-10,000 sqkm) | see example |
product_name | required | Name of the product or bundle to be ordered | 3dsm, dsm, bundle | “product_name”: [“3dsm”] |
Note: AOIs must be a minimum of 10 sqkm and a maximum of 10,000 sqkm.
Example Worldview 3D settings object
"settings": {
"catalog_ids": ["1030010108287D00", "103001010885E900"],
"aoi": {
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-76.90581392377592,
39.02739413964315
],
[
-76.90581392377592,
38.98574058127778
],
[
-76.83012627216489,
38.98574058127778
],
[
-76.83012627216489,
39.02739413964315
],
[
-76.90581392377592,
39.02739413964315
]
]
]
}},
"product_name": "3dsm",
"infill_stereo_shadows":false
}