Skip to content

Commit b04eb6d

Browse files
committed
use lightboxes for images
1 parent 5bb0c9f commit b04eb6d

21 files changed

+129
-118
lines changed

articles/planetary-computer/application-authentication.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,19 +73,19 @@ Below is a step-by-step example showing how to configure Role-Based Access Contr
7373

7474
1. On Azure portal go to Microsoft Planetary Computer Pro resource IAM tab on the left.
7575

76-
:::image type="content" source="media/role-based-access-control-identity-access-management-blade.png" alt-text="Screenshot of the IAM blade in the Azure portal for configuring RBAC.":::
76+
[ ![Screenshot of the IAM blade in the Azure portal for configuring RBAC.](media/role-based-access-control-identity-access-management-blade.png) ](media/role-based-access-control-identity-access-management-blade.png#lightbox)
7777

7878
1. Select on **Add role Assignment** and then select **GeoCatalog Administrator** under "Job function roles"
7979

80-
:::image type="content" source="media/role-based-access-control-role-assignment.png" alt-text="Screenshot of the role assignment selection in the Azure portal.":::
80+
[ ![Screenshot of the role assignment selection in the Azure portal.](media/role-based-access-control-role-assignment.png) ](media/role-based-access-control-role-assignment.png#lightbox)
8181

8282
1. Select the **Next** button and then select radio button of **Managed identity**
8383

84-
:::image type="content" source="media/role-based-access-control-managed-id.png" alt-text="Screenshot of the managed identity selection in the Azure portal.":::
84+
[ ![Screenshot of the managed identity selection in the Azure portal.](media/role-based-access-control-managed-id.png) ](media/role-based-access-control-managed-id.png#lightbox)
8585

8686
1. Select on **Select members** and select the subscription and the User-assigned managed identity on the **Select managed identities** pane on the right-hand side.
8787

88-
:::image type="content" source="media/role-based-access-control-selected-members.png" alt-text="Screenshot of the selected members pane in the Azure portal.":::
88+
[ ![Screenshot of the selected members pane in the Azure portal.](media/role-based-access-control-selected-members.png) ](media/role-based-access-control-selected-members.png#lightbox)
8989

9090
1. Select on **Next** to verify the information and finish **review + assign**.
9191

articles/planetary-computer/azure-batch.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -87,30 +87,30 @@ az identity create \
8787
Create a pool of compute nodes using the Azure Portal:
8888

8989
1. In the Azure portal, navigate to your Batch account and select **Pools**:
90-
:::image type="content" source="media/batch-pools-overview.png" alt-text="Screenshot of the Azure portal showing the Pools section of a Batch account, with options to add and manage pools.":::
90+
[ ![Screenshot of the Azure portal showing the Pools section of a Batch account, with options to add and manage pools.](media/batch-pools-overview.png) ](media/batch-pools-overview.png#lightbox)
9191
1. Select **+ Add** to create a new pool and select **User-assigned** as the pool's identity:
92-
:::image type="content" source="media/add-batch-pool.png" alt-text="Screenshot of the Azure portal showing the Add Pool page, where users can configure settings for a new pool, including identity, operating system, and VM size.":::
92+
[ ![Screenshot of the Azure portal showing the Add Pool page, where users can configure settings for a new pool, including identity, operating system, and VM size.](media/add-batch-pool.png) ](media/add-batch-pool.png#lightbox)
9393
1. Select the User Assigned Managed Identity you created earlier:
94-
:::image type="content" source="media/select-user-assigned-identity.png" alt-text="Screenshot of the Azure portal showing the selection of a User Assigned Managed Identity for the Batch pool.":::
94+
[ ![Screenshot of the Azure portal showing the selection of a User Assigned Managed Identity for the Batch pool.](media/select-user-assigned-identity.png) ](media/select-user-assigned-identity.png#lightbox)
9595
1. Select your preferred operating system and VM size. In this demo, we use Ubuntu Server 20.04 LTS:
96-
:::image type="content" source="media/select-pool-settings.png" alt-text="Screenshot of the Azure portal showing the VM size selection page for the Batch pool, where users can choose the virtual machine size and configuration for their compute nodes.":::
96+
[ ![Screenshot of the VM size selection page for the Batch pool, where users can choose the virtual machine size and configuration for their compute nodes.](media/select-pool-settings.png) ](media/select-pool-settings.png#lightbox)
9797
1. Enable **Start Task**, set the following **Command line**: `bash -c "apt-get update && apt-get install jq python3-pip -y && curl -sL https://aka.ms/InstallAzureCLIDeb | bash"` and set **Elevation level** to **Pool autouser, Admin**:
98-
:::image type="content" source="media/start-task-configuration-page.png" alt-text="Screenshot of the Start Task configuration page for a Batch pool. The page includes fields to specify a command line script, elevation level, and other settings for initializing compute nodes.":::
98+
[ ![Screenshot of the Start Task configuration page for a Batch pool. The page includes fields to specify a command line script, elevation level, and other settings for initializing compute nodes.](media/start-task-configuration-page.png) ](media/start-task-configuration-page.png#lightbox)
9999
1. Select **OK** to create the pool.
100100

101101
## Assign Permissions to the Managed Identity
102102

103103
You need to provide the managed identity access to the GeoCatalog. Go to your GeoCatalog, select on **Access control (IAM)** and select **Add role assignment**:
104104

105-
:::image type="content" source="media/add-role-assignment-page.png" alt-text="Screenshot of the Azure portal showing the Add role assignment page. The page includes fields to select a role, assign access to a user, group, or managed identity, and review the assignment before confirming.":::
105+
[ ![Screenshot of the Azure portal showing the Add role assignment page. The page includes fields to select a role, assign access to a user, group, or managed identity, and review the assignment before confirming.](media/add-role-assignment-page.png) ](media/add-role-assignment-page.png#lightbox)
106106

107107
Select the appropriate role based on your needs, `GeoCatalog Administrator` or `GeoCatalog Reader`, and select **Next**:
108108

109-
:::image type="content" source="media/select-role.png" alt-text="Screenshot of the Azure portal showing the Select role page. The page includes a dropdown menu to choose a role, such as GeoCatalog Administrator or GeoCatalog Reader, and a button to proceed to the next step.":::
109+
[ ![Screenshot of the Azure portal showing the Select role page. The page includes a dropdown menu to choose a role, such as GeoCatalog Administrator or GeoCatalog Reader, and a button to proceed to the next step.](media/select-role.png) ](media/select-role.png#lightbox)
110110

111111
Select the managed identity you created and then select **Review + assign**.
112112

113-
:::image type="content" source="media/select-review-assign.png" alt-text="Screenshot of the Azure portal showing the Select identity page. The page includes a list of available managed identities, allowing users to choose the identity they want to assign to the Batch pool.":::
113+
[ ![Screenshot of the Azure portal showing the Select identity page. The page includes a list of available managed identities, allowing users to choose the identity they want to assign to the Batch pool.](media/select-review-assign.png) ](media/select-review-assign.png#lightbox)
114114

115115
## Prepare the Batch Job
116116

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Microsoft Planetary Computer Pro offers APIs and connectors that enable develope
2424

2525
Planetary Computer Pro supports multiple integration approaches depending on your application's requirements. You can build applications that access Planetary Computer Pro's data and services in several ways:
2626

27-
:::image type="content" source="media/build_apps_diagram.png" alt-text="Diagram illustrating how to build applications with Microsoft Planetary Computer Pro, showing integration points, APIs, and supported workflows.":::
27+
[ ![Diagram illustrating how to build applications with Microsoft Planetary Computer Pro, showing integration points, APIs, and supported workflows.](media/build-apps-diagram.png) ](media/build_apps_diagram.png#lightbox)
2828

2929
### Direct API integration
3030

articles/planetary-computer/bulk-ingestion-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.date: 04/18/2024
1313

1414
This article shows you how to ingest many geospatial data assets at once into a GeoCatalog using the Bulk Ingestion API. First, we create and configure a GeoCatalog Ingestion Source. Creating an Ingestion Source establishes a secure connection between a GeoCatalog resource and the storage location for your existing geospatial data. Next, we create a SpatioTemporal Access Catalog (STAC) Collection within your GeoCatalog resource to store the data being ingested. Finally, we use the Bulk Ingestion API to initiate the ingestion workflow. When you're finished completing these steps, your geospatial data is ingested and accessible from the GeoCatalog UIs and APIs.
1515

16-
:::image type="content" source="media/static-catalog-import.png" alt-text="Diagram illustrating the static catalog import process for GeoCatalog, showing data flow from storage to GeoCatalog via the Bulk Ingestion API.":::
16+
[ ![Diagram illustrating the static catalog import process for GeoCatalog, showing data flow from storage to GeoCatalog via the Bulk Ingestion API.](media/static-catalog-import.png) ](media/static-catalog-import.png#lightbox)
1717

1818
## Prerequisites
1919

articles/planetary-computer/configure-collection-web-interface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ To configure a collection in the Microsoft Planetary Computer Pro web interface,
3333

3434
2. The **Configure collection** panel opens and there are tabs for **Mosaic**, **Render**, **Tile Settings**, and **Queryables**, each of which you can define in JSON format. You can either write your own JSON or load and modify a template.
3535

36-
:::image type="content" source="./media/collection-configuration-web-interface.jpeg" alt-text="Screenshot of collection config in web interface.":::
36+
[ ![Screenshot of collection config in web interface.](./media/collection-configuration-web-interface.jpeg) ](./media/collection-configuration-web-interface.jpeg#lightbox)
3737

3838
| Configuration | Purpose | Quick Start |
3939
|--------------------|---------|-----------------|

articles/planetary-computer/create-collection-web-interface.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,29 @@ To complete this quickstart, you need:
2424

2525
The Microsoft Planetary Computer Pro web interface is a web-based platform that allows you to manage your geospatial data. **You can access the web interface by using the URI provided in your GeoCatalog resource in Azure portal:***
2626

27-
:::image type="content" source="./media/geocatalog-uri-example.jpeg" alt-text="Screenshot of URI in geocatalog resource in Azure portal.":::
27+
[ ![Screenshot of URI in geocatalog resource in Azure portal.](media/geocatalog-uri-example.jpeg) ](media/geocatalog-uri-example.jpeg#lightbox)
2828

2929
Upon entering the web interface, you land on the Planetary Computer Pro page, showing your recent collections (if any) and a button to create a new one.
3030

31-
:::image type="content" source="./media/landing-page.jpeg" alt-text="Screenshot of Planetary Computer Pro landing page.":::
31+
[ ![Screenshot of Planetary Computer Pro landing page.](./media/landing-page.jpeg) ](./media/landing-page.jpeg#lightbox)
3232

3333
The **Collections** page provides you with a full list of your collections, including their names, descriptions, date created, and a collection thumbnail. You can also search for collections by name or description keywords, and create a new collection from this page.
34-
:::image type="content" source="./media/collections-page.jpeg" alt-text="Screenshot of Planetary Computer Pro collections page.":::
34+
35+
[ ![Screenshot of Planetary Computer Pro collections page.](./media/collections-page.jpeg) ](./media/collections-page.jpeg#lightbox)
3536

3637
The **Settings** page allows you to create and manage ingestion sources, which is a critical first step in data ingestion. You can learn more about ingestion in [Ingestion overview](./ingestion-overview.md).
37-
:::image type="content" source="./media/settings-page.jpeg" alt-text="Screenshot of Planetary Computer Pro settings page.":::
38+
39+
[ ![Screenshot of Planetary Computer Pro settings page.](./media/settings-page.jpeg) ](./media/settings-page.jpeg#lightbox)
3840

3941
The **Explorer** page is where you can visualize your data on a map. Here, you can search for collections, filter by STAC metadata, and visualize assets. Learn how to use the Explorer in [Quickstart: Use the Microsoft Planetary Computer Pro Explorer](./use-explorer.md).
40-
:::image type="content" source="./media/explorer-page.jpeg" alt-text="Screenshot of Planetary Computer Pro Explorer page.":::
42+
43+
[ ![Screenshot of Planetary Computer Pro Explorer page.](./media/explorer-page.jpeg) ](./media/explorer-page.jpeg#lightbox)
4144

4245
## Create a collection
4346

4447
1. Whether you are on the Planetary Computer Pro landing page or the Collections page, you can select the **Create Collection** button. This takes you to the **Create Collection** panel, where you enter the details of your collection in JSON format adhering to the [STAC specification](https://github.com/radiantearth/stac-spec/blob/master/collection-spec/collection-spec.md).
45-
:::image type="content" source="./media/create-collection-panel.jpeg" alt-text="Screenshot of Create Collection panel.":::
48+
49+
[ ![Screenshot of Create Collection panel.](./media/create-collection-panel.jpeg) ](./media/create-collection-panel.jpeg#lightbox)
4650

4751
2. In the **Create Collection** panel's JSON editor, the options are:
4852
* Write your own collection JSON
@@ -71,7 +75,8 @@ The **Explorer** page is where you can visualize your data on a map. Here, you c
7175
> | `item_assets` | [**Required for Visualization**](./render-configuration.md#step-1-define-item_assets-in-your-collection-json) | A dictionary of assets that can be found in member items. |
7276
7377
3. Once the JSON is complete, select the **Create** button to create your collection. This selection takes you to the **Overview** tab of your collection, where you can view and edit your collection's metadata, manage your data ingestions, and [configure your collection for visualization in the Explorer](./collection-configuration-concept.md).
74-
:::image type="content" source="./media/collection-overview.jpeg" alt-text="Screenshot of Collection overview page.":::
78+
79+
[ ![Screenshot of Collection overview page.](./media/collection-overview.jpeg) ](./media/collection-overview.jpeg#lightbox)
7580

7681
## Next steps
7782
Now that you have a collection, you can now ingest data into it.

articles/planetary-computer/create-stac-item.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ print(f"Extracted File Name: {file_name}")
160160
display_tif_from_url(file_url, file_name)
161161
```
162162

163-
:::image type="content" source="media/create-stac-item.png" alt-text="A grayscale visualization of geospatial raster data from a GOES-18 satellite, showing land surface temperature patterns across a region.":::
163+
[ ![A grayscale visualization of geospatial raster data from a GOES-18 satellite, showing land surface temperature patterns across a region.](media/create-stac-item.png) ](media/create-stac-item.png#lightbox)
164164

165165
From looking at the data and the file name, we can already see the key pieces of metadata needed to build the STAC Item. The file name contains information about which satellite captured the data and when it was captured.
166166

articles/planetary-computer/delete-geocatalog-resource.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ Before you continue with the deletion steps, make sure you're ready to delete th
3131

3232
1. Navigate to your GeoCatalog resource within the Azure portal.
3333

34-
:::image type="content" source="media/geocatalog-resource.png" alt-text="Screenshot of the Azure portal showing the GeoCatalog resource page with the 'Delete' button highlighted.":::
34+
[ ![Screenshot of the Azure portal showing the GeoCatalog resource page with the 'Delete' button highlighted.](media/delete-geocatalog-resource.png) ](media/delete-geocatalog-resource.png#lightbox)
3535

3636
1. From within the GeoCatalog Azure portal page, select **Delete**. You're presented with a **Delete resource** confirmation dialog box.
3737

3838
> [!NOTE]
3939
> **Selecting "Yes" will *immediately* begin deleting this resource.**
4040
41-
:::image type="content" source="media/delete-geocatalog-resource.png" alt-text="Screenshot of the Azure portal showing the GeoCatalog resource page. The 'Delete' button is highlighted, indicating where users can select to initiate the deletion process for the GeoCatalog resource.":::
41+
[ ![Screenshot of the Azure portal showing the GeoCatalog resource page. The 'Delete' button is highlighted, indicating where users can select to initiate the deletion process for the GeoCatalog resource.](media/delete-geocatalog-resource.png) ](media/delete-geocatalog-resource.png#lightbox)
4242

4343
## Next Steps
4444
- [Get Started With Microsoft Planetary Computer Pro](./get-started-planetary-computer.md)

0 commit comments

Comments
 (0)