Skip to content

Commit c287ded

Browse files
committed
fixing linkage between articles
1 parent c9e7474 commit c287ded

7 files changed

Lines changed: 32 additions & 6 deletions

articles/planetary-computer/application-authentication.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,10 @@ If you can't use `DefaultAzureCredentials()` and instead use other methods such
119119
## Next steps
120120

121121
> [!div class="nextstepaction"]
122-
> [Build Applications with Microsoft Planetary Computer Pro](./use-explorer.md)
122+
> [Building applications with Microsoft Planetary Computer Pro](./build-applications-with-planetary-computer-pro.md)
123123
124124
## Related content
125125

126+
- [Build a web application with Microsoft Planetary Computer Pro](./build-web-application.md)
127+
- [Use Azure Batch with Microsoft Planetary Computer Pro](./azure-batch.md)
126128
- [Manage access for Microsoft Planetary Computer Pro](./manage-access.md)

articles/planetary-computer/azure-batch.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,8 @@ az batch task file download \
212212

213213
## Related content
214214

215+
- [Building applications with Microsoft Planetary Computer Pro](./build-applications-with-planetary-computer-pro.md)
216+
- [Configure application authentication for Microsoft Planetary Computer Pro](./application-authentication.md)
215217
- For more information about managed identities in batch pools, see [Configure managed identities in Batch pools](/azure/batch/managed-identity-pools) documentation.
216218

217219
- For more information about how to deploy files to your Batch account, see [Copy applications and data to pool nodes](/azure/batch/batch-applications-to-pool-nodes), [Deploy applications to compute nodes with Batch application packages](/azure/batch/batch-application-packages), and [Creating and using resource files](/azure/batch/resource-files).

articles/planetary-computer/build-applications-with-planetary-computer-pro.md

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,17 @@ The primary way to integrate with Planetary Computer Pro is through its REST API
3838
| SAS API | Generate secure, time-limited access tokens for sharing geospatial data. |
3939
| Ingestion API | Ingest and transform new geospatial datasets into the GeoCatalog. |
4040

41-
These APIs support [standard authentication through Microsoft Entra ID](/entra/architecture/guide-for-independent-software-developers), enabling secure access to your resources. Integrating your web application requires the use of [application authentication](./application-authentication.md). Once your app is registered with Microsoft Entra, it can securely use the APIs to access all data inside a GeoCatalog.
41+
These APIs support [standard authentication through Microsoft Entra ID](/entra/architecture/guide-for-independent-software-developers), enabling secure access to your resources. Integrating your application requires the use of [application authentication](./application-authentication.md). Once your app is registered with Microsoft Entra, it can securely use the APIs to access all data inside a GeoCatalog.
42+
43+
For a complete walkthrough of building a browser-based application that uses these APIs, see [Build a web application with Microsoft Planetary Computer Pro](./build-web-application.md).
4244

4345
The [REST API is detailed in the API reference](/rest/api/planetarycomputer).
4446

45-
### Fist Party Application Support
47+
### First-party application support
4648

47-
Planetary Computer Pro has a built-in application called Explorer which allows users to visualize ingested data in a GeoCatalog resource from their browser. Once the data is [configured for visualization](./collection-configuration-concept.md), it can be [used in the explorer](./use-explorer.md).
49+
Planetary Computer Pro has a built-in application called Explorer that allows users to visualize ingested data in a GeoCatalog resource from their browser. Once the data is [configured for visualization](./collection-configuration-concept.md), it can be [used in the Explorer](./use-explorer.md).
4850

49-
In more, by using [the API services](#direct-api-integration), data in Planetary Computer Pro can be integrated with first party Microsoft applications such as [Fabric](/fabric) and [Azure Machine Learning](/azure/machine-learning/overview-what-is-azure-machine-learning).
51+
By using [the API services](#direct-api-integration), data in Planetary Computer Pro can be integrated with first-party Microsoft applications such as [Fabric](/fabric) and [Azure Machine Learning](/azure/machine-learning/overview-what-is-azure-machine-learning).
5052

5153
### GIS application connectivity
5254

@@ -79,8 +81,23 @@ All applications that interact with Planetary Computer Pro must authenticate pro
7981

8082
For detailed authentication guidance, see [Set up application authentication for Planetary Computer Pro](./application-authentication.md).
8183

84+
## Choose your integration path
85+
86+
Select the approach that best fits your use case:
87+
88+
| Use case | Recommended approach | Get started |
89+
|----------|---------------------|-------------|
90+
| **Explore data without coding** | Use the built-in Explorer web application | [Use the Explorer](./use-explorer.md) |
91+
| **Build a custom web application** | Browser-based app with JavaScript/TypeScript using MSAL.js | [Build a web application](./build-web-application.md) |
92+
| **Desktop GIS with ArcGIS Pro** | Connect ArcGIS Pro directly to GeoCatalog | [Configure ArcGIS Pro](./create-connection-arc-gis-pro.md) |
93+
| **Desktop GIS with QGIS** | Connect QGIS to GeoCatalog via STAC | [Configure QGIS](./configure-qgis.md) |
94+
| **Batch processing on Azure** | Run processing jobs with Azure Batch and managed identity | [Use Azure Batch](./azure-batch.md) |
95+
| **Backend/server-side integration** | Python applications using managed identity or service principal | [Configure application authentication](./application-authentication.md) |
8296

8397
## Related content
8498

99+
- [Build a web application with Microsoft Planetary Computer Pro](./build-web-application.md)
100+
- [Use Azure Batch with Microsoft Planetary Computer Pro](./azure-batch.md)
85101
- [Connect ArcGIS Pro to Microsoft Planetary Computer Pro](./create-connection-arc-gis-pro.md)
102+
- [Configure QGIS to access a GeoCatalog resource](./configure-qgis.md)
86103
- [Manage access to Microsoft Planetary Computer Pro](./manage-access.md)

articles/planetary-computer/build-web-application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ After registration, note the following values from the **Overview** page:
8585
Your application needs permission to call the GeoCatalog API on behalf of signed-in users:
8686

8787
1. In your app registration, select **API permissions** > **Add a permission**.
88-
1. Select **APIs my organization uses** and search for **Azure Orbital Planetary Computer**.
88+
1. Select **APIs my organization uses** and search for **Azure Orbital Spatio**.
8989
1. Select **Delegated permissions** and check **user_impersonation**.
9090
1. Select **Add permissions**.
9191
1. If you're an admin, select **Grant admin consent** to consent on behalf of all users in your tenant.

articles/planetary-computer/configure-qgis.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,8 @@ If you want to search for data or run a STAC filter in your catalog, the STAC AP
153153

154154
## Related content
155155

156+
- [Building applications with Microsoft Planetary Computer Pro](./build-applications-with-planetary-computer-pro.md)
157+
- [Configure ArcGIS Pro to access a GeoCatalog](./create-connection-arc-gis-pro.md)
156158
- [Configure the Planetary Computer collection web interface](./configure-collection-web-interface.md)
157159
- [Create a connection from ArcGIS Pro to the STAC API](./create-connection-arc-gis-pro.md)
158160
- [Use the Planetary Computer Explorer](./use-explorer.md)

articles/planetary-computer/create-connection-arc-gis-pro.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,8 @@ There are two easy ways to discover the storage account and blob container for a
510510
511511
## Related content
512512
513+
- [Building applications with Microsoft Planetary Computer Pro](./build-applications-with-planetary-computer-pro.md)
514+
- [Configure QGIS to access a GeoCatalog resource](./configure-qgis.md)
513515
- [Create a cloud storage connection file](https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/create-cloud-storage-connection-file.htm)
514516
- [Create a new GeoCatalog](./deploy-geocatalog-resource.md)
515517
- [Create a STAC collection](./create-stac-collection.md)

articles/planetary-computer/use-explorer.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ You can set a thumbnail for a collection, the image that represents that collect
160160

161161
## Related content
162162

163+
* [Building applications with Microsoft Planetary Computer Pro](./build-applications-with-planetary-computer-pro.md)
163164
* [Create a GeoCatalog](./deploy-geocatalog-resource.md)
164165
* [Create a collection](./create-stac-collection.md)
165166
* [Ingest STAC items](./ingestion-source.md)

0 commit comments

Comments
 (0)