You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/planetary-computer/add-stac-item-to-collection.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,9 +115,8 @@ while True:
115
115
if status notin {"Pending", "Running"}:
116
116
break
117
117
time.sleep(5)
118
-
```
119
118
120
-
Once the items are ingested, use the `/stac/collections/{collection_id}/items` or `/stac/search` endpoints to get a paginated list of items, including your newly ingested items.
119
+
Once the items are ingested, use the `/stac/collections/{collection_id}/items`or`/stac/search` endpoints to get a paginated list of items, including your newly ingested items. If the ingestion fails or you encounter errors, consult the [troubleshooting guide](./troubleshooting-ingestion.md) and the [list of error codes](./error-codes-ingestion.md).
121
120
122
121
```python
123
122
items_response = requests.get(
@@ -174,3 +173,5 @@ Now that you added a few items, you should configure the data for visualization.
174
173
-[Quickstart: Ingest data using the Microsoft Planetary Computer Pro web interface](./ingest-via-web-interface.md)
175
174
-[Ingest data into Microsoft Planetary Computer Pro](./ingestion-overview.md)
176
175
-[Ingestion source for Microsoft Planetary Computer Pro](./ingestion-source.md)
176
+
-[Troubleshooting data ingestion](./troubleshooting-ingestion.md)
177
+
-[Error codes: Microsoft Planetary Computer Pro ingestion](./error-codes-ingestion.md)
Copy file name to clipboardExpand all lines: articles/planetary-computer/bulk-ingestion-api.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -315,7 +315,7 @@ In this final step, we're using the ingestion API to initiate a bulk ingestion w
315
315
else:
316
316
print(f"Failed to create ingestion run: {wf_response.text}")
317
317
318
-
Once the workflow is complete, you can query, retrieve, or visualize your geospatial data using the GeoCatalog STAC or data APIs, or with the Data Explorer.
318
+
Once the workflow is complete, you can query, retrieve, or visualize your geospatial data using the GeoCatalog STAC or data APIs, or with the Data Explorer. If you encounter issues, refer to the [troubleshooting guide](./troubleshooting-ingestion.md) or the list of [ingestion error codes](./error-codes-ingestion.md).
319
319
320
320
## Clean up resources
321
321
@@ -348,3 +348,5 @@ Now that you added a few items, you should configure the data for visualization.
348
348
- [Quickstart: Ingest data using the Microsoft Planetary Computer Pro web interface](./ingest-via-web-interface.md)
349
349
- [Ingest data into Microsoft Planetary Computer Pro](./ingestion-overview.md)
350
350
- [Ingestion sourcefor Microsoft Planetary Computer Pro](./ingestion-source.md)
351
+
- [Troubleshooting data ingestion](./troubleshooting-ingestion.md)
352
+
- [Error codes: Microsoft Planetary Computer Pro ingestion](./error-codes-ingestion.md)
Copy file name to clipboardExpand all lines: articles/planetary-computer/create-stac-item.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -324,6 +324,9 @@ When pointed to a COG file, `rio-stac` automatically extracts and organizes esse
324
324
325
325
This automation significantly reduces the manual work needed to create valid STAC Items and ensures consistency in metadata
326
326
327
+
> [!NOTE]
328
+
> GeoCatalog has limitations on characters that can be used in STAC Item IDs and Asset keys. Ensure that your IDs don't contain the following characters: `-`, `_`, `+`, `(`, `)`, and `.`. You may need to modify the `item_id` generation logic to replace or remove these characters from your filenames.
0 commit comments