Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TECHDOCS-4676: Update read-from-versioned-layer.md to change DHC links to Zoomin links #526

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/read-from-versioned-layer.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ App works!

## Create `VersionedLayerClient`

You can use the `VersionedLayerClient` object to request any data and partition metadata version from a [versioned layer](https://developer.here.com/documentation/data-user-guide/portal/layers/layers.html#versioned-layers). When you request a particular version of data from the versioned layer, the partition you receive in the response may have a lower version number than you requested. The version of a layer or partition represents the catalog version in which the layer or partition was last updated.
You can use the `VersionedLayerClient` object to request any data and partition metadata version from a [versioned layer](https://www.here.com/docs/bundle/data-api-developer-guide/page/rest/layers.html#versioned-layers). When you request a particular version of data from the versioned layer, the partition you receive in the response may have a lower version number than you requested. The version of a layer or partition represents the catalog version in which the layer or partition was last updated.

**To create the `VersionedLayerClient` object:**

Expand All @@ -91,7 +91,7 @@ You can use the `VersionedLayerClient` object to request any data and partition

## Get partition metadata from a versioned layer

Partition metadata from a [versioned layer](https://developer.here.com/documentation/data-user-guide/portal/layers/layers.html#versioned-layers) consists of the following information about the partition:
Partition metadata from a [versioned layer](https://www.here.com/docs/bundle/data-api-developer-guide/page/rest/layers.html#versioned-layers) consists of the following information about the partition:

- Data handle
- ID
Expand All @@ -105,7 +105,7 @@ You can get partition metadata in one of the following ways:
- Using the Metadata Service API
- Using the Query Service API

You can get partition metadata using the Query Service API only if the partition has the HERE tile scheme. For more information on the HERE tile scheme, see [Partitions](https://developer.here.com/documentation/data-user-guide/portal/layers/partitions.html).
You can get partition metadata using the Query Service API only if the partition has the HERE tile scheme. For more information on the HERE tile scheme, see [Partitions](https://www.here.com/docs/bundle/data-api-developer-guide/page/rest/partitions.html).

For performance reasons, it is best to use the Query Service API only to get metadata for a specific partition. For batch processes, and to get metadata for many partitions or all partitions in a layer, use the Metadata Service API.

Expand Down Expand Up @@ -180,7 +180,7 @@ const partitions = await versionedLayerClient.getPartitions(

## Get data from a versioned layer

You can request any version of data from a [versioned layer](https://developer.here.com/documentation/data-user-guide/portal/layers/layers.html#versioned-layers). When you request a particular version of data from the versioned layer, the partition you receive in the response may have a lower version number than you requested. The version of a layer or partition represents the catalog version in which the layer or partition was last updated.
You can request any version of data from a [versioned layer](https://www.here.com/docs/bundle/data-api-developer-guide/page/rest/getting-data-versioned.html). When you request a particular version of data from the versioned layer, the partition you receive in the response may have a lower version number than you requested. The version of a layer or partition represents the catalog version in which the layer or partition was last updated.

**To get data from the versioned layer:**

Expand Down
Loading