From 8fbac4e62c1df571b2c6561333e64c8963764623 Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Fri, 17 Jun 2022 10:57:51 +0800 Subject: [PATCH 01/14] init PR --- sdk/maps/azure-maps-render/CHANGELOG.md | 5 + sdk/maps/azure-maps-render/MANIFEST.in | 7 + sdk/maps/azure-maps-render/README.md | 198 ++ sdk/maps/azure-maps-render/azure/__init__.py | 1 + .../azure-maps-render/azure/maps/__init__.py | 1 + .../azure/maps/render/__init__.py | 19 + .../azure/maps/render/_base_client.py | 52 + .../azure/maps/render/_generated/__init__.py | 23 + .../azure/maps/render/_generated/_client.py | 100 + .../maps/render/_generated/_configuration.py | 73 + .../azure/maps/render/_generated/_patch.py | 19 + .../maps/render/_generated/_serialization.py | 2006 +++++++++++++++++ .../azure/maps/render/_generated/_vendor.py | 21 + .../azure/maps/render/_generated/_version.py | 9 + .../maps/render/_generated/aio/__init__.py | 20 + .../maps/render/_generated/aio/_client.py | 97 + .../render/_generated/aio/_configuration.py | 72 + .../maps/render/_generated/aio/_patch.py | 19 + .../_generated/aio/operations/__init__.py | 18 + .../_generated/aio/operations/_operations.py | 1326 +++++++++++ .../_generated/aio/operations/_patch.py | 19 + .../maps/render/_generated/models/__init__.py | 50 + .../maps/render/_generated/models/_enums.py | 224 ++ .../maps/render/_generated/models/_models.py | 438 ++++ .../maps/render/_generated/models/_patch.py | 19 + .../render/_generated/operations/__init__.py | 18 + .../_generated/operations/_operations.py | 1728 ++++++++++++++ .../render/_generated/operations/_patch.py | 19 + .../azure/maps/render/_generated/py.typed | 1 + .../azure/maps/render/_render_client.py | 395 ++++ .../azure/maps/render/_version.py | 9 + .../azure/maps/render/aio/__init__.py | 10 + .../maps/render/aio/_base_client_async.py | 51 + .../maps/render/aio/_render_client_async.py | 388 ++++ .../azure/maps/render/models/__init__.py | 34 + .../azure/maps/render/models/_models.py | 56 + .../azure/maps/render/py.typed | 1 + .../azure-maps-render/dev_requirements.txt | 5 + sdk/maps/azure-maps-render/samples/README.md | 52 + .../sample_authentication_async.py | 41 + .../samples/sample_authentication.py | 38 + sdk/maps/azure-maps-render/sdk_packaging.toml | 9 + sdk/maps/azure-maps-render/setup.py | 90 + sdk/maps/azure-maps-render/swagger/README.md | 37 + sdk/maps/azure-maps-render/tests/conftest.py | 31 + sdk/maps/azure-maps-render/tests/pytest.ini | 4 + .../tests/test_client_e2e.py | 57 + .../tests/test_client_unit.py | 63 + sdk/maps/ci.yml | 3 + shared_requirements.txt | 5 + 50 files changed, 7981 insertions(+) create mode 100644 sdk/maps/azure-maps-render/CHANGELOG.md create mode 100644 sdk/maps/azure-maps-render/MANIFEST.in create mode 100644 sdk/maps/azure-maps-render/README.md create mode 100644 sdk/maps/azure-maps-render/azure/__init__.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/__init__.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/__init__.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_base_client.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/__init__.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/_client.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/_configuration.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/_patch.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/_serialization.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/_vendor.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/_version.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/__init__.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_client.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_configuration.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_patch.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/__init__.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_operations.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_patch.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/models/__init__.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_enums.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_models.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_patch.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/__init__.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_operations.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_patch.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/py.typed create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_render_client.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_version.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/aio/__init__.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/models/_models.py create mode 100644 sdk/maps/azure-maps-render/azure/maps/render/py.typed create mode 100644 sdk/maps/azure-maps-render/dev_requirements.txt create mode 100644 sdk/maps/azure-maps-render/samples/README.md create mode 100644 sdk/maps/azure-maps-render/samples/async_samples/sample_authentication_async.py create mode 100644 sdk/maps/azure-maps-render/samples/sample_authentication.py create mode 100644 sdk/maps/azure-maps-render/sdk_packaging.toml create mode 100644 sdk/maps/azure-maps-render/setup.py create mode 100644 sdk/maps/azure-maps-render/swagger/README.md create mode 100644 sdk/maps/azure-maps-render/tests/conftest.py create mode 100644 sdk/maps/azure-maps-render/tests/pytest.ini create mode 100644 sdk/maps/azure-maps-render/tests/test_client_e2e.py create mode 100644 sdk/maps/azure-maps-render/tests/test_client_unit.py diff --git a/sdk/maps/azure-maps-render/CHANGELOG.md b/sdk/maps/azure-maps-render/CHANGELOG.md new file mode 100644 index 000000000000..d8b2faa82aa0 --- /dev/null +++ b/sdk/maps/azure-maps-render/CHANGELOG.md @@ -0,0 +1,5 @@ +# Release History + +## 1.0.0b1 (Unreleased) + +* Initial Release diff --git a/sdk/maps/azure-maps-render/MANIFEST.in b/sdk/maps/azure-maps-render/MANIFEST.in new file mode 100644 index 000000000000..79b7846fcc26 --- /dev/null +++ b/sdk/maps/azure-maps-render/MANIFEST.in @@ -0,0 +1,7 @@ +recursive-include tests *.py *.yaml +recursive-include samples *.py *.md +include *.md +include LICENSE +include azure/__init__.py +include azure/maps/__init__.py +include azure/maps/render/py.typed diff --git a/sdk/maps/azure-maps-render/README.md b/sdk/maps/azure-maps-render/README.md new file mode 100644 index 000000000000..64420240e53c --- /dev/null +++ b/sdk/maps/azure-maps-render/README.md @@ -0,0 +1,198 @@ +# Azure Maps Render Package client library for Python + +This package contains a Python SDK for Azure Maps Services for Render. +Read more about Azure Maps Services [here](https://docs.microsoft.com/azure/azure-maps/) + +[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/maps/azure-maps-render) | [API reference documentation](https://docs.microsoft.com/rest/api/maps/render) | [Product documentation](https://docs.microsoft.com/azure/azure-maps/) + +## _Disclaimer_ + +_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to _ + +## Getting started + +### Prerequisites + +- Python 3.6 or later is required to use this package. +- An [Azure subscription][azure_subscription] and an [Azure Maps account](https://docs.microsoft.com/azure/azure-maps/how-to-manage-account-keys). +- A deployed Maps Services resource. You can create the resource via [Azure Portal][azure_portal] or [Azure CLI][azure_cli]. + +If you use Azure CLI, replace `` and `` of your choice, and select a proper [pricing tier](https://docs.microsoft.com/azure/azure-maps/choose-pricing-tier) based on your needs via the `` parameter. Please refer to [this page](https://docs.microsoft.com/cli/azure/maps/account?view=azure-cli-latest#az_maps_account_create) for more details. + +```bash +az maps account create --resource-group --account-name --sku +``` + +### Install the package + +Install the Azure Maps Service Render SDK. + +```bash +pip install azure-maps-render +``` + +### Create and Authenticate the MapsRenderClient + +To create a client object to access the Azure Maps Render API, you will need a **credential** object. Azure Maps Render client also support two ways to authenticate. + +#### 1. Authenticate with a Subscription Key Credential + +You can authenticate with your Azure Maps Subscription Key. +Once the Azure Maps Subscription Key is created, set the value of the key as environment variable: `AZURE_SUBSCRIPTION_KEY`. +Then pass an `AZURE_SUBSCRIPTION_KEY` as the `credential` parameter into an instance of [AzureKeyCredential][azure-key-credential]. + +```python +from azure.core.credentials import AzureKeyCredential +from azure.maps.render import MapsRenderClient + +credential = AzureKeyCredential(os.environ.get("AZURE_SUBSCRIPTION_KEY")) + +render_client = MapsRenderClient( + credential=credential, +) +``` + +#### 2. Authenticate with an Azure Active Directory credential + +You can authenticate with [Azure Active Directory (AAD) token credential][maps_authentication_aad] using the [Azure Identity library][azure_identity]. +Authentication by using AAD requires some initial setup: + +- Install [azure-identity][azure-key-credential] +- Register a [new AAD application][register_aad_app] +- Grant access to Azure Maps by assigning the suitable role to your service principal. Please refer to the [Manage authentication page][manage_aad_auth_page]. + +After setup, you can choose which type of [credential][azure-key-credential] from `azure.identity` to use. +As an example, [DefaultAzureCredential][default_azure_credential] +can be used to authenticate the client: + +Next, set the values of the client ID, tenant ID, and client secret of the AAD application as environment variables: +`AZURE_CLIENT_ID`, `AZURE_TENANT_ID`, `AZURE_CLIENT_SECRET` + +You will also need to specify the Azure Maps resource you intend to use by specifying the `clientId` in the client options. The Azure Maps resource client id can be found in the Authentication sections in the Azure Maps resource. Please refer to the [documentation][how_to_manage_authentication] on how to find it. + +```python +from azure.maps.render import MapsRenderClient +from azure.identity import DefaultAzureCredential + +credential = DefaultAzureCredential() +render_client = MapsRenderClient(credential=credential) +``` + +## Key concepts + +The Azure Maps Render client library for Python allows you to interact with each of the components through the use of a dedicated client object. + +### Sync Clients + +`MapsRenderClient` is the primary client for developers using the Azure Maps Render client library for Python. +Once you initialized a `MapsRenderClient` class, you can explore the methods on this client object to understand the different features of the Azure Maps Render service that you can access. + +### Async Clients + +This library includes a complete async API supported on Python 3.5+. To use it, you must first install an async transport, such as [aiohttp](https://pypi.org/project/aiohttp/). +See [azure-core documentation](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#transport) for more information. + +Async clients and credentials should be closed when they're no longer needed. These +objects are async context managers and define async `close` methods. + +## Examples + +The following sections provide several code snippets covering some of the most common Azure Maps Render tasks, including: + +- [Get Maps Attribution](#get-maps-attribution) + +### Get Maps Attr + +Get Maps Attr + +```python +from azure.maps.render import MapsRenderClient + +render_result = client.render_address("400 Broad, Seattle"); +``` + +## Troubleshooting + +### General + +Maps Render clients raise exceptions defined in [Azure Core](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/README.md). + +This list can be used for reference to catch thrown exceptions. To get the specific error code of the exception, use the `error_code` attribute, i.e, `exception.error_code`. + +### Logging + +This library uses the standard [logging](https://docs.python.org/3/library/logging.html) library for logging. +Basic information about HTTP sessions (URLs, headers, etc.) is logged at INFO level. + +Detailed DEBUG level logging, including request/response bodies and unredacted headers, can be enabled on a client with the `logging_enable` argument: + +```python +import sys +import logging +from azure.maps.render import MapsRenderClient + +# Create a logger for the 'azure.maps.render' SDK +logger = logging.getLogger('azure.maps.render') +logger.setLevel(logging.DEBUG) + +# Configure a console output +handler = logging.StreamHandler(stream=sys.stdout) +logger.addHandler(handler) + +``` + +Similarly, `logging_enable` can enable detailed logging for a single operation, +even when it isn't enabled for the client: + +```python +service_client.get_service_stats(logging_enable=True) +``` + +### Additional + +Still running into issues? If you encounter any bugs or have suggestions, please file an issue in the [Issues]() section of the project. + +## Next steps + +### More sample code + +Get started with our [Maps Render samples](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/maps/azure-maps-render/samples) ([Async Version samples](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/maps/azure-maps-render/samples/async_samples)). + +Several Azure Maps Render Python SDK samples are available to you in the SDK's GitHub repository. These samples provide example code for additional scenarios commonly encountered while working with Maps Render + +```bash +set AZURE_SUBSCRIPTION_KEY="" + +pip install azure-maps-render --pre + +python samples/sample_authentication.py +``` + +> Notes: `--pre` flag can be optionally added, it is to include pre-release and development versions for `pip install`. By default, `pip` only finds stable versions. + +Further detail please refer to [Samples Introduction](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/maps/azure-maps-render/samples/README.md) + +### Additional documentation + +For more extensive documentation on Azure Maps Render, see the [Azure Maps Render documentation](https://docs.microsoft.com/rest/api/maps/render) on docs.microsoft.com. + +## Contributing + +This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit . + +When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA. + +This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. + + +[azure_subscription]: https://azure.microsoft.com/free/ +[azure_identity]: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/identity/azure-identity +[azure_portal]: https://portal.azure.com +[azure_cli]: https://docs.microsoft.com/cli/azure +[azure-key-credential]: https://aka.ms/azsdk/python/core/azurekeycredential +[default_azure_credential]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity#defaultazurecredential +[register_aad_app]: https://docs.microsoft.com/powershell/module/Az.Resources/New-AzADApplication?view=azps-8.0.0 +[maps_authentication_aad]: https://docs.microsoft.com/azure/azure-maps/how-to-manage-authentication +[create_new_application_registration]: https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/applicationsListBlade/quickStartType/AspNetWebAppQuickstartPage/sourceType/docs +[manage_aad_auth_page]: https://docs.microsoft.com/azure/azure-maps/how-to-manage-authentication +[how_to_manage_authentication]: https://docs.microsoft.com/azure/azure-maps/how-to-manage-authentication#view-authentication-details diff --git a/sdk/maps/azure-maps-render/azure/__init__.py b/sdk/maps/azure-maps-render/azure/__init__.py new file mode 100644 index 000000000000..8db66d3d0f0f --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/__init__.py @@ -0,0 +1 @@ +__path__ = __import__("pkgutil").extend_path(__path__, __name__) diff --git a/sdk/maps/azure-maps-render/azure/maps/__init__.py b/sdk/maps/azure-maps-render/azure/maps/__init__.py new file mode 100644 index 000000000000..8db66d3d0f0f --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/__init__.py @@ -0,0 +1 @@ +__path__ = __import__("pkgutil").extend_path(__path__, __name__) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/__init__.py new file mode 100644 index 000000000000..c5fcad37bf95 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/__init__.py @@ -0,0 +1,19 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._render_client import MapsRenderClient +from ._version import VERSION + +__version__ = VERSION +__all__ = ['MapsRenderClient'] + +try: + from ._patch import patch_sdk # type: ignore + patch_sdk() +except ImportError: + pass diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py new file mode 100644 index 000000000000..d7da73981f05 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py @@ -0,0 +1,52 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ + +#pylint: disable=C0209 +from typing import Union, TYPE_CHECKING +from azure.core.pipeline.policies import AzureKeyCredentialPolicy +from azure.core.credentials import AzureKeyCredential +from ._generated import RenderClient as _MapsRenderClient +from ._version import VERSION +if TYPE_CHECKING: + from azure.core.credentials import TokenCredential + +# To check the credential is either AzureKeyCredential or TokenCredential +def _authentication_policy(credential): + authentication_policy = None + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + if isinstance(credential, AzureKeyCredential): + authentication_policy = AzureKeyCredentialPolicy( + name="subscription-key", credential=credential + ) + elif credential is not None and not hasattr(credential, "get_token"): + raise TypeError( + "Unsupported credential: {}. Use an instance of AzureKeyCredential " + "or a token credential from azure.identity".format(type(credential)) + ) + return authentication_policy + +class MapsRenderClientBase: + def __init__( + self, + credential, #type: Union[AzureKeyCredential, TokenCredential] + **kwargs #type Any + ): + # type: (...) -> None + + self._maps_client = _MapsRenderClient( + credential=credential, # type: ignore + api_version=kwargs.pop("api_version", VERSION), + authentication_policy=kwargs.pop("authentication_policy", _authentication_policy(credential)), + **kwargs + ) + self._render_client = self._maps_client.render_v2 + + def __enter__(self): + self._maps_client.__enter__() # pylint:disable=no-member + return self + + def __exit__(self, *args): + self._maps_client.__exit__(*args) # pylint:disable=no-member diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/__init__.py new file mode 100644 index 000000000000..97897f0f801d --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/__init__.py @@ -0,0 +1,23 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._client import RenderClient +from ._version import VERSION + +__version__ = VERSION + +try: + from ._patch import __all__ as _patch_all + from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +except ImportError: + _patch_all = [] +from ._patch import patch_sdk as _patch_sdk +__all__ = ['RenderClient'] +__all__.extend([p for p in _patch_all if p not in __all__]) + +_patch_sdk() diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_client.py new file mode 100644 index 000000000000..27794bf6e690 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_client.py @@ -0,0 +1,100 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from copy import deepcopy +from typing import Any, Optional, TYPE_CHECKING + +from azure.core import PipelineClient +from azure.core.rest import HttpRequest, HttpResponse + +from . import models +from ._configuration import RenderClientConfiguration +from ._serialization import Deserializer, Serializer +from .operations import RenderV2Operations + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials import TokenCredential + +class RenderClient: # pylint: disable=client-accepts-api-version-keyword + """Azure Maps Render REST APIs. + + :ivar render_v2: RenderV2Operations operations + :vartype render_v2: azure.maps.render.operations.RenderV2Operations + :param credential: Credential needed for the client to connect to Azure. Required. + :type credential: ~azure.core.credentials.TokenCredential + :param client_id: Specifies which account is intended for usage in conjunction with the Azure + AD security model. It represents a unique ID for the Azure Maps account and can be retrieved + from the Azure Maps management plane Account API. To use Azure AD security in Azure Maps see + the following `articles `_ for guidance. Default value is None. + :type client_id: str + :keyword endpoint: Service URL. Default value is "https://atlas.microsoft.com". + :paramtype endpoint: str + :keyword api_version: Api Version. Default value is "2.1". Note that overriding this default + value may result in unsupported behavior. + :paramtype api_version: str + """ + + def __init__( + self, + credential: "TokenCredential", + client_id: Optional[str] = None, + *, + endpoint: str = "https://atlas.microsoft.com", + **kwargs: Any + ) -> None: + self._config = RenderClientConfiguration(credential=credential, client_id=client_id, **kwargs) + self._client = PipelineClient(base_url=endpoint, config=self._config, **kwargs) + + client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} + self._serialize = Serializer(client_models) + self._deserialize = Deserializer(client_models) + self._serialize.client_side_validation = False + self.render_v2 = RenderV2Operations( + self._client, self._config, self._serialize, self._deserialize + ) + + + def send_request( + self, + request: HttpRequest, + **kwargs: Any + ) -> HttpResponse: + """Runs the network request through the client's chained policies. + + >>> from azure.core.rest import HttpRequest + >>> request = HttpRequest("GET", "https://www.example.org/") + + >>> response = client.send_request(request) + + + For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request + + :param request: The network request you want to make. Required. + :type request: ~azure.core.rest.HttpRequest + :keyword bool stream: Whether the response payload will be streamed. Defaults to False. + :return: The response of your network call. Does not do error handling on your response. + :rtype: ~azure.core.rest.HttpResponse + """ + + request_copy = deepcopy(request) + request_copy.url = self._client.format_url(request_copy.url) + return self._client.send_request(request_copy, **kwargs) + + def close(self): + # type: () -> None + self._client.close() + + def __enter__(self): + # type: () -> RenderClient + self._client.__enter__() + return self + + def __exit__(self, *exc_details): + # type: (Any) -> None + self._client.__exit__(*exc_details) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_configuration.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_configuration.py new file mode 100644 index 000000000000..f21e456b2221 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_configuration.py @@ -0,0 +1,73 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from typing import Any, Optional, TYPE_CHECKING + +from azure.core.configuration import Configuration +from azure.core.pipeline import policies + +from ._version import VERSION + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials import TokenCredential + + +class RenderClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes + """Configuration for RenderClient. + + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credential: Credential needed for the client to connect to Azure. Required. + :type credential: ~azure.core.credentials.TokenCredential + :param client_id: Specifies which account is intended for usage in conjunction with the Azure + AD security model. It represents a unique ID for the Azure Maps account and can be retrieved + from the Azure Maps management plane Account API. To use Azure AD security in Azure Maps see + the following `articles `_ for guidance. Default value is None. + :type client_id: str + :keyword api_version: Api Version. Default value is "2.1". Note that overriding this default + value may result in unsupported behavior. + :paramtype api_version: str + """ + + def __init__( + self, + credential: "TokenCredential", + client_id: Optional[str] = None, + **kwargs: Any + ) -> None: + super(RenderClientConfiguration, self).__init__(**kwargs) + api_version = kwargs.pop('api_version', "2.1") # type: str + + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + + self.credential = credential + self.client_id = client_id + self.api_version = api_version + self.credential_scopes = kwargs.pop('credential_scopes', ['https://atlas.microsoft.com/.default']) + kwargs.setdefault('sdk_moniker', 'maps-render/{}'.format(VERSION)) + self._configure(**kwargs) + + def _configure( + self, + **kwargs # type: Any + ): + # type: (...) -> None + self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get('http_logging_policy') or policies.HttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get('authentication_policy') + if self.credential and not self.authentication_policy: + self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_patch.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_patch.py new file mode 100644 index 000000000000..0ad201a8c586 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_patch.py @@ -0,0 +1,19 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_serialization.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_serialization.py new file mode 100644 index 000000000000..2e44d8666b2b --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_serialization.py @@ -0,0 +1,2006 @@ +# -------------------------------------------------------------------------- +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# +# The MIT License (MIT) +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the ""Software""), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. +# +# -------------------------------------------------------------------------- + +# pylint: skip-file + +from base64 import b64decode, b64encode +import calendar +import datetime +import decimal +import email +from enum import Enum +import json +import logging +import re +import sys +import codecs +try: + from urllib import quote # type: ignore +except ImportError: + from urllib.parse import quote # type: ignore +import xml.etree.ElementTree as ET + +import isodate + +from typing import Dict, Any, cast, TYPE_CHECKING + +from azure.core.exceptions import DeserializationError, SerializationError, raise_with_traceback + +_BOM = codecs.BOM_UTF8.decode(encoding='utf-8') + +if TYPE_CHECKING: + from typing import Optional, Union, AnyStr, IO, Mapping + +class RawDeserializer: + + # Accept "text" because we're open minded people... + JSON_REGEXP = re.compile(r'^(application|text)/([a-z+.]+\+)?json$') + + # Name used in context + CONTEXT_NAME = "deserialized_data" + + @classmethod + def deserialize_from_text(cls, data, content_type=None): + # type: (Optional[Union[AnyStr, IO]], Optional[str]) -> Any + """Decode data according to content-type. + + Accept a stream of data as well, but will be load at once in memory for now. + + If no content-type, will return the string version (not bytes, not stream) + + :param data: Input, could be bytes or stream (will be decoded with UTF8) or text + :type data: str or bytes or IO + :param str content_type: The content type. + """ + if hasattr(data, 'read'): + # Assume a stream + data = cast(IO, data).read() + + if isinstance(data, bytes): + data_as_str = data.decode(encoding='utf-8-sig') + else: + # Explain to mypy the correct type. + data_as_str = cast(str, data) + + # Remove Byte Order Mark if present in string + data_as_str = data_as_str.lstrip(_BOM) + + if content_type is None: + return data + + if cls.JSON_REGEXP.match(content_type): + try: + return json.loads(data_as_str) + except ValueError as err: + raise DeserializationError("JSON is invalid: {}".format(err), err) + elif "xml" in (content_type or []): + try: + + try: + if isinstance(data, unicode): # type: ignore + # If I'm Python 2.7 and unicode XML will scream if I try a "fromstring" on unicode string + data_as_str = data_as_str.encode(encoding="utf-8") # type: ignore + except NameError: + pass + + return ET.fromstring(data_as_str) # nosec + except ET.ParseError: + # It might be because the server has an issue, and returned JSON with + # content-type XML.... + # So let's try a JSON load, and if it's still broken + # let's flow the initial exception + def _json_attemp(data): + try: + return True, json.loads(data) + except ValueError: + return False, None # Don't care about this one + success, json_result = _json_attemp(data) + if success: + return json_result + # If i'm here, it's not JSON, it's not XML, let's scream + # and raise the last context in this block (the XML exception) + # The function hack is because Py2.7 messes up with exception + # context otherwise. + _LOGGER.critical("Wasn't XML not JSON, failing") + raise_with_traceback(DeserializationError, "XML is invalid") + raise DeserializationError("Cannot deserialize content-type: {}".format(content_type)) + + @classmethod + def deserialize_from_http_generics(cls, body_bytes, headers): + # type: (Optional[Union[AnyStr, IO]], Mapping) -> Any + """Deserialize from HTTP response. + + Use bytes and headers to NOT use any requests/aiohttp or whatever + specific implementation. + Headers will tested for "content-type" + """ + # Try to use content-type from headers if available + content_type = None + if 'content-type' in headers: + content_type = headers['content-type'].split(";")[0].strip().lower() + # Ouch, this server did not declare what it sent... + # Let's guess it's JSON... + # Also, since Autorest was considering that an empty body was a valid JSON, + # need that test as well.... + else: + content_type = "application/json" + + if body_bytes: + return cls.deserialize_from_text(body_bytes, content_type) + return None + +try: + basestring # type: ignore + unicode_str = unicode # type: ignore +except NameError: + basestring = str # type: ignore + unicode_str = str # type: ignore + +_LOGGER = logging.getLogger(__name__) + +try: + _long_type = long # type: ignore +except NameError: + _long_type = int + +class UTC(datetime.tzinfo): + """Time Zone info for handling UTC""" + + def utcoffset(self, dt): + """UTF offset for UTC is 0.""" + return datetime.timedelta(0) + + def tzname(self, dt): + """Timestamp representation.""" + return "Z" + + def dst(self, dt): + """No daylight saving for UTC.""" + return datetime.timedelta(hours=1) + +try: + from datetime import timezone as _FixedOffset +except ImportError: # Python 2.7 + class _FixedOffset(datetime.tzinfo): # type: ignore + """Fixed offset in minutes east from UTC. + Copy/pasted from Python doc + :param datetime.timedelta offset: offset in timedelta format + """ + + def __init__(self, offset): + self.__offset = offset + + def utcoffset(self, dt): + return self.__offset + + def tzname(self, dt): + return str(self.__offset.total_seconds()/3600) + + def __repr__(self): + return "".format(self.tzname(None)) + + def dst(self, dt): + return datetime.timedelta(0) + + def __getinitargs__(self): + return (self.__offset,) + +try: + from datetime import timezone + TZ_UTC = timezone.utc # type: ignore +except ImportError: + TZ_UTC = UTC() # type: ignore + +_FLATTEN = re.compile(r"(? y, + "minimum": lambda x, y: x < y, + "maximum": lambda x, y: x > y, + "minimum_ex": lambda x, y: x <= y, + "maximum_ex": lambda x, y: x >= y, + "min_items": lambda x, y: len(x) < y, + "max_items": lambda x, y: len(x) > y, + "pattern": lambda x, y: not re.match(y, x, re.UNICODE), + "unique": lambda x, y: len(x) != len(set(x)), + "multiple": lambda x, y: x % y != 0 + } + + def __init__(self, classes=None): + self.serialize_type = { + 'iso-8601': Serializer.serialize_iso, + 'rfc-1123': Serializer.serialize_rfc, + 'unix-time': Serializer.serialize_unix, + 'duration': Serializer.serialize_duration, + 'date': Serializer.serialize_date, + 'time': Serializer.serialize_time, + 'decimal': Serializer.serialize_decimal, + 'long': Serializer.serialize_long, + 'bytearray': Serializer.serialize_bytearray, + 'base64': Serializer.serialize_base64, + 'object': self.serialize_object, + '[]': self.serialize_iter, + '{}': self.serialize_dict + } + self.dependencies = dict(classes) if classes else {} + self.key_transformer = full_restapi_key_transformer + self.client_side_validation = True + + def _serialize(self, target_obj, data_type=None, **kwargs): + """Serialize data into a string according to type. + + :param target_obj: The data to be serialized. + :param str data_type: The type to be serialized from. + :rtype: str, dict + :raises: SerializationError if serialization fails. + """ + key_transformer = kwargs.get("key_transformer", self.key_transformer) + keep_readonly = kwargs.get("keep_readonly", False) + if target_obj is None: + return None + + attr_name = None + class_name = target_obj.__class__.__name__ + + if data_type: + return self.serialize_data( + target_obj, data_type, **kwargs) + + if not hasattr(target_obj, "_attribute_map"): + data_type = type(target_obj).__name__ + if data_type in self.basic_types.values(): + return self.serialize_data( + target_obj, data_type, **kwargs) + + # Force "is_xml" kwargs if we detect a XML model + try: + is_xml_model_serialization = kwargs["is_xml"] + except KeyError: + is_xml_model_serialization = kwargs.setdefault("is_xml", target_obj.is_xml_model()) + + serialized = {} + if is_xml_model_serialization: + serialized = target_obj._create_xml_node() + try: + attributes = target_obj._attribute_map + for attr, attr_desc in attributes.items(): + attr_name = attr + if not keep_readonly and target_obj._validation.get(attr_name, {}).get('readonly', False): + continue + + if attr_name == "additional_properties" and attr_desc["key"] == '': + if target_obj.additional_properties is not None: + serialized.update(target_obj.additional_properties) + continue + try: + + orig_attr = getattr(target_obj, attr) + if is_xml_model_serialization: + pass # Don't provide "transformer" for XML for now. Keep "orig_attr" + else: # JSON + keys, orig_attr = key_transformer(attr, attr_desc.copy(), orig_attr) + keys = keys if isinstance(keys, list) else [keys] + + + kwargs["serialization_ctxt"] = attr_desc + new_attr = self.serialize_data(orig_attr, attr_desc['type'], **kwargs) + + + if is_xml_model_serialization: + xml_desc = attr_desc.get('xml', {}) + xml_name = xml_desc.get('name', attr_desc['key']) + xml_prefix = xml_desc.get('prefix', None) + xml_ns = xml_desc.get('ns', None) + if xml_desc.get("attr", False): + if xml_ns: + ET.register_namespace(xml_prefix, xml_ns) + xml_name = "{}{}".format(xml_ns, xml_name) + serialized.set(xml_name, new_attr) + continue + if xml_desc.get("text", False): + serialized.text = new_attr + continue + if isinstance(new_attr, list): + serialized.extend(new_attr) + elif isinstance(new_attr, ET.Element): + # If the down XML has no XML/Name, we MUST replace the tag with the local tag. But keeping the namespaces. + if 'name' not in getattr(orig_attr, '_xml_map', {}): + splitted_tag = new_attr.tag.split("}") + if len(splitted_tag) == 2: # Namespace + new_attr.tag = "}".join([splitted_tag[0], xml_name]) + else: + new_attr.tag = xml_name + serialized.append(new_attr) + else: # That's a basic type + # Integrate namespace if necessary + local_node = _create_xml_node( + xml_name, + xml_prefix, + xml_ns + ) + local_node.text = unicode_str(new_attr) + serialized.append(local_node) + else: # JSON + for k in reversed(keys): + unflattened = {k: new_attr} + new_attr = unflattened + + _new_attr = new_attr + _serialized = serialized + for k in keys: + if k not in _serialized: + _serialized.update(_new_attr) + _new_attr = _new_attr[k] + _serialized = _serialized[k] + except ValueError: + continue + + except (AttributeError, KeyError, TypeError) as err: + msg = "Attribute {} in object {} cannot be serialized.\n{}".format( + attr_name, class_name, str(target_obj)) + raise_with_traceback(SerializationError, msg, err) + else: + return serialized + + def body(self, data, data_type, **kwargs): + """Serialize data intended for a request body. + + :param data: The data to be serialized. + :param str data_type: The type to be serialized from. + :rtype: dict + :raises: SerializationError if serialization fails. + :raises: ValueError if data is None + """ + + # Just in case this is a dict + internal_data_type = data_type.strip('[]{}') + internal_data_type = self.dependencies.get(internal_data_type, None) + try: + is_xml_model_serialization = kwargs["is_xml"] + except KeyError: + if internal_data_type and issubclass(internal_data_type, Model): + is_xml_model_serialization = kwargs.setdefault("is_xml", internal_data_type.is_xml_model()) + else: + is_xml_model_serialization = False + if internal_data_type and not isinstance(internal_data_type, Enum): + try: + deserializer = Deserializer(self.dependencies) + # Since it's on serialization, it's almost sure that format is not JSON REST + # We're not able to deal with additional properties for now. + deserializer.additional_properties_detection = False + if is_xml_model_serialization: + deserializer.key_extractors = [ + attribute_key_case_insensitive_extractor, + ] + else: + deserializer.key_extractors = [ + rest_key_case_insensitive_extractor, + attribute_key_case_insensitive_extractor, + last_rest_key_case_insensitive_extractor + ] + data = deserializer._deserialize(data_type, data) + except DeserializationError as err: + raise_with_traceback( + SerializationError, "Unable to build a model: "+str(err), err) + + return self._serialize(data, data_type, **kwargs) + + def url(self, name, data, data_type, **kwargs): + """Serialize data intended for a URL path. + + :param data: The data to be serialized. + :param str data_type: The type to be serialized from. + :rtype: str + :raises: TypeError if serialization fails. + :raises: ValueError if data is None + """ + try: + output = self.serialize_data(data, data_type, **kwargs) + if data_type == 'bool': + output = json.dumps(output) + + if kwargs.get('skip_quote') is True: + output = str(output) + else: + output = quote(str(output), safe='') + except SerializationError: + raise TypeError("{} must be type {}.".format(name, data_type)) + else: + return output + + def query(self, name, data, data_type, **kwargs): + """Serialize data intended for a URL query. + + :param data: The data to be serialized. + :param str data_type: The type to be serialized from. + :rtype: str + :raises: TypeError if serialization fails. + :raises: ValueError if data is None + """ + try: + # Treat the list aside, since we don't want to encode the div separator + if data_type.startswith("["): + internal_data_type = data_type[1:-1] + data = [ + self.serialize_data(d, internal_data_type, **kwargs) if d is not None else "" + for d + in data + ] + if not kwargs.get('skip_quote', False): + data = [ + quote(str(d), safe='') + for d + in data + ] + return str(self.serialize_iter(data, internal_data_type, **kwargs)) + + # Not a list, regular serialization + output = self.serialize_data(data, data_type, **kwargs) + if data_type == 'bool': + output = json.dumps(output) + if kwargs.get('skip_quote') is True: + output = str(output) + else: + output = quote(str(output), safe='') + except SerializationError: + raise TypeError("{} must be type {}.".format(name, data_type)) + else: + return str(output) + + def header(self, name, data, data_type, **kwargs): + """Serialize data intended for a request header. + + :param data: The data to be serialized. + :param str data_type: The type to be serialized from. + :rtype: str + :raises: TypeError if serialization fails. + :raises: ValueError if data is None + """ + try: + if data_type in ['[str]']: + data = ["" if d is None else d for d in data] + + output = self.serialize_data(data, data_type, **kwargs) + if data_type == 'bool': + output = json.dumps(output) + except SerializationError: + raise TypeError("{} must be type {}.".format(name, data_type)) + else: + return str(output) + + def serialize_data(self, data, data_type, **kwargs): + """Serialize generic data according to supplied data type. + + :param data: The data to be serialized. + :param str data_type: The type to be serialized from. + :param bool required: Whether it's essential that the data not be + empty or None + :raises: AttributeError if required data is None. + :raises: ValueError if data is None + :raises: SerializationError if serialization fails. + """ + if data is None: + raise ValueError("No value for given attribute") + + try: + if data_type in self.basic_types.values(): + return self.serialize_basic(data, data_type, **kwargs) + + elif data_type in self.serialize_type: + return self.serialize_type[data_type](data, **kwargs) + + # If dependencies is empty, try with current data class + # It has to be a subclass of Enum anyway + enum_type = self.dependencies.get(data_type, data.__class__) + if issubclass(enum_type, Enum): + return Serializer.serialize_enum(data, enum_obj=enum_type) + + iter_type = data_type[0] + data_type[-1] + if iter_type in self.serialize_type: + return self.serialize_type[iter_type]( + data, data_type[1:-1], **kwargs) + + except (ValueError, TypeError) as err: + msg = "Unable to serialize value: {!r} as type: {!r}." + raise_with_traceback( + SerializationError, msg.format(data, data_type), err) + else: + return self._serialize(data, **kwargs) + + @classmethod + def _get_custom_serializers(cls, data_type, **kwargs): + custom_serializer = kwargs.get("basic_types_serializers", {}).get(data_type) + if custom_serializer: + return custom_serializer + if kwargs.get("is_xml", False): + return cls._xml_basic_types_serializers.get(data_type) + + @classmethod + def serialize_basic(cls, data, data_type, **kwargs): + """Serialize basic builting data type. + Serializes objects to str, int, float or bool. + + Possible kwargs: + - basic_types_serializers dict[str, callable] : If set, use the callable as serializer + - is_xml bool : If set, use xml_basic_types_serializers + + :param data: Object to be serialized. + :param str data_type: Type of object in the iterable. + """ + custom_serializer = cls._get_custom_serializers(data_type, **kwargs) + if custom_serializer: + return custom_serializer(data) + if data_type == 'str': + return cls.serialize_unicode(data) + return eval(data_type)(data) # nosec + + @classmethod + def serialize_unicode(cls, data): + """Special handling for serializing unicode strings in Py2. + Encode to UTF-8 if unicode, otherwise handle as a str. + + :param data: Object to be serialized. + :rtype: str + """ + try: # If I received an enum, return its value + return data.value + except AttributeError: + pass + + try: + if isinstance(data, unicode): + # Don't change it, JSON and XML ElementTree are totally able + # to serialize correctly u'' strings + return data + except NameError: + return str(data) + else: + return str(data) + + def serialize_iter(self, data, iter_type, div=None, **kwargs): + """Serialize iterable. + + Supported kwargs: + - serialization_ctxt dict : The current entry of _attribute_map, or same format. + serialization_ctxt['type'] should be same as data_type. + - is_xml bool : If set, serialize as XML + + :param list attr: Object to be serialized. + :param str iter_type: Type of object in the iterable. + :param bool required: Whether the objects in the iterable must + not be None or empty. + :param str div: If set, this str will be used to combine the elements + in the iterable into a combined string. Default is 'None'. + :rtype: list, str + """ + if isinstance(data, str): + raise SerializationError("Refuse str type as a valid iter type.") + + serialization_ctxt = kwargs.get("serialization_ctxt", {}) + is_xml = kwargs.get("is_xml", False) + + serialized = [] + for d in data: + try: + serialized.append(self.serialize_data(d, iter_type, **kwargs)) + except ValueError: + serialized.append(None) + + if div: + serialized = ['' if s is None else str(s) for s in serialized] + serialized = div.join(serialized) + + if 'xml' in serialization_ctxt or is_xml: + # XML serialization is more complicated + xml_desc = serialization_ctxt.get('xml', {}) + xml_name = xml_desc.get('name') + if not xml_name: + xml_name = serialization_ctxt['key'] + + # Create a wrap node if necessary (use the fact that Element and list have "append") + is_wrapped = xml_desc.get("wrapped", False) + node_name = xml_desc.get("itemsName", xml_name) + if is_wrapped: + final_result = _create_xml_node( + xml_name, + xml_desc.get('prefix', None), + xml_desc.get('ns', None) + ) + else: + final_result = [] + # All list elements to "local_node" + for el in serialized: + if isinstance(el, ET.Element): + el_node = el + else: + el_node = _create_xml_node( + node_name, + xml_desc.get('prefix', None), + xml_desc.get('ns', None) + ) + if el is not None: # Otherwise it writes "None" :-p + el_node.text = str(el) + final_result.append(el_node) + return final_result + return serialized + + def serialize_dict(self, attr, dict_type, **kwargs): + """Serialize a dictionary of objects. + + :param dict attr: Object to be serialized. + :param str dict_type: Type of object in the dictionary. + :param bool required: Whether the objects in the dictionary must + not be None or empty. + :rtype: dict + """ + serialization_ctxt = kwargs.get("serialization_ctxt", {}) + serialized = {} + for key, value in attr.items(): + try: + serialized[self.serialize_unicode(key)] = self.serialize_data( + value, dict_type, **kwargs) + except ValueError: + serialized[self.serialize_unicode(key)] = None + + if 'xml' in serialization_ctxt: + # XML serialization is more complicated + xml_desc = serialization_ctxt['xml'] + xml_name = xml_desc['name'] + + final_result = _create_xml_node( + xml_name, + xml_desc.get('prefix', None), + xml_desc.get('ns', None) + ) + for key, value in serialized.items(): + ET.SubElement(final_result, key).text = value + return final_result + + return serialized + + def serialize_object(self, attr, **kwargs): + """Serialize a generic object. + This will be handled as a dictionary. If object passed in is not + a basic type (str, int, float, dict, list) it will simply be + cast to str. + + :param dict attr: Object to be serialized. + :rtype: dict or str + """ + if attr is None: + return None + if isinstance(attr, ET.Element): + return attr + obj_type = type(attr) + if obj_type in self.basic_types: + return self.serialize_basic(attr, self.basic_types[obj_type], **kwargs) + if obj_type is _long_type: + return self.serialize_long(attr) + if obj_type is unicode_str: + return self.serialize_unicode(attr) + if obj_type is datetime.datetime: + return self.serialize_iso(attr) + if obj_type is datetime.date: + return self.serialize_date(attr) + if obj_type is datetime.time: + return self.serialize_time(attr) + if obj_type is datetime.timedelta: + return self.serialize_duration(attr) + if obj_type is decimal.Decimal: + return self.serialize_decimal(attr) + + # If it's a model or I know this dependency, serialize as a Model + elif obj_type in self.dependencies.values() or isinstance(attr, Model): + return self._serialize(attr) + + if obj_type == dict: + serialized = {} + for key, value in attr.items(): + try: + serialized[self.serialize_unicode(key)] = self.serialize_object( + value, **kwargs) + except ValueError: + serialized[self.serialize_unicode(key)] = None + return serialized + + if obj_type == list: + serialized = [] + for obj in attr: + try: + serialized.append(self.serialize_object( + obj, **kwargs)) + except ValueError: + pass + return serialized + return str(attr) + + @staticmethod + def serialize_enum(attr, enum_obj=None): + try: + result = attr.value + except AttributeError: + result = attr + try: + enum_obj(result) + return result + except ValueError: + for enum_value in enum_obj: + if enum_value.value.lower() == str(attr).lower(): + return enum_value.value + error = "{!r} is not valid value for enum {!r}" + raise SerializationError(error.format(attr, enum_obj)) + + @staticmethod + def serialize_bytearray(attr, **kwargs): + """Serialize bytearray into base-64 string. + + :param attr: Object to be serialized. + :rtype: str + """ + return b64encode(attr).decode() + + @staticmethod + def serialize_base64(attr, **kwargs): + """Serialize str into base-64 string. + + :param attr: Object to be serialized. + :rtype: str + """ + encoded = b64encode(attr).decode('ascii') + return encoded.strip('=').replace('+', '-').replace('/', '_') + + @staticmethod + def serialize_decimal(attr, **kwargs): + """Serialize Decimal object to float. + + :param attr: Object to be serialized. + :rtype: float + """ + return float(attr) + + @staticmethod + def serialize_long(attr, **kwargs): + """Serialize long (Py2) or int (Py3). + + :param attr: Object to be serialized. + :rtype: int/long + """ + return _long_type(attr) + + @staticmethod + def serialize_date(attr, **kwargs): + """Serialize Date object into ISO-8601 formatted string. + + :param Date attr: Object to be serialized. + :rtype: str + """ + if isinstance(attr, str): + attr = isodate.parse_date(attr) + t = "{:04}-{:02}-{:02}".format(attr.year, attr.month, attr.day) + return t + + @staticmethod + def serialize_time(attr, **kwargs): + """Serialize Time object into ISO-8601 formatted string. + + :param datetime.time attr: Object to be serialized. + :rtype: str + """ + if isinstance(attr, str): + attr = isodate.parse_time(attr) + t = "{:02}:{:02}:{:02}".format(attr.hour, attr.minute, attr.second) + if attr.microsecond: + t += ".{:02}".format(attr.microsecond) + return t + + @staticmethod + def serialize_duration(attr, **kwargs): + """Serialize TimeDelta object into ISO-8601 formatted string. + + :param TimeDelta attr: Object to be serialized. + :rtype: str + """ + if isinstance(attr, str): + attr = isodate.parse_duration(attr) + return isodate.duration_isoformat(attr) + + @staticmethod + def serialize_rfc(attr, **kwargs): + """Serialize Datetime object into RFC-1123 formatted string. + + :param Datetime attr: Object to be serialized. + :rtype: str + :raises: TypeError if format invalid. + """ + try: + if not attr.tzinfo: + _LOGGER.warning( + "Datetime with no tzinfo will be considered UTC.") + utc = attr.utctimetuple() + except AttributeError: + raise TypeError("RFC1123 object must be valid Datetime object.") + + return "{}, {:02} {} {:04} {:02}:{:02}:{:02} GMT".format( + Serializer.days[utc.tm_wday], utc.tm_mday, + Serializer.months[utc.tm_mon], utc.tm_year, + utc.tm_hour, utc.tm_min, utc.tm_sec) + + @staticmethod + def serialize_iso(attr, **kwargs): + """Serialize Datetime object into ISO-8601 formatted string. + + :param Datetime attr: Object to be serialized. + :rtype: str + :raises: SerializationError if format invalid. + """ + if isinstance(attr, str): + attr = isodate.parse_datetime(attr) + try: + if not attr.tzinfo: + _LOGGER.warning( + "Datetime with no tzinfo will be considered UTC.") + utc = attr.utctimetuple() + if utc.tm_year > 9999 or utc.tm_year < 1: + raise OverflowError("Hit max or min date") + + microseconds = str(attr.microsecond).rjust(6,'0').rstrip('0').ljust(3, '0') + if microseconds: + microseconds = '.'+microseconds + date = "{:04}-{:02}-{:02}T{:02}:{:02}:{:02}".format( + utc.tm_year, utc.tm_mon, utc.tm_mday, + utc.tm_hour, utc.tm_min, utc.tm_sec) + return date + microseconds + 'Z' + except (ValueError, OverflowError) as err: + msg = "Unable to serialize datetime object." + raise_with_traceback(SerializationError, msg, err) + except AttributeError as err: + msg = "ISO-8601 object must be valid Datetime object." + raise_with_traceback(TypeError, msg, err) + + @staticmethod + def serialize_unix(attr, **kwargs): + """Serialize Datetime object into IntTime format. + This is represented as seconds. + + :param Datetime attr: Object to be serialized. + :rtype: int + :raises: SerializationError if format invalid + """ + if isinstance(attr, int): + return attr + try: + if not attr.tzinfo: + _LOGGER.warning( + "Datetime with no tzinfo will be considered UTC.") + return int(calendar.timegm(attr.utctimetuple())) + except AttributeError: + raise TypeError("Unix time object must be valid Datetime object.") + +def rest_key_extractor(attr, attr_desc, data): + key = attr_desc['key'] + working_data = data + + while '.' in key: + dict_keys = _FLATTEN.split(key) + if len(dict_keys) == 1: + key = _decode_attribute_map_key(dict_keys[0]) + break + working_key = _decode_attribute_map_key(dict_keys[0]) + working_data = working_data.get(working_key, data) + if working_data is None: + # If at any point while following flatten JSON path see None, it means + # that all properties under are None as well + # https://github.com/Azure/msrest-for-python/issues/197 + return None + key = '.'.join(dict_keys[1:]) + + return working_data.get(key) + +def rest_key_case_insensitive_extractor(attr, attr_desc, data): + key = attr_desc['key'] + working_data = data + + while '.' in key: + dict_keys = _FLATTEN.split(key) + if len(dict_keys) == 1: + key = _decode_attribute_map_key(dict_keys[0]) + break + working_key = _decode_attribute_map_key(dict_keys[0]) + working_data = attribute_key_case_insensitive_extractor(working_key, None, working_data) + if working_data is None: + # If at any point while following flatten JSON path see None, it means + # that all properties under are None as well + # https://github.com/Azure/msrest-for-python/issues/197 + return None + key = '.'.join(dict_keys[1:]) + + if working_data: + return attribute_key_case_insensitive_extractor(key, None, working_data) + +def last_rest_key_extractor(attr, attr_desc, data): + """Extract the attribute in "data" based on the last part of the JSON path key. + """ + key = attr_desc['key'] + dict_keys = _FLATTEN.split(key) + return attribute_key_extractor(dict_keys[-1], None, data) + +def last_rest_key_case_insensitive_extractor(attr, attr_desc, data): + """Extract the attribute in "data" based on the last part of the JSON path key. + + This is the case insensitive version of "last_rest_key_extractor" + """ + key = attr_desc['key'] + dict_keys = _FLATTEN.split(key) + return attribute_key_case_insensitive_extractor(dict_keys[-1], None, data) + +def attribute_key_extractor(attr, _, data): + return data.get(attr) + +def attribute_key_case_insensitive_extractor(attr, _, data): + found_key = None + lower_attr = attr.lower() + for key in data: + if lower_attr == key.lower(): + found_key = key + break + + return data.get(found_key) + +def _extract_name_from_internal_type(internal_type): + """Given an internal type XML description, extract correct XML name with namespace. + + :param dict internal_type: An model type + :rtype: tuple + :returns: A tuple XML name + namespace dict + """ + internal_type_xml_map = getattr(internal_type, "_xml_map", {}) + xml_name = internal_type_xml_map.get('name', internal_type.__name__) + xml_ns = internal_type_xml_map.get("ns", None) + if xml_ns: + xml_name = "{}{}".format(xml_ns, xml_name) + return xml_name + + +def xml_key_extractor(attr, attr_desc, data): + if isinstance(data, dict): + return None + + # Test if this model is XML ready first + if not isinstance(data, ET.Element): + return None + + xml_desc = attr_desc.get('xml', {}) + xml_name = xml_desc.get('name', attr_desc['key']) + + # Look for a children + is_iter_type = attr_desc['type'].startswith("[") + is_wrapped = xml_desc.get("wrapped", False) + internal_type = attr_desc.get("internalType", None) + internal_type_xml_map = getattr(internal_type, "_xml_map", {}) + + # Integrate namespace if necessary + xml_ns = xml_desc.get('ns', internal_type_xml_map.get("ns", None)) + if xml_ns: + xml_name = "{}{}".format(xml_ns, xml_name) + + # If it's an attribute, that's simple + if xml_desc.get("attr", False): + return data.get(xml_name) + + # If it's x-ms-text, that's simple too + if xml_desc.get("text", False): + return data.text + + # Scenario where I take the local name: + # - Wrapped node + # - Internal type is an enum (considered basic types) + # - Internal type has no XML/Name node + if is_wrapped or (internal_type and (issubclass(internal_type, Enum) or 'name' not in internal_type_xml_map)): + children = data.findall(xml_name) + # If internal type has a local name and it's not a list, I use that name + elif not is_iter_type and internal_type and 'name' in internal_type_xml_map: + xml_name = _extract_name_from_internal_type(internal_type) + children = data.findall(xml_name) + # That's an array + else: + if internal_type: # Complex type, ignore itemsName and use the complex type name + items_name = _extract_name_from_internal_type(internal_type) + else: + items_name = xml_desc.get("itemsName", xml_name) + children = data.findall(items_name) + + if len(children) == 0: + if is_iter_type: + if is_wrapped: + return None # is_wrapped no node, we want None + else: + return [] # not wrapped, assume empty list + return None # Assume it's not there, maybe an optional node. + + # If is_iter_type and not wrapped, return all found children + if is_iter_type: + if not is_wrapped: + return children + else: # Iter and wrapped, should have found one node only (the wrap one) + if len(children) != 1: + raise DeserializationError( + "Tried to deserialize an array not wrapped, and found several nodes '{}'. Maybe you should declare this array as wrapped?".format( + xml_name + )) + return list(children[0]) # Might be empty list and that's ok. + + # Here it's not a itertype, we should have found one element only or empty + if len(children) > 1: + raise DeserializationError("Find several XML '{}' where it was not expected".format(xml_name)) + return children[0] + +class Deserializer(object): + """Response object model deserializer. + + :param dict classes: Class type dictionary for deserializing complex types. + :ivar list key_extractors: Ordered list of extractors to be used by this deserializer. + """ + + basic_types = {str: 'str', int: 'int', bool: 'bool', float: 'float'} + + valid_date = re.compile( + r'\d{4}[-]\d{2}[-]\d{2}T\d{2}:\d{2}:\d{2}' + r'\.?\d*Z?[-+]?[\d{2}]?:?[\d{2}]?') + + def __init__(self, classes=None): + self.deserialize_type = { + 'iso-8601': Deserializer.deserialize_iso, + 'rfc-1123': Deserializer.deserialize_rfc, + 'unix-time': Deserializer.deserialize_unix, + 'duration': Deserializer.deserialize_duration, + 'date': Deserializer.deserialize_date, + 'time': Deserializer.deserialize_time, + 'decimal': Deserializer.deserialize_decimal, + 'long': Deserializer.deserialize_long, + 'bytearray': Deserializer.deserialize_bytearray, + 'base64': Deserializer.deserialize_base64, + 'object': self.deserialize_object, + '[]': self.deserialize_iter, + '{}': self.deserialize_dict + } + self.deserialize_expected_types = { + 'duration': (isodate.Duration, datetime.timedelta), + 'iso-8601': (datetime.datetime) + } + self.dependencies = dict(classes) if classes else {} + self.key_extractors = [ + rest_key_extractor, + xml_key_extractor + ] + # Additional properties only works if the "rest_key_extractor" is used to + # extract the keys. Making it to work whatever the key extractor is too much + # complicated, with no real scenario for now. + # So adding a flag to disable additional properties detection. This flag should be + # used if your expect the deserialization to NOT come from a JSON REST syntax. + # Otherwise, result are unexpected + self.additional_properties_detection = True + + def __call__(self, target_obj, response_data, content_type=None): + """Call the deserializer to process a REST response. + + :param str target_obj: Target data type to deserialize to. + :param requests.Response response_data: REST response object. + :param str content_type: Swagger "produces" if available. + :raises: DeserializationError if deserialization fails. + :return: Deserialized object. + """ + data = self._unpack_content(response_data, content_type) + return self._deserialize(target_obj, data) + + def _deserialize(self, target_obj, data): + """Call the deserializer on a model. + + Data needs to be already deserialized as JSON or XML ElementTree + + :param str target_obj: Target data type to deserialize to. + :param object data: Object to deserialize. + :raises: DeserializationError if deserialization fails. + :return: Deserialized object. + """ + # This is already a model, go recursive just in case + if hasattr(data, "_attribute_map"): + constants = [name for name, config in getattr(data, '_validation', {}).items() + if config.get('constant')] + try: + for attr, mapconfig in data._attribute_map.items(): + if attr in constants: + continue + value = getattr(data, attr) + if value is None: + continue + local_type = mapconfig['type'] + internal_data_type = local_type.strip('[]{}') + if internal_data_type not in self.dependencies or isinstance(internal_data_type, Enum): + continue + setattr( + data, + attr, + self._deserialize(local_type, value) + ) + return data + except AttributeError: + return + + response, class_name = self._classify_target(target_obj, data) + + if isinstance(response, basestring): + return self.deserialize_data(data, response) + elif isinstance(response, type) and issubclass(response, Enum): + return self.deserialize_enum(data, response) + + if data is None: + return data + try: + attributes = response._attribute_map + d_attrs = {} + for attr, attr_desc in attributes.items(): + # Check empty string. If it's not empty, someone has a real "additionalProperties"... + if attr == "additional_properties" and attr_desc["key"] == '': + continue + raw_value = None + # Enhance attr_desc with some dynamic data + attr_desc = attr_desc.copy() # Do a copy, do not change the real one + internal_data_type = attr_desc["type"].strip('[]{}') + if internal_data_type in self.dependencies: + attr_desc["internalType"] = self.dependencies[internal_data_type] + + for key_extractor in self.key_extractors: + found_value = key_extractor(attr, attr_desc, data) + if found_value is not None: + if raw_value is not None and raw_value != found_value: + msg = ("Ignoring extracted value '%s' from %s for key '%s'" + " (duplicate extraction, follow extractors order)" ) + _LOGGER.warning( + msg, + found_value, + key_extractor, + attr + ) + continue + raw_value = found_value + + value = self.deserialize_data(raw_value, attr_desc['type']) + d_attrs[attr] = value + except (AttributeError, TypeError, KeyError) as err: + msg = "Unable to deserialize to object: " + class_name + raise_with_traceback(DeserializationError, msg, err) + else: + additional_properties = self._build_additional_properties(attributes, data) + return self._instantiate_model(response, d_attrs, additional_properties) + + def _build_additional_properties(self, attribute_map, data): + if not self.additional_properties_detection: + return None + if "additional_properties" in attribute_map and attribute_map.get("additional_properties", {}).get("key") != '': + # Check empty string. If it's not empty, someone has a real "additionalProperties" + return None + if isinstance(data, ET.Element): + data = {el.tag: el.text for el in data} + + known_keys = {_decode_attribute_map_key(_FLATTEN.split(desc['key'])[0]) + for desc in attribute_map.values() if desc['key'] != ''} + present_keys = set(data.keys()) + missing_keys = present_keys - known_keys + return {key: data[key] for key in missing_keys} + + def _classify_target(self, target, data): + """Check to see whether the deserialization target object can + be classified into a subclass. + Once classification has been determined, initialize object. + + :param str target: The target object type to deserialize to. + :param str/dict data: The response data to deseralize. + """ + if target is None: + return None, None + + if isinstance(target, basestring): + try: + target = self.dependencies[target] + except KeyError: + return target, target + + try: + target = target._classify(data, self.dependencies) + except AttributeError: + pass # Target is not a Model, no classify + return target, target.__class__.__name__ + + def failsafe_deserialize(self, target_obj, data, content_type=None): + """Ignores any errors encountered in deserialization, + and falls back to not deserializing the object. Recommended + for use in error deserialization, as we want to return the + HttpResponseError to users, and not have them deal with + a deserialization error. + + :param str target_obj: The target object type to deserialize to. + :param str/dict data: The response data to deseralize. + :param str content_type: Swagger "produces" if available. + """ + try: + return self(target_obj, data, content_type=content_type) + except: + _LOGGER.warning( + "Ran into a deserialization error. Ignoring since this is failsafe deserialization", + exc_info=True + ) + return None + + @staticmethod + def _unpack_content(raw_data, content_type=None): + """Extract the correct structure for deserialization. + + If raw_data is a PipelineResponse, try to extract the result of RawDeserializer. + if we can't, raise. Your Pipeline should have a RawDeserializer. + + If not a pipeline response and raw_data is bytes or string, use content-type + to decode it. If no content-type, try JSON. + + If raw_data is something else, bypass all logic and return it directly. + + :param raw_data: Data to be processed. + :param content_type: How to parse if raw_data is a string/bytes. + :raises JSONDecodeError: If JSON is requested and parsing is impossible. + :raises UnicodeDecodeError: If bytes is not UTF8 + """ + # Assume this is enough to detect a Pipeline Response without importing it + context = getattr(raw_data, "context", {}) + if context: + if RawDeserializer.CONTEXT_NAME in context: + return context[RawDeserializer.CONTEXT_NAME] + raise ValueError("This pipeline didn't have the RawDeserializer policy; can't deserialize") + + #Assume this is enough to recognize universal_http.ClientResponse without importing it + if hasattr(raw_data, "body"): + return RawDeserializer.deserialize_from_http_generics( + raw_data.text(), + raw_data.headers + ) + + # Assume this enough to recognize requests.Response without importing it. + if hasattr(raw_data, '_content_consumed'): + return RawDeserializer.deserialize_from_http_generics( + raw_data.text, + raw_data.headers + ) + + if isinstance(raw_data, (basestring, bytes)) or hasattr(raw_data, 'read'): + return RawDeserializer.deserialize_from_text(raw_data, content_type) + return raw_data + + def _instantiate_model(self, response, attrs, additional_properties=None): + """Instantiate a response model passing in deserialized args. + + :param response: The response model class. + :param d_attrs: The deserialized response attributes. + """ + if callable(response): + subtype = getattr(response, '_subtype_map', {}) + try: + readonly = [k for k, v in response._validation.items() + if v.get('readonly')] + const = [k for k, v in response._validation.items() + if v.get('constant')] + kwargs = {k: v for k, v in attrs.items() + if k not in subtype and k not in readonly + const} + response_obj = response(**kwargs) + for attr in readonly: + setattr(response_obj, attr, attrs.get(attr)) + if additional_properties: + response_obj.additional_properties = additional_properties + return response_obj + except TypeError as err: + msg = "Unable to deserialize {} into model {}. ".format( + kwargs, response) + raise DeserializationError(msg + str(err)) + else: + try: + for attr, value in attrs.items(): + setattr(response, attr, value) + return response + except Exception as exp: + msg = "Unable to populate response model. " + msg += "Type: {}, Error: {}".format(type(response), exp) + raise DeserializationError(msg) + + def deserialize_data(self, data, data_type): + """Process data for deserialization according to data type. + + :param str data: The response string to be deserialized. + :param str data_type: The type to deserialize to. + :raises: DeserializationError if deserialization fails. + :return: Deserialized object. + """ + if data is None: + return data + + try: + if not data_type: + return data + if data_type in self.basic_types.values(): + return self.deserialize_basic(data, data_type) + if data_type in self.deserialize_type: + if isinstance(data, self.deserialize_expected_types.get(data_type, tuple())): + return data + + is_a_text_parsing_type = lambda x: x not in ["object", "[]", r"{}"] + if isinstance(data, ET.Element) and is_a_text_parsing_type(data_type) and not data.text: + return None + data_val = self.deserialize_type[data_type](data) + return data_val + + iter_type = data_type[0] + data_type[-1] + if iter_type in self.deserialize_type: + return self.deserialize_type[iter_type](data, data_type[1:-1]) + + obj_type = self.dependencies[data_type] + if issubclass(obj_type, Enum): + if isinstance(data, ET.Element): + data = data.text + return self.deserialize_enum(data, obj_type) + + except (ValueError, TypeError, AttributeError) as err: + msg = "Unable to deserialize response data." + msg += " Data: {}, {}".format(data, data_type) + raise_with_traceback(DeserializationError, msg, err) + else: + return self._deserialize(obj_type, data) + + def deserialize_iter(self, attr, iter_type): + """Deserialize an iterable. + + :param list attr: Iterable to be deserialized. + :param str iter_type: The type of object in the iterable. + :rtype: list + """ + if attr is None: + return None + if isinstance(attr, ET.Element): # If I receive an element here, get the children + attr = list(attr) + if not isinstance(attr, (list, set)): + raise DeserializationError("Cannot deserialize as [{}] an object of type {}".format( + iter_type, + type(attr) + )) + return [self.deserialize_data(a, iter_type) for a in attr] + + def deserialize_dict(self, attr, dict_type): + """Deserialize a dictionary. + + :param dict/list attr: Dictionary to be deserialized. Also accepts + a list of key, value pairs. + :param str dict_type: The object type of the items in the dictionary. + :rtype: dict + """ + if isinstance(attr, list): + return {x['key']: self.deserialize_data(x['value'], dict_type) for x in attr} + + if isinstance(attr, ET.Element): + # Transform value into {"Key": "value"} + attr = {el.tag: el.text for el in attr} + return {k: self.deserialize_data(v, dict_type) for k, v in attr.items()} + + def deserialize_object(self, attr, **kwargs): + """Deserialize a generic object. + This will be handled as a dictionary. + + :param dict attr: Dictionary to be deserialized. + :rtype: dict + :raises: TypeError if non-builtin datatype encountered. + """ + if attr is None: + return None + if isinstance(attr, ET.Element): + # Do no recurse on XML, just return the tree as-is + return attr + if isinstance(attr, basestring): + return self.deserialize_basic(attr, 'str') + obj_type = type(attr) + if obj_type in self.basic_types: + return self.deserialize_basic(attr, self.basic_types[obj_type]) + if obj_type is _long_type: + return self.deserialize_long(attr) + + if obj_type == dict: + deserialized = {} + for key, value in attr.items(): + try: + deserialized[key] = self.deserialize_object( + value, **kwargs) + except ValueError: + deserialized[key] = None + return deserialized + + if obj_type == list: + deserialized = [] + for obj in attr: + try: + deserialized.append(self.deserialize_object( + obj, **kwargs)) + except ValueError: + pass + return deserialized + + else: + error = "Cannot deserialize generic object with type: " + raise TypeError(error + str(obj_type)) + + def deserialize_basic(self, attr, data_type): + """Deserialize basic builtin data type from string. + Will attempt to convert to str, int, float and bool. + This function will also accept '1', '0', 'true' and 'false' as + valid bool values. + + :param str attr: response string to be deserialized. + :param str data_type: deserialization data type. + :rtype: str, int, float or bool + :raises: TypeError if string format is not valid. + """ + # If we're here, data is supposed to be a basic type. + # If it's still an XML node, take the text + if isinstance(attr, ET.Element): + attr = attr.text + if not attr: + if data_type == "str": + # None or '', node is empty string. + return '' + else: + # None or '', node with a strong type is None. + # Don't try to model "empty bool" or "empty int" + return None + + if data_type == 'bool': + if attr in [True, False, 1, 0]: + return bool(attr) + elif isinstance(attr, basestring): + if attr.lower() in ['true', '1']: + return True + elif attr.lower() in ['false', '0']: + return False + raise TypeError("Invalid boolean value: {}".format(attr)) + + if data_type == 'str': + return self.deserialize_unicode(attr) + return eval(data_type)(attr) # nosec + + @staticmethod + def deserialize_unicode(data): + """Preserve unicode objects in Python 2, otherwise return data + as a string. + + :param str data: response string to be deserialized. + :rtype: str or unicode + """ + # We might be here because we have an enum modeled as string, + # and we try to deserialize a partial dict with enum inside + if isinstance(data, Enum): + return data + + # Consider this is real string + try: + if isinstance(data, unicode): + return data + except NameError: + return str(data) + else: + return str(data) + + @staticmethod + def deserialize_enum(data, enum_obj): + """Deserialize string into enum object. + + If the string is not a valid enum value it will be returned as-is + and a warning will be logged. + + :param str data: Response string to be deserialized. If this value is + None or invalid it will be returned as-is. + :param Enum enum_obj: Enum object to deserialize to. + :rtype: Enum + """ + if isinstance(data, enum_obj) or data is None: + return data + if isinstance(data, Enum): + data = data.value + if isinstance(data, int): + # Workaround. We might consider remove it in the future. + # https://github.com/Azure/azure-rest-api-specs/issues/141 + try: + return list(enum_obj.__members__.values())[data] + except IndexError: + error = "{!r} is not a valid index for enum {!r}" + raise DeserializationError(error.format(data, enum_obj)) + try: + return enum_obj(str(data)) + except ValueError: + for enum_value in enum_obj: + if enum_value.value.lower() == str(data).lower(): + return enum_value + # We don't fail anymore for unknown value, we deserialize as a string + _LOGGER.warning("Deserializer is not able to find %s as valid enum in %s", data, enum_obj) + return Deserializer.deserialize_unicode(data) + + @staticmethod + def deserialize_bytearray(attr): + """Deserialize string into bytearray. + + :param str attr: response string to be deserialized. + :rtype: bytearray + :raises: TypeError if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + return bytearray(b64decode(attr)) + + @staticmethod + def deserialize_base64(attr): + """Deserialize base64 encoded string into string. + + :param str attr: response string to be deserialized. + :rtype: bytearray + :raises: TypeError if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + padding = '=' * (3 - (len(attr) + 3) % 4) + attr = attr + padding + encoded = attr.replace('-', '+').replace('_', '/') + return b64decode(encoded) + + @staticmethod + def deserialize_decimal(attr): + """Deserialize string into Decimal object. + + :param str attr: response string to be deserialized. + :rtype: Decimal + :raises: DeserializationError if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + try: + return decimal.Decimal(attr) + except decimal.DecimalException as err: + msg = "Invalid decimal {}".format(attr) + raise_with_traceback(DeserializationError, msg, err) + + @staticmethod + def deserialize_long(attr): + """Deserialize string into long (Py2) or int (Py3). + + :param str attr: response string to be deserialized. + :rtype: long or int + :raises: ValueError if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + return _long_type(attr) + + @staticmethod + def deserialize_duration(attr): + """Deserialize ISO-8601 formatted string into TimeDelta object. + + :param str attr: response string to be deserialized. + :rtype: TimeDelta + :raises: DeserializationError if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + try: + duration = isodate.parse_duration(attr) + except(ValueError, OverflowError, AttributeError) as err: + msg = "Cannot deserialize duration object." + raise_with_traceback(DeserializationError, msg, err) + else: + return duration + + @staticmethod + def deserialize_date(attr): + """Deserialize ISO-8601 formatted string into Date object. + + :param str attr: response string to be deserialized. + :rtype: Date + :raises: DeserializationError if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + if re.search(r"[^\W\d_]", attr, re.I + re.U): + raise DeserializationError("Date must have only digits and -. Received: %s" % attr) + # This must NOT use defaultmonth/defaultday. Using None ensure this raises an exception. + return isodate.parse_date(attr, defaultmonth=None, defaultday=None) + + @staticmethod + def deserialize_time(attr): + """Deserialize ISO-8601 formatted string into time object. + + :param str attr: response string to be deserialized. + :rtype: datetime.time + :raises: DeserializationError if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + if re.search(r"[^\W\d_]", attr, re.I + re.U): + raise DeserializationError("Date must have only digits and -. Received: %s" % attr) + return isodate.parse_time(attr) + + @staticmethod + def deserialize_rfc(attr): + """Deserialize RFC-1123 formatted string into Datetime object. + + :param str attr: response string to be deserialized. + :rtype: Datetime + :raises: DeserializationError if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + try: + parsed_date = email.utils.parsedate_tz(attr) + date_obj = datetime.datetime( + *parsed_date[:6], + tzinfo=_FixedOffset(datetime.timedelta(minutes=(parsed_date[9] or 0)/60)) + ) + if not date_obj.tzinfo: + date_obj = date_obj.astimezone(tz=TZ_UTC) + except ValueError as err: + msg = "Cannot deserialize to rfc datetime object." + raise_with_traceback(DeserializationError, msg, err) + else: + return date_obj + + @staticmethod + def deserialize_iso(attr): + """Deserialize ISO-8601 formatted string into Datetime object. + + :param str attr: response string to be deserialized. + :rtype: Datetime + :raises: DeserializationError if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + try: + attr = attr.upper() + match = Deserializer.valid_date.match(attr) + if not match: + raise ValueError("Invalid datetime string: " + attr) + + check_decimal = attr.split('.') + if len(check_decimal) > 1: + decimal_str = "" + for digit in check_decimal[1]: + if digit.isdigit(): + decimal_str += digit + else: + break + if len(decimal_str) > 6: + attr = attr.replace(decimal_str, decimal_str[0:6]) + + date_obj = isodate.parse_datetime(attr) + test_utc = date_obj.utctimetuple() + if test_utc.tm_year > 9999 or test_utc.tm_year < 1: + raise OverflowError("Hit max or min date") + except(ValueError, OverflowError, AttributeError) as err: + msg = "Cannot deserialize datetime object." + raise_with_traceback(DeserializationError, msg, err) + else: + return date_obj + + @staticmethod + def deserialize_unix(attr): + """Serialize Datetime object into IntTime format. + This is represented as seconds. + + :param int attr: Object to be serialized. + :rtype: Datetime + :raises: DeserializationError if format invalid + """ + if isinstance(attr, ET.Element): + attr = int(attr.text) + try: + date_obj = datetime.datetime.fromtimestamp(attr, TZ_UTC) + except ValueError as err: + msg = "Cannot deserialize to unix datetime object." + raise_with_traceback(DeserializationError, msg, err) + else: + return date_obj \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_vendor.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_vendor.py new file mode 100644 index 000000000000..e12b61dea670 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_vendor.py @@ -0,0 +1,21 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + + + + +def _format_url_section(template, **kwargs): + components = template.split("/") + while components: + try: + return template.format(**kwargs) + except KeyError as key: + formatted_components = template.split("/") + components = [ + c for c in formatted_components if "{}".format(key.args[0]) not in c + ] + template = "/".join(components) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_version.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_version.py new file mode 100644 index 000000000000..d6cbe1e7868a --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_version.py @@ -0,0 +1,9 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +VERSION = "2.1-preview" diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/__init__.py new file mode 100644 index 000000000000..d806bb5ca508 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/__init__.py @@ -0,0 +1,20 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._client import RenderClient + +try: + from ._patch import __all__ as _patch_all + from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +except ImportError: + _patch_all = [] +from ._patch import patch_sdk as _patch_sdk +__all__ = ['RenderClient'] +__all__.extend([p for p in _patch_all if p not in __all__]) + +_patch_sdk() diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_client.py new file mode 100644 index 000000000000..6a89dbb64c5a --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_client.py @@ -0,0 +1,97 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from copy import deepcopy +from typing import Any, Awaitable, Optional, TYPE_CHECKING + +from azure.core import AsyncPipelineClient +from azure.core.rest import AsyncHttpResponse, HttpRequest + +from .. import models +from .._serialization import Deserializer, Serializer +from ._configuration import RenderClientConfiguration +from .operations import RenderV2Operations + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials_async import AsyncTokenCredential + +class RenderClient: # pylint: disable=client-accepts-api-version-keyword + """Azure Maps Render REST APIs. + + :ivar render_v2: RenderV2Operations operations + :vartype render_v2: azure.maps.render.aio.operations.RenderV2Operations + :param credential: Credential needed for the client to connect to Azure. Required. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param client_id: Specifies which account is intended for usage in conjunction with the Azure + AD security model. It represents a unique ID for the Azure Maps account and can be retrieved + from the Azure Maps management plane Account API. To use Azure AD security in Azure Maps see + the following `articles `_ for guidance. Default value is None. + :type client_id: str + :keyword endpoint: Service URL. Default value is "https://atlas.microsoft.com". + :paramtype endpoint: str + :keyword api_version: Api Version. Default value is "2.1". Note that overriding this default + value may result in unsupported behavior. + :paramtype api_version: str + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + client_id: Optional[str] = None, + *, + endpoint: str = "https://atlas.microsoft.com", + **kwargs: Any + ) -> None: + self._config = RenderClientConfiguration(credential=credential, client_id=client_id, **kwargs) + self._client = AsyncPipelineClient(base_url=endpoint, config=self._config, **kwargs) + + client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} + self._serialize = Serializer(client_models) + self._deserialize = Deserializer(client_models) + self._serialize.client_side_validation = False + self.render_v2 = RenderV2Operations( + self._client, self._config, self._serialize, self._deserialize + ) + + + def send_request( + self, + request: HttpRequest, + **kwargs: Any + ) -> Awaitable[AsyncHttpResponse]: + """Runs the network request through the client's chained policies. + + >>> from azure.core.rest import HttpRequest + >>> request = HttpRequest("GET", "https://www.example.org/") + + >>> response = await client.send_request(request) + + + For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request + + :param request: The network request you want to make. Required. + :type request: ~azure.core.rest.HttpRequest + :keyword bool stream: Whether the response payload will be streamed. Defaults to False. + :return: The response of your network call. Does not do error handling on your response. + :rtype: ~azure.core.rest.AsyncHttpResponse + """ + + request_copy = deepcopy(request) + request_copy.url = self._client.format_url(request_copy.url) + return self._client.send_request(request_copy, **kwargs) + + async def close(self) -> None: + await self._client.close() + + async def __aenter__(self) -> "RenderClient": + await self._client.__aenter__() + return self + + async def __aexit__(self, *exc_details) -> None: + await self._client.__aexit__(*exc_details) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_configuration.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_configuration.py new file mode 100644 index 000000000000..627a85b2002b --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_configuration.py @@ -0,0 +1,72 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from typing import Any, Optional, TYPE_CHECKING + +from azure.core.configuration import Configuration +from azure.core.pipeline import policies + +from .._version import VERSION + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials_async import AsyncTokenCredential + + +class RenderClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes + """Configuration for RenderClient. + + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credential: Credential needed for the client to connect to Azure. Required. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param client_id: Specifies which account is intended for usage in conjunction with the Azure + AD security model. It represents a unique ID for the Azure Maps account and can be retrieved + from the Azure Maps management plane Account API. To use Azure AD security in Azure Maps see + the following `articles `_ for guidance. Default value is None. + :type client_id: str + :keyword api_version: Api Version. Default value is "2.1". Note that overriding this default + value may result in unsupported behavior. + :paramtype api_version: str + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + client_id: Optional[str] = None, + **kwargs: Any + ) -> None: + super(RenderClientConfiguration, self).__init__(**kwargs) + api_version = kwargs.pop('api_version', "2.1") # type: str + + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + + self.credential = credential + self.client_id = client_id + self.api_version = api_version + self.credential_scopes = kwargs.pop('credential_scopes', ['https://atlas.microsoft.com/.default']) + kwargs.setdefault('sdk_moniker', 'maps-render/{}'.format(VERSION)) + self._configure(**kwargs) + + def _configure( + self, + **kwargs: Any + ) -> None: + self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get('http_logging_policy') or policies.HttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get('retry_policy') or policies.AsyncRetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get('redirect_policy') or policies.AsyncRedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get('authentication_policy') + if self.credential and not self.authentication_policy: + self.authentication_policy = policies.AsyncBearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_patch.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_patch.py new file mode 100644 index 000000000000..0ad201a8c586 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_patch.py @@ -0,0 +1,19 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/__init__.py new file mode 100644 index 000000000000..0a7e4b5f0754 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/__init__.py @@ -0,0 +1,18 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._operations import RenderV2Operations + +from ._patch import __all__ as _patch_all +from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +from ._patch import patch_sdk as _patch_sdk +__all__ = [ + 'RenderV2Operations', +] +__all__.extend([p for p in _patch_all if p not in __all__]) +_patch_sdk() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_operations.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_operations.py new file mode 100644 index 000000000000..1fd71d36ba1a --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_operations.py @@ -0,0 +1,1326 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +import datetime +from typing import Any, AsyncIterator, Callable, Dict, List, Optional, TypeVar, Union + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator_async import distributed_trace_async + +from ... import models as _models +from ...operations._operations import build_render_v2_get_copyright_caption_request, build_render_v2_get_copyright_for_tile_request, build_render_v2_get_copyright_for_world_request, build_render_v2_get_copyright_from_bounding_box_request, build_render_v2_get_map_attribution_request, build_render_v2_get_map_state_tile_request, build_render_v2_get_map_static_image_request, build_render_v2_get_map_tile_request, build_render_v2_get_map_tileset_request +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class RenderV2Operations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.maps.render.aio.RenderClient`'s + :attr:`render_v2` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + + @distributed_trace_async + async def get_map_tile( + self, + *, + tileset_id: Union[str, "_models.TilesetID"], + z: int, + x: int, + y: int, + time_stamp: Optional[datetime.datetime] = None, + tile_size: Optional[Union[str, "_models.MapTileSize"]] = None, + language: Optional[str] = None, + localized_map_view: Optional[Union[str, "_models.LocalizedMapView"]] = None, + **kwargs: Any + ) -> AsyncIterator[bytes]: + """**Applies to:** see pricing `tiers `_. + + The Get Map Tiles API allows users to request map tiles in vector or raster formats typically + to be integrated into a map control or SDK. Some example tiles that can be requested are Azure + Maps road tiles, real-time Weather Radar tiles or the map tiles created using `Azure Maps + Creator `_. By default, Azure Maps uses vector tiles for its web map + control (Web SDK) and Android SDK. + + :keyword tileset_id: A tileset is a collection of raster or vector data broken up into a + uniform grid of square tiles at preset zoom levels. Every tileset has a **tilesetId** to use + when making requests. The **tilesetId** for tilesets created using `Azure Maps Creator + `_ are generated through the `Tileset Create API + `_. The ready-to-use tilesets supplied + by Azure Maps are listed below. For example, microsoft.base. Known values are: + "microsoft.base", "microsoft.base.labels", "microsoft.base.hybrid", "microsoft.terra.main", + "microsoft.base.road", "microsoft.base.darkgrey", "microsoft.base.labels.road", + "microsoft.base.labels.darkgrey", "microsoft.base.hybrid.road", + "microsoft.base.hybrid.darkgrey", "microsoft.imagery", "microsoft.weather.radar.main", + "microsoft.weather.infrared.main", "microsoft.dem", "microsoft.dem.contours", + "microsoft.traffic.absolute", "microsoft.traffic.absolute.main", "microsoft.traffic.relative", + "microsoft.traffic.relative.main", "microsoft.traffic.relative.dark", + "microsoft.traffic.delay", "microsoft.traffic.delay.main", "microsoft.traffic.reduced.main", + and "microsoft.traffic.incident". Required. + :paramtype tileset_id: str or ~azure.maps.render.models.TilesetID + :keyword z: Zoom level for the desired tile. + + Please see `Zoom Levels and Tile Grid + `_ + for details. Required. + :paramtype z: int + :keyword x: X coordinate of the tile on zoom grid. Value must be in the range [0, + 2:code:``zoom`` -1]. + + Please see `Zoom Levels and Tile Grid + `_ for + details. Required. + :paramtype x: int + :keyword y: Y coordinate of the tile on zoom grid. Value must be in the range [0, + 2:code:``zoom`` -1]. + + Please see `Zoom Levels and Tile Grid + `_ for + details. Required. + :paramtype y: int + :keyword time_stamp: The desired date and time of the requested tile. This parameter must be + specified in the standard date-time format (e.g. 2019-11-14T16:03:00-08:00), as defined by `ISO + 8601 `_. This parameter is only supported when + tilesetId parameter is set to one of the values below. + + + * microsoft.weather.infrared.main: We provide tiles up to 3 hours in the past. Tiles are + available in 10-minute intervals. We round the timeStamp value to the nearest 10-minute time + frame. + * microsoft.weather.radar.main: We provide tiles up to 1.5 hours in the past and up to 2 hours + in the future. Tiles are available in 5-minute intervals. We round the timeStamp value to the + nearest 5-minute time frame. Default value is None. + :paramtype time_stamp: ~datetime.datetime + :keyword tile_size: The size of the returned map tile in pixels. Known values are: "256" and + "512". Default value is None. + :paramtype tile_size: str or ~azure.maps.render.models.MapTileSize + :keyword language: Language in which search results should be returned. Should be one of + supported IETF language tags, case insensitive. When data in specified language is not + available for a specific field, default language is used. + + Please refer to `Supported Languages + `_ for details. Default value + is None. + :paramtype language: str + :keyword localized_map_view: The View parameter (also called the "user region" parameter) + allows you to show the correct maps for a certain country/region for geopolitically disputed + regions. Different countries have different views of such regions, and the View parameter + allows your application to comply with the view required by the country your application will + be serving. By default, the View parameter is set to “Unified” even if you haven’t defined it + in the request. It is your responsibility to determine the location of your users, and then + set the View parameter correctly for that location. Alternatively, you have the option to set + ‘View=Auto’, which will return the map data based on the IP address of the request. The View + parameter in Azure Maps must be used in compliance with applicable laws, including those + regarding mapping, of the country where maps, images and other data and third party content + that you are authorized to access via Azure Maps is made available. Example: view=IN. + + Please refer to `Supported Views `_ for details and + to see the available Views. Known values are: "AE", "AR", "BH", "IN", "IQ", "JO", "KW", "LB", + "MA", "OM", "PK", "PS", "QA", "SA", "SY", "YE", "Auto", and "Unified". Default value is None. + :paramtype localized_map_view: str or ~azure.maps.render.models.LocalizedMapView + :return: Async iterator of the response bytes + :rtype: AsyncIterator[bytes] + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[AsyncIterator[bytes]] + + + request = build_render_v2_get_map_tile_request( + tileset_id=tileset_id, + z=z, + x=x, + y=y, + time_stamp=time_stamp, + tile_size=tile_size, + language=language, + localized_map_view=localized_map_view, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=True, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + response_headers = {} + response_headers['Content-Type']=self._deserialize('str', response.headers.get('Content-Type')) + + deserialized = response.iter_bytes() + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + + + + @distributed_trace_async + async def get_map_tileset( + self, + *, + tileset_id: Union[str, "_models.TilesetID"], + **kwargs: Any + ) -> _models.MapTileset: + """**Applies to:** see pricing `tiers `_. + + The Get Map Tileset API allows users to request metadata for a tileset. + + :keyword tileset_id: A tileset is a collection of raster or vector data broken up into a + uniform grid of square tiles at preset zoom levels. Every tileset has a **tilesetId** to use + when making requests. The **tilesetId** for tilesets created using `Azure Maps Creator + `_ are generated through the `Tileset Create API + `_. The ready-to-use tilesets supplied + by Azure Maps are listed below. For example, microsoft.base. Known values are: + "microsoft.base", "microsoft.base.labels", "microsoft.base.hybrid", "microsoft.terra.main", + "microsoft.base.road", "microsoft.base.darkgrey", "microsoft.base.labels.road", + "microsoft.base.labels.darkgrey", "microsoft.base.hybrid.road", + "microsoft.base.hybrid.darkgrey", "microsoft.imagery", "microsoft.weather.radar.main", + "microsoft.weather.infrared.main", "microsoft.dem", "microsoft.dem.contours", + "microsoft.traffic.absolute", "microsoft.traffic.absolute.main", "microsoft.traffic.relative", + "microsoft.traffic.relative.main", "microsoft.traffic.relative.dark", + "microsoft.traffic.delay", "microsoft.traffic.delay.main", "microsoft.traffic.reduced.main", + and "microsoft.traffic.incident". Required. + :paramtype tileset_id: str or ~azure.maps.render.models.TilesetID + :return: MapTileset + :rtype: ~azure.maps.render.models.MapTileset + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[_models.MapTileset] + + + request = build_render_v2_get_map_tileset_request( + tileset_id=tileset_id, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('MapTileset', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + + + @distributed_trace_async + async def get_map_attribution( + self, + *, + tileset_id: Union[str, "_models.TilesetID"], + zoom: int, + bounds: List[float], + **kwargs: Any + ) -> _models.MapAttribution: + """**Applies to:** see pricing `tiers `_. + + The Get Map Attribution API allows users to request map copyright attribution information for a + section of a tileset. + + :keyword tileset_id: A tileset is a collection of raster or vector data broken up into a + uniform grid of square tiles at preset zoom levels. Every tileset has a **tilesetId** to use + when making requests. The **tilesetId** for tilesets created using `Azure Maps Creator + `_ are generated through the `Tileset Create API + `_. The ready-to-use tilesets supplied + by Azure Maps are listed below. For example, microsoft.base. Known values are: + "microsoft.base", "microsoft.base.labels", "microsoft.base.hybrid", "microsoft.terra.main", + "microsoft.base.road", "microsoft.base.darkgrey", "microsoft.base.labels.road", + "microsoft.base.labels.darkgrey", "microsoft.base.hybrid.road", + "microsoft.base.hybrid.darkgrey", "microsoft.imagery", "microsoft.weather.radar.main", + "microsoft.weather.infrared.main", "microsoft.dem", "microsoft.dem.contours", + "microsoft.traffic.absolute", "microsoft.traffic.absolute.main", "microsoft.traffic.relative", + "microsoft.traffic.relative.main", "microsoft.traffic.relative.dark", + "microsoft.traffic.delay", "microsoft.traffic.delay.main", "microsoft.traffic.reduced.main", + and "microsoft.traffic.incident". Required. + :paramtype tileset_id: str or ~azure.maps.render.models.TilesetID + :keyword zoom: Zoom level for the desired map attribution. Required. + :paramtype zoom: int + :keyword bounds: The string that represents the rectangular area of a bounding box. The bounds + parameter is defined by the 4 bounding box coordinates, with WGS84 longitude and latitude of + the southwest corner followed by WGS84 longitude and latitude of the northeast corner. The + string is presented in the following format: ``[SouthwestCorner_Longitude, + SouthwestCorner_Latitude, NortheastCorner_Longitude, NortheastCorner_Latitude]``. Required. + :paramtype bounds: list[float] + :return: MapAttribution + :rtype: ~azure.maps.render.models.MapAttribution + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[_models.MapAttribution] + + + request = build_render_v2_get_map_attribution_request( + tileset_id=tileset_id, + zoom=zoom, + bounds=bounds, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('MapAttribution', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + + + @distributed_trace_async + async def get_map_state_tile( + self, + *, + z: int, + x: int, + y: int, + stateset_id: str, + **kwargs: Any + ) -> AsyncIterator[bytes]: + """**Applies to:** see pricing `tiers `_. + + Fetches state tiles in vector format typically to be integrated into indoor maps module of map + control or SDK. The map control will call this API after user turns on dynamic styling (see + `Zoom Levels and Tile Grid + `_\ + ). + + :keyword z: Zoom level for the desired tile. + + Please see `Zoom Levels and Tile Grid + `_ + for details. Required. + :paramtype z: int + :keyword x: X coordinate of the tile on zoom grid. Value must be in the range [0, + 2:code:``zoom`` -1]. + + Please see `Zoom Levels and Tile Grid + `_ for + details. Required. + :paramtype x: int + :keyword y: Y coordinate of the tile on zoom grid. Value must be in the range [0, + 2:code:``zoom`` -1]. + + Please see `Zoom Levels and Tile Grid + `_ for + details. Required. + :paramtype y: int + :keyword stateset_id: The stateset id. Required. + :paramtype stateset_id: str + :return: Async iterator of the response bytes + :rtype: AsyncIterator[bytes] + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[AsyncIterator[bytes]] + + + request = build_render_v2_get_map_state_tile_request( + z=z, + x=x, + y=y, + stateset_id=stateset_id, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=True, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + response_headers = {} + response_headers['Content-Type']=self._deserialize('str', response.headers.get('Content-Type')) + + deserialized = response.iter_bytes() + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + + + + @distributed_trace_async + async def get_copyright_caption( + self, + format: Union[str, "_models.ResponseFormat"] = "json", + **kwargs: Any + ) -> _models.CopyrightCaption: + """**Applies to:** see pricing `tiers `_. + + Copyrights API is designed to serve copyright information for Render Tile + service. In addition to basic copyright for the whole map, API is serving + specific groups of copyrights for some countries. + + As an alternative to copyrights for map request, one can receive captions + for displaying the map provider information on the map. + + :param format: Desired format of the response. Value can be either *json* or *xml*. Known + values are: "json" and "xml". Default value is "json". + :type format: str or ~azure.maps.render.models.ResponseFormat + :return: CopyrightCaption + :rtype: ~azure.maps.render.models.CopyrightCaption + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[_models.CopyrightCaption] + + + request = build_render_v2_get_copyright_caption_request( + format=format, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('CopyrightCaption', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + + + @distributed_trace_async + async def get_map_static_image( + self, + format: Union[str, "_models.RasterTileFormat"] = "png", + *, + layer: Optional[Union[str, "_models.StaticMapLayer"]] = None, + style: Optional[Union[str, "_models.MapImageStyle"]] = None, + zoom: Optional[int] = None, + center: Optional[List[float]] = None, + bounding_box_private: Optional[List[float]] = None, + height: Optional[int] = None, + width: Optional[int] = None, + language: Optional[str] = None, + localized_map_view: Optional[Union[str, "_models.LocalizedMapView"]] = None, + pins: Optional[List[str]] = None, + path: Optional[List[str]] = None, + **kwargs: Any + ) -> AsyncIterator[bytes]: + """**Applies to:** see pricing `tiers `_. + + The static image service renders a user-defined, rectangular image containing a map section + using a zoom level from 0 to 20. The static image service renders a user-defined, rectangular + image containing a map section using a zoom level from 0 to 20. The supported resolution range + for the map image is from 1x1 to 8192x8192. If you are deciding when to use the static image + service over the map tile service, you may want to consider how you would like to interact with + the rendered map. If the map contents will be relatively unchanging, a static map is a good + choice. If you want to support a lot of zooming, panning and changing of the map content, the + map tile service would be a better choice. + + Service also provides Image Composition functionality to get a static image back with + additional data like; pushpins and geometry overlays with following S0 and S1 capabilities. + + In S0 you can: + + + * Render up to 5 pushpins specified in the request + * Provide one custom image for the pins referenced in the request + * Add labels to the pushpins + + In S1 you can: + + + * Render pushpins through `Azure Maps Data Service `_ + * Specify multiple pushpin styles + * Render circle, polyline and polygon geometry types. + * Render of supported GeoJSON geometry types uploaded through `Azure Maps Data Service + `_ + + Please see `How-to-Guide `_ for detailed + examples. + + *Note* : Either **center** or **bbox** parameter must be supplied to the + API. + :code:`
`:code:`
` + The supported Lat and Lon ranges when using the **bbox** parameter, are as follows: + :code:`
`:code:`
` + + .. list-table:: + :header-rows: 1 + + * - Zoom Level + - Max Lon Range + - Max Lat Range + * - 0 + - 360.0 + - 170.0 + * - 1 + - 360.0 + - 170.0 + * - 2 + - 360.0 + - 170.0 + * - 3 + - 360.0 + - 170.0 + * - 4 + - 360.0 + - 170.0 + * - 5 + - 180.0 + - 85.0 + * - 6 + - 90.0 + - 42.5 + * - 7 + - 45.0 + - 21.25 + * - 8 + - 22.5 + - 10.625 + * - 9 + - 11.25 + - 5.3125 + * - 10 + - 5.625 + - 2.62625 + * - 11 + - 2.8125 + - 1.328125 + * - 12 + - 1.40625 + - 0.6640625 + * - 13 + - 0.703125 + - 0.33203125 + * - 14 + - 0.3515625 + - 0.166015625 + * - 15 + - 0.17578125 + - 0.0830078125 + * - 16 + - 0.087890625 + - 0.0415039063 + * - 17 + - 0.0439453125 + - 0.0207519531 + * - 18 + - 0.0219726563 + - 0.0103759766 + * - 19 + - 0.0109863281 + - 0.0051879883 + * - 20 + - 0.0054931641 + - 0.0025939941. + + :param format: Desired format of the response. Possible value: png. "png" Default value is + "png". + :type format: str or ~azure.maps.render.models.RasterTileFormat + :keyword layer: Map layer requested. If layer is set to labels or hybrid, the format should be + png. Known values are: "basic", "hybrid", and "labels". Default value is None. + :paramtype layer: str or ~azure.maps.render.models.StaticMapLayer + :keyword style: Map style to be returned. Possible values are main and dark. Known values are: + "main" and "dark". Default value is None. + :paramtype style: str or ~azure.maps.render.models.MapImageStyle + :keyword zoom: Desired zoom level of the map. Zoom value must be in the range: 0-20 + (inclusive). Default value is 12.:code:`
`:code:`
`Please see `Zoom Levels and Tile Grid + `_ + for details. Default value is None. + :paramtype zoom: int + :keyword center: Coordinates of the center point. Format: 'lon,lat'. Projection used + + + * EPSG:3857. Longitude range: -180 to 180. Latitude range: -85 to 85. + + Note: Either center or bbox are required parameters. They are + mutually exclusive. Default value is None. + :paramtype center: list[float] + :keyword bounding_box_private: Bounding box. Projection used - EPSG:3857. Format : 'minLon, + minLat, + maxLon, maxLat'. + + Note: Either bbox or center are required + parameters. They are mutually exclusive. It shouldn’t be used with + height or width. + + The maximum allowed ranges for Lat and Lon are defined for each zoom level + in the table at the top of this page. Default value is None. + :paramtype bounding_box_private: list[float] + :keyword height: Height of the resulting image in pixels. Range is 1 to 8192. Default + is 512. It shouldn’t be used with bbox. Default value is None. + :paramtype height: int + :keyword width: Width of the resulting image in pixels. Range is 1 to 8192. Default is 512. It + shouldn’t be used with bbox. Default value is None. + :paramtype width: int + :keyword language: Language in which search results should be returned. Should be one of + supported IETF language tags, case insensitive. When data in specified language is not + available for a specific field, default language is used. + + Please refer to `Supported Languages + `_ for details. Default value + is None. + :paramtype language: str + :keyword localized_map_view: The View parameter (also called the "user region" parameter) + allows you to show the correct maps for a certain country/region for geopolitically disputed + regions. Different countries have different views of such regions, and the View parameter + allows your application to comply with the view required by the country your application will + be serving. By default, the View parameter is set to “Unified” even if you haven’t defined it + in the request. It is your responsibility to determine the location of your users, and then + set the View parameter correctly for that location. Alternatively, you have the option to set + ‘View=Auto’, which will return the map data based on the IP address of the request. The View + parameter in Azure Maps must be used in compliance with applicable laws, including those + regarding mapping, of the country where maps, images and other data and third party content + that you are authorized to access via Azure Maps is made available. Example: view=IN. + + Please refer to `Supported Views `_ for details and + to see the available Views. Known values are: "AE", "AR", "BH", "IN", "IQ", "JO", "KW", "LB", + "MA", "OM", "PK", "PS", "QA", "SA", "SY", "YE", "Auto", and "Unified". Default value is None. + :paramtype localized_map_view: str or ~azure.maps.render.models.LocalizedMapView + :keyword pins: Pushpin style and instances. Use this parameter to optionally add pushpins to + the image. + The pushpin style describes the appearance of the pushpins, and the instances specify + the coordinates of the pushpins and optional labels for each pin. (Be sure to properly + URL-encode values of this + parameter since it will contain reserved characters such as pipes and punctuation.) + + The Azure Maps account S0 SKU only supports a single instance of the pins parameter. Other + SKUs + allow multiple instances of the pins parameter to specify multiple pin styles. + + To render a pushpin at latitude 45°N and longitude 122°W using the default built-in pushpin + style, add the + querystring parameter + + ``pins=default||-122 45`` + + Note that the longitude comes before the latitude. + After URL encoding this will look like + + ``pins=default%7C%7C-122+45`` + + All of the examples here show the pins + parameter without URL encoding, for clarity. + + To render a pin at multiple locations, separate each location with a pipe character. For + example, use + + ``pins=default||-122 45|-119.5 43.2|-121.67 47.12`` + + The S0 Azure Maps account SKU only allows five pushpins. Other account SKUs do not have this + limitation. + + Style Modifiers + ^^^^^^^^^^^^^^^ + + You can modify the appearance of the pins by adding style modifiers. These are added after the + style but before + the locations and labels. Style modifiers each have a two-letter name. These abbreviated names + are used to help + reduce the length of the URL. + + To change the color of the pushpin, use the 'co' style modifier and specify the color using + the HTML/CSS RGB color + format which is a six-digit hexadecimal number (the three-digit form is not supported). For + example, to use + a deep pink color which you would specify as #FF1493 in CSS, use + + ``pins=default|coFF1493||-122 45`` + + Pushpin Labels + ^^^^^^^^^^^^^^ + + To add a label to the pins, put the label in single quotes just before the coordinates. For + example, to label + three pins with the values '1', '2', and '3', use + + ``pins=default||'1'-122 45|'2'-119.5 43.2|'3'-121.67 47.12`` + + There is a built in pushpin style called 'none' that does not display a pushpin image. You can + use this if + you want to display labels without any pin image. For example, + + ``pins=none||'A'-122 45|'B'-119.5 43.2`` + + To change the color of the pushpin labels, use the 'lc' label color style modifier. For + example, to use pink + pushpins with black labels, use + + ``pins=default|coFF1493|lc000000||-122 45`` + + To change the size of the labels, use the 'ls' label size style modifier. The label size + represents the approximate + height of the label text in pixels. For example, to increase the label size to 12, use + + ``pins=default|ls12||'A'-122 45|'B'-119 43`` + + The labels are centered at the pushpin 'label anchor.' The anchor location is predefined for + built-in pushpins and + is at the top center of custom pushpins (see below). To override the label anchor, using the + 'la' style modifier + and provide X and Y pixel coordinates for the anchor. These coordinates are relative to the + top left corner of the + pushpin image. Positive X values move the anchor to the right, and positive Y values move the + anchor down. For example, + to position the label anchor 10 pixels right and 4 pixels above the top left corner of the + pushpin image, + use + + ``pins=default|la10 -4||'A'-122 45|'B'-119 43`` + + Custom Pushpins + ^^^^^^^^^^^^^^^ + + To use a custom pushpin image, use the word 'custom' as the pin style name, and then specify a + URL after the + location and label information. Use two pipe characters to indicate that you're done + specifying locations and are + starting the URL. For example, + + ``pins=custom||-122 45||http://contoso.com/pushpins/red.png`` + + After URL encoding, this would look like + + ``pins=custom%7C%7C-122+45%7C%7Chttp%3A%2F%2Fcontoso.com%2Fpushpins%2Fred.png`` + + By default, custom pushpin images are drawn centered at the pin coordinates. This usually + isn't ideal as it obscures + the location that you're trying to highlight. To override the anchor location of the pin + image, use the 'an' + style modifier. This uses the same format as the 'la' label anchor style modifier. For + example, if your custom + pin image has the tip of the pin at the top left corner of the image, you can set the anchor + to that spot by + using + + ``pins=custom|an0 0||-122 45||http://contoso.com/pushpins/red.png`` + + Note: If you use the 'co' color modifier with a custom pushpin image, the specified color will + replace the RGB + channels of the pixels in the image but will leave the alpha (opacity) channel unchanged. This + would usually + only be done with a solid-color custom image. + + Getting Pushpins from Azure Maps Data Storage + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + For all Azure Maps account SKUs other than S0, + the pushpin location information can be obtained from Azure Maps Data Storage. After uploading + a GeoJSON document containing pin locations, the Data Storage service returns a Unique Data ID + (UDID) that you can use + to reference the data in the pins parameter. + + To use the point geometry from an uploaded GeoJSON document as the pin locations, specify the + UDID in the locations + section of the pins parameter. For example, + + ``pins=default||udid-29dc105a-dee7-409f-a3f9-22b066ae4713`` + + Note that + only point and multipoint geometry, points and multipoints from geometry collections, and + point geometry from features + will be used. Linestring and polygon geometry will be ignored. If the point comes from a + feature and the feature + has a string property called "label", the value of that property will be used as the label for + the pin. + + You can mix pin locations from Data Storage and pin locations specified in the pins parameter. + Any of the pipe-delimited + pin locations can be a longitude and latitude or a UDID. For example, + + ``pins=default||-122 45|udid-29dc105a-dee7-409f-a3f9-22b066ae4713|-119 43`` + + Scale, Rotation, and Opacity + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + You can make pushpins and their labels larger or smaller by using the 'sc' scale style + modifier. This is a + value greater than zero. A value of 1 is the standard scale. Values larger than 1 will make + the pins larger, and + values smaller than 1 will make them smaller. For example, to draw the pushpins 50% larger + than normal, use + + ``pins=default|sc1.5||-122 45`` + + You can rotate pushpins and their labels by using the 'ro' rotation style modifier. This is a + number of degrees + of clockwise rotation. Use a negative number to rotate counter-clockwise. For example, to + rotate the pushpins + 90 degrees clockwise and double their size, use + + ``pins=default|ro90|sc2||-122 45`` + + You can make pushpins and their labels partially transparent by specifying the 'al' alpha + style modifier. + This is a number between 0 and 1 indicating the opacity of the pushpins. Zero makes them + completely transparent + (and not visible) and 1 makes them completely opaque (which is the default). For example, to + make pushpins + and their labels only 67% opaque, use + + ``pins=default|al.67||-122 45`` + + Style Modifier Summary + ^^^^^^^^^^^^^^^^^^^^^^ + + .. list-table:: + :header-rows: 1 + + * - Modifier + - Description + - Range + * - al + - Alpha (opacity) + - 0 to 1 + * - an + - Pin anchor + - * + * - co + - Pin color + - 000000 to FFFFFF + * - la + - Label anchor + - * + * - lc + - Label color + - 000000 to FFFFFF + * - ls + - Label size + - Greater than 0 + * - ro + - Rotation + - -360 to 360 + * - sc + - Scale + - Greater than 0 + + + + * X and Y coordinates can be anywhere within pin image or a margin around it. + The margin size is the minimum of the pin width and height. Default value is None. + :paramtype pins: list[str] + :keyword path: Path style and locations. Use this parameter to optionally add lines, polygons + or circles to the image. + The path style describes the appearance of the line and fill. (Be sure to properly URL-encode + values of this + parameter since it will contain reserved characters such as pipes and punctuation.) + + Path parameter is supported in Azure Maps account SKU starting with S1. Multiple instances of + the path parameter + allow to specify multiple geometries with their styles. Number of parameters per request is + limited to 10 and + number of locations is limited to 100 per path. + + To render a circle with radius 100 meters and center point at latitude 45°N and longitude + 122°W using the default style, add the + querystring parameter + + ``path=ra100||-122 45`` + + Note that the longitude comes before the latitude. + After URL encoding this will look like + + ``path=ra100%7C%7C-122+45`` + + All of the examples here show the path parameter without URL encoding, for clarity. + + To render a line, separate each location with a pipe character. For example, use + + ``path=||-122 45|-119.5 43.2|-121.67 47.12`` + + To render a polygon, last location must be equal to the start location. For example, use + + ``path=||-122 45|-119.5 43.2|-121.67 47.12|-122 45`` + + Longitude and latitude values for locations of lines and polygons can be in the range from + -360 to 360 to allow for rendering of geometries crossing the anti-meridian. + + Style Modifiers + ^^^^^^^^^^^^^^^ + + You can modify the appearance of the path by adding style modifiers. These are added before + the locations. + Style modifiers each have a two-letter name. These abbreviated names are used to help reduce + the length + of the URL. + + To change the color of the outline, use the 'lc' style modifier and specify the color using + the HTML/CSS RGB color + format which is a six-digit hexadecimal number (the three-digit form is not supported). For + example, to use + a deep pink color which you would specify as #FF1493 in CSS, use + + ``path=lcFF1493||-122 45|-119.5 43.2`` + + Multiple style modifiers may be combined together to create a more complex visual style. + + ``lc0000FF|lw3|la0.60|fa0.50||-122.2 47.6|-122.2 47.7|-122.3 47.7|-122.3 47.6|-122.2 47.6`` + + Getting Path locations from Azure Maps Data Storage + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + For all Azure Maps account SKUs other than S0, the path location information can be obtained + from Azure Maps Data Storage. + After uploading a GeoJSON document containing path locations, the Data Storage service returns + a Unique Data ID (UDID) that you can use + to reference the data in the path parameter. + + To use the point geometry from an uploaded GeoJSON document as the path locations, specify the + UDID in the locations + section of the path parameter. For example, + + ``path=||udid-29dc105a-dee7-409f-a3f9-22b066ae4713`` + + Note the it is not allowed to mix path locations from Data Storage with locations specified in + the path parameter. + + Style Modifier Summary + ^^^^^^^^^^^^^^^^^^^^^^ + + .. list-table:: + :header-rows: 1 + + * - Modifier + - Description + - Range + * - lc + - Line color + - 000000 to FFFFFF + * - fc + - Fill color + - 000000 to FFFFFF + * - la + - Line alpha (opacity) + - 0 to 1 + * - fa + - Fill alpha (opacity) + - 0 to 1 + * - lw + - Line width + - Greater than 0 + * - ra + - Circle radius (meters) + - Greater than 0. Default value is None. + :paramtype path: list[str] + :return: Async iterator of the response bytes + :rtype: AsyncIterator[bytes] + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[AsyncIterator[bytes]] + + + request = build_render_v2_get_map_static_image_request( + format=format, + layer=layer, + style=style, + zoom=zoom, + center=center, + bounding_box_private=bounding_box_private, + height=height, + width=width, + language=language, + localized_map_view=localized_map_view, + pins=pins, + path=path, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=True, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + response_headers = {} + response_headers['Content-Type']=self._deserialize('str', response.headers.get('Content-Type')) + + deserialized = response.iter_bytes() + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + + + + @distributed_trace_async + async def get_copyright_from_bounding_box( + self, + format: Union[str, "_models.ResponseFormat"] = "json", + *, + south_west: List[float], + north_east: List[float], + include_text: Optional[Union[str, "_models.IncludeText"]] = None, + **kwargs: Any + ) -> _models.Copyright: + """**Applies to:** see pricing `tiers `_. + + Returns copyright information for a given bounding box. Bounding-box requests should specify + the minimum and maximum longitude and latitude (EPSG-3857) coordinates. + + :param format: Desired format of the response. Value can be either *json* or *xml*. Known + values are: "json" and "xml". Default value is "json". + :type format: str or ~azure.maps.render.models.ResponseFormat + :keyword south_west: Minimum coordinates (south-west point) of bounding box in latitude + longitude coordinate system. E.g. 52.41064,4.84228. Required. + :paramtype south_west: list[float] + :keyword north_east: Maximum coordinates (north-east point) of bounding box in latitude + longitude coordinate system. E.g. 52.41064,4.84228. Required. + :paramtype north_east: list[float] + :keyword include_text: Yes/no value to exclude textual data from response. Only images and + country names will be in response. Known values are: "yes" and "no". Default value is None. + :paramtype include_text: str or ~azure.maps.render.models.IncludeText + :return: Copyright + :rtype: ~azure.maps.render.models.Copyright + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[_models.Copyright] + + + request = build_render_v2_get_copyright_from_bounding_box_request( + format=format, + south_west=south_west, + north_east=north_east, + include_text=include_text, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('Copyright', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + + + @distributed_trace_async + async def get_copyright_for_tile( + self, + format: Union[str, "_models.ResponseFormat"] = "json", + *, + z: int, + x: int, + y: int, + include_text: Optional[Union[str, "_models.IncludeText"]] = None, + **kwargs: Any + ) -> _models.Copyright: + """**Applies to:** see pricing `tiers `_. + + Copyrights API is designed to serve copyright information for Render Tile service. In addition + to basic copyright for the whole map, API is serving specific groups of copyrights for some + countries. + Returns the copyright information for a given tile. To obtain the copyright information for a + particular tile, the request should specify the tile's zoom level and x and y coordinates (see: + Zoom Levels and Tile Grid). + + :param format: Desired format of the response. Value can be either *json* or *xml*. Known + values are: "json" and "xml". Default value is "json". + :type format: str or ~azure.maps.render.models.ResponseFormat + :keyword z: Zoom level for the desired tile. + + Please see `Zoom Levels and Tile Grid + `_ + for details. Required. + :paramtype z: int + :keyword x: X coordinate of the tile on zoom grid. Value must be in the range [0, + 2:code:``zoom`` -1]. + + Please see `Zoom Levels and Tile Grid + `_ for + details. Required. + :paramtype x: int + :keyword y: Y coordinate of the tile on zoom grid. Value must be in the range [0, + 2:code:``zoom`` -1]. + + Please see `Zoom Levels and Tile Grid + `_ for + details. Required. + :paramtype y: int + :keyword include_text: Yes/no value to exclude textual data from response. Only images and + country names will be in response. Known values are: "yes" and "no". Default value is None. + :paramtype include_text: str or ~azure.maps.render.models.IncludeText + :return: Copyright + :rtype: ~azure.maps.render.models.Copyright + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[_models.Copyright] + + + request = build_render_v2_get_copyright_for_tile_request( + format=format, + z=z, + x=x, + y=y, + include_text=include_text, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('Copyright', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + + + @distributed_trace_async + async def get_copyright_for_world( + self, + format: Union[str, "_models.ResponseFormat"] = "json", + *, + include_text: Optional[Union[str, "_models.IncludeText"]] = None, + **kwargs: Any + ) -> _models.Copyright: + """**Applies to:** see pricing `tiers `_. + + Copyrights API is designed to serve copyright information for Render Tile service. In addition + to basic copyright for the whole map, API is serving specific groups of copyrights for some + countries. + Returns the copyright information for the world. To obtain the default copyright information + for the whole world, do not specify a tile or bounding box. + + :param format: Desired format of the response. Value can be either *json* or *xml*. Known + values are: "json" and "xml". Default value is "json". + :type format: str or ~azure.maps.render.models.ResponseFormat + :keyword include_text: Yes/no value to exclude textual data from response. Only images and + country names will be in response. Known values are: "yes" and "no". Default value is None. + :paramtype include_text: str or ~azure.maps.render.models.IncludeText + :return: Copyright + :rtype: ~azure.maps.render.models.Copyright + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[_models.Copyright] + + + request = build_render_v2_get_copyright_for_world_request( + format=format, + include_text=include_text, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('Copyright', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_patch.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_patch.py new file mode 100644 index 000000000000..0ad201a8c586 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_patch.py @@ -0,0 +1,19 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/__init__.py new file mode 100644 index 000000000000..2d943c96b683 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/__init__.py @@ -0,0 +1,50 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._models import Copyright +from ._models import CopyrightCaption +from ._models import ErrorAdditionalInfo +from ._models import ErrorDetail +from ._models import ErrorResponse +from ._models import MapAttribution +from ._models import MapTileset +from ._models import RegionCopyrights +from ._models import RegionCopyrightsCountry + +from ._enums import IncludeText +from ._enums import LocalizedMapView +from ._enums import MapImageStyle +from ._enums import MapTileSize +from ._enums import RasterTileFormat +from ._enums import ResponseFormat +from ._enums import StaticMapLayer +from ._enums import TilesetID +from ._patch import __all__ as _patch_all +from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +from ._patch import patch_sdk as _patch_sdk +__all__ = [ + 'Copyright', + 'CopyrightCaption', + 'ErrorAdditionalInfo', + 'ErrorDetail', + 'ErrorResponse', + 'MapAttribution', + 'MapTileset', + 'RegionCopyrights', + 'RegionCopyrightsCountry', + 'IncludeText', + 'LocalizedMapView', + 'MapImageStyle', + 'MapTileSize', + 'RasterTileFormat', + 'ResponseFormat', + 'StaticMapLayer', + 'TilesetID', +] +__all__.extend([p for p in _patch_all if p not in __all__]) +_patch_sdk() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_enums.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_enums.py new file mode 100644 index 000000000000..f1b42d836aca --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_enums.py @@ -0,0 +1,224 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from enum import Enum +from azure.core import CaseInsensitiveEnumMeta + + +class IncludeText(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """IncludeText. + """ + + #: Include all textual data in response. + YES = "yes" + #: Exclude textual data from response. Only images and country names will be in response. + NO = "no" + +class LocalizedMapView(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """LocalizedMapView. + """ + + #: United Arab Emirates (Arabic View) + AE = "AE" + #: Argentina (Argentinian View) + AR = "AR" + #: Bahrain (Arabic View) + BH = "BH" + #: India (Indian View) + IN = "IN" + #: Iraq (Arabic View) + IQ = "IQ" + #: Jordan (Arabic View) + JO = "JO" + #: Kuwait (Arabic View) + KW = "KW" + #: Lebanon (Arabic View) + LB = "LB" + #: Morocco (Moroccan View) + MA = "MA" + #: Oman (Arabic View) + OM = "OM" + #: Pakistan (Pakistani View) + PK = "PK" + #: Palestinian Authority (Arabic View) + PS = "PS" + #: Qatar (Arabic View) + QA = "QA" + #: Saudi Arabia (Arabic View) + SA = "SA" + #: Syria (Arabic View) + SY = "SY" + #: Yemen (Arabic View) + YE = "YE" + #: Return the map data based on the IP address of the request. + AUTO = "Auto" + #: Unified View (Others) + UNIFIED = "Unified" + +class MapImageStyle(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """MapImageStyle. + """ + + #: Azure Maps main style + MAIN = "main" + #: Dark grey version of the Azure Maps main style + DARK = "dark" + +class MapTileSize(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """MapTileSize. + """ + + #: Return a 256 by 256 pixel tile. + SIZE256 = "256" + #: Return a 512 by 512 pixel tile. + SIZE512 = "512" + +class RasterTileFormat(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """RasterTileFormat. + """ + + #: An image in the png format. Supports zoom levels 0 through 18. + PNG = "png" + +class ResponseFormat(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """ResponseFormat. + """ + + #: `The JavaScript Object Notation Data Interchange Format `_ + JSON = "json" + #: `The Extensible Markup Language `_ + XML = "xml" + +class StaticMapLayer(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """StaticMapLayer. + """ + + #: Returns an image containing all map features including polygons, borders, roads and labels. + BASIC = "basic" + #: Returns an image containing borders, roads, and labels, and can be overlaid on other tiles + #: (such as satellite imagery) to produce hybrid tiles. + HYBRID = "hybrid" + #: Returns an image of just the map's label information. + LABELS = "labels" + +class TilesetID(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """TilesetID. + """ + + #: A base map is a standard map that displays roads, natural and artificial features along with + #: the labels for those features in a vector tile.:code:`
` + #: + #: Supports zoom levels 0 through 22. Format: vector (pbf). + MICROSOFT_BASE = "microsoft.base" + #: Displays labels for roads, natural and artificial features in a vector tile.:code:`
` + #: + #: Supports zoom levels 0 through 22. Format: vector (pbf). + MICROSOFT_BASE_LABELS = "microsoft.base.labels" + #: Displays road, boundary and label data in a vector tile.:code:`
` + #: + #: Supports zoom levels 0 through 22. Format: vector (pbf). + MICROSOFT_BASE_HYBRID = "microsoft.base.hybrid" + #: Shaded relief and terra layers.:code:`
` + #: + #: Supports zoom levels 0 through 6. Format: raster (png). + MICROSOFT_TERRA_MAIN = "microsoft.terra.main" + #: All layers with our main style.:code:`
` + #: + #: Supports zoom levels 0 through 22. Format: raster (png). + MICROSOFT_BASE_ROAD = "microsoft.base.road" + #: All layers with our dark grey style.:code:`
` + #: + #: Supports zoom levels 0 through 22. Format: raster (png). + MICROSOFT_BASE_DARKGREY = "microsoft.base.darkgrey" + #: Label data in our main style.:code:`
` + #: + #: Supports zoom levels 0 through 22. Format: raster (png). + MICROSOFT_BASE_LABELS_ROAD = "microsoft.base.labels.road" + #: Label data in our dark grey style.:code:`
` + #: + #: Supports zoom levels 0 through 22. Format: raster (png). + MICROSOFT_BASE_LABELS_DARKGREY = "microsoft.base.labels.darkgrey" + #: Road, boundary and label data in our main style.:code:`
` + #: + #: Supports zoom levels 0 through 22. Format: raster (png). + MICROSOFT_BASE_HYBRID_ROAD = "microsoft.base.hybrid.road" + #: Road, boundary and label data in our dark grey style.:code:`
` + #: + #: Supports zoom levels 0 through 22. Format: raster (png). + MICROSOFT_BASE_HYBRID_DARKGREY = "microsoft.base.hybrid.darkgrey" + #: A combination of satellite and aerial imagery. Only available in S1 pricing SKU.:code:`
` + #: + #: Supports zoom levels 1 through 19. Format: raster (jpeg). + MICROSOFT_IMAGERY = "microsoft.imagery" + #: Weather radar tiles. Latest weather radar images including areas of rain, snow, ice and mixed + #: conditions. Please see `coverage information `_ for + #: Azure Maps Weather service. To learn more about the Radar data, please see `Weather concepts + #: `_.:code:`
` + #: + #: Supports zoom levels 0 through 15. Format: raster (png). + MICROSOFT_WEATHER_RADAR_MAIN = "microsoft.weather.radar.main" + #: Weather infrared tiles. Latest Infrared Satellite images shows clouds by their temperature. + #: Please see `coverage information `_ for Azure Maps + #: Weather service. To learn more about the returned Satellite data, please see `Weather concepts + #: `_.:code:`
` + #: + #: Supports zoom levels 0 through 15. Format: raster (png). + MICROSOFT_WEATHER_INFRARED_MAIN = "microsoft.weather.infrared.main" + #: Digital Elevation Model tiles. The tiles are in the GeoTIFF format with a single 32-bit + #: floating point band. The tiles cover the whole landmass of Earth. Some small islands (e.g., + #: atolls) might not be represented accurately.:code:`
` + #: + #: + #: * The vertical unit for measurement of elevation height is meters. An elevation value of + #: -32767.0 is used for points that have no data value, most often returned where there isn't + #: landmass (i.e. water).:code:`
` + #: * The horizontal reference datum is the World Geodetic System 1984 (WGS84-G1150) and the + #: vertical reference datum is the Earth Gravitational Model 2008 (EGM2008).:code:`
` + #: * Tiles are 258x258 pixel squares rather than the standard 256 x 256. This is done to allow for + #: accurate interpolation of values at the tile edges. As such adjacent tiles overlap by 1 pixel + #: along all edges.:code:`
` + #: * Tile data comes from the `Airbus WorldDEM4Ortho product + #: `_. Urban areas are approximately + #: leveled down to ground level. All other areas are represented by the object surface level + #: (e.g., trees). :code:`
` + #: + #: Supports zoom level 13 only. Format: raster (tiff). + MICROSOFT_DEM = "microsoft.dem" + #: Digital elevation contour line tiles. Compared to the microsoft.dem option, these tiles are in + #: vector format and intended for visualization purpose. The tiles cover the whole landmass of + #: Earth. Some small islands (e.g., atolls) might not be represented accurately.:code:`
` + #: + #: + #: * The vertical unit for measurement of elevation height is meters.:code:`
` + #: * The horizontal reference datum is the World Geodetic System 1984 (WGS84-G1150) and the + #: vertical reference datum is the Earth Gravitational Model 2008 (EGM2008).:code:`
` + #: * Tile data comes from the `Airbus WorldDEM4Ortho product + #: `_. Urban areas are approximately + #: leveled down to ground level. All other areas are represented by the object surface level + #: (e.g., trees).:code:`
` + #: + #: Supports zoom levels 9 through 14. Format: vector (pbf). + MICROSOFT_DEM_CONTOURS = "microsoft.dem.contours" + #: absolute traffic tiles in vector + MICROSOFT_TRAFFIC_ABSOLUTE = "microsoft.traffic.absolute" + #: absolute traffic tiles in raster in our main style. + MICROSOFT_TRAFFIC_ABSOLUTE_MAIN = "microsoft.traffic.absolute.main" + #: relative traffic tiles in vector + MICROSOFT_TRAFFIC_RELATIVE = "microsoft.traffic.relative" + #: relative traffic tiles in raster in our main style. + MICROSOFT_TRAFFIC_RELATIVE_MAIN = "microsoft.traffic.relative.main" + #: relative traffic tiles in raster in our dark style. + MICROSOFT_TRAFFIC_RELATIVE_DARK = "microsoft.traffic.relative.dark" + #: traffic tiles in vector + MICROSOFT_TRAFFIC_DELAY = "microsoft.traffic.delay" + #: traffic tiles in raster in our main style + MICROSOFT_TRAFFIC_DELAY_MAIN = "microsoft.traffic.delay.main" + #: reduced traffic tiles in raster in our main style + MICROSOFT_TRAFFIC_REDUCED_MAIN = "microsoft.traffic.reduced.main" + #: incident tiles in vector + MICROSOFT_TRAFFIC_INCIDENT = "microsoft.traffic.incident" diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_models.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_models.py new file mode 100644 index 000000000000..30333cd57cf3 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_models.py @@ -0,0 +1,438 @@ +# coding=utf-8 +# pylint: disable=too-many-lines +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from typing import List, Optional, TYPE_CHECKING + +from .. import _serialization + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from .. import models as _models + + +class Copyright(_serialization.Model): + """This object is returned from a successful copyright request. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar format_version: Format Version property. + :vartype format_version: str + :ivar general_copyrights: General Copyrights array. + :vartype general_copyrights: list[str] + :ivar regions: Regions array. + :vartype regions: list[~azure.maps.render.models.RegionCopyrights] + """ + + _validation = { + 'format_version': {'readonly': True}, + 'general_copyrights': {'readonly': True}, + 'regions': {'readonly': True}, + } + + _attribute_map = { + "format_version": {"key": "formatVersion", "type": "str"}, + "general_copyrights": {"key": "generalCopyrights", "type": "[str]"}, + "regions": {"key": "regions", "type": "[RegionCopyrights]"}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super().__init__(**kwargs) + self.format_version = None + self.general_copyrights = None + self.regions = None + + +class CopyrightCaption(_serialization.Model): + """This object is returned from a successful copyright call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar format_version: Format Version property. + :vartype format_version: str + :ivar copyrights_caption: Copyrights Caption property. + :vartype copyrights_caption: str + """ + + _validation = { + 'format_version': {'readonly': True}, + 'copyrights_caption': {'readonly': True}, + } + + _attribute_map = { + "format_version": {"key": "formatVersion", "type": "str"}, + "copyrights_caption": {"key": "copyrightsCaption", "type": "str"}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super().__init__(**kwargs) + self.format_version = None + self.copyrights_caption = None + + +class ErrorAdditionalInfo(_serialization.Model): + """The resource management error additional info. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar type: The additional info type. + :vartype type: str + :ivar info: The additional info. + :vartype info: JSON + """ + + _validation = { + 'type': {'readonly': True}, + 'info': {'readonly': True}, + } + + _attribute_map = { + "type": {"key": "type", "type": "str"}, + "info": {"key": "info", "type": "object"}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super().__init__(**kwargs) + self.type = None + self.info = None + + +class ErrorDetail(_serialization.Model): + """The error detail. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar code: The error code. + :vartype code: str + :ivar message: The error message. + :vartype message: str + :ivar target: The error target. + :vartype target: str + :ivar details: The error details. + :vartype details: list[~azure.maps.render.models.ErrorDetail] + :ivar additional_info: The error additional info. + :vartype additional_info: list[~azure.maps.render.models.ErrorAdditionalInfo] + """ + + _validation = { + 'code': {'readonly': True}, + 'message': {'readonly': True}, + 'target': {'readonly': True}, + 'details': {'readonly': True}, + 'additional_info': {'readonly': True}, + } + + _attribute_map = { + "code": {"key": "code", "type": "str"}, + "message": {"key": "message", "type": "str"}, + "target": {"key": "target", "type": "str"}, + "details": {"key": "details", "type": "[ErrorDetail]"}, + "additional_info": {"key": "additionalInfo", "type": "[ErrorAdditionalInfo]"}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super().__init__(**kwargs) + self.code = None + self.message = None + self.target = None + self.details = None + self.additional_info = None + + +class ErrorResponse(_serialization.Model): + """Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.). + + :ivar error: The error object. + :vartype error: ~azure.maps.render.models.ErrorDetail + """ + + _attribute_map = { + "error": {"key": "error", "type": "ErrorDetail"}, + } + + def __init__( + self, + *, + error: Optional["_models.ErrorDetail"] = None, + **kwargs + ): + """ + :keyword error: The error object. + :paramtype error: ~azure.maps.render.models.ErrorDetail + """ + super().__init__(**kwargs) + self.error = error + + +class MapAttribution(_serialization.Model): + """Copyright attribution for the requested section of a tileset. + + :ivar copyrights: A list of copyright strings. + :vartype copyrights: list[str] + """ + + _attribute_map = { + "copyrights": {"key": "copyrights", "type": "[str]"}, + } + + def __init__( + self, + *, + copyrights: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword copyrights: A list of copyright strings. + :paramtype copyrights: list[str] + """ + super().__init__(**kwargs) + self.copyrights = copyrights + + +class MapTileset(_serialization.Model): # pylint: disable=too-many-instance-attributes + """Metadata for a tileset in the TileJSON format. + + :ivar tilejson: Describes the version of the TileJSON spec that is implemented by this JSON + object. + :vartype tilejson: str + :ivar name: A name describing the tileset. The name can contain any legal character. + Implementations SHOULD NOT interpret the name as HTML. + :vartype name: str + :ivar description: Text description of the tileset. The description can contain any legal + character. Implementations SHOULD NOT interpret the description as HTML. + :vartype description: str + :ivar version: A semver.org style version number for the tiles contained within the tileset. + When changes across tiles are introduced, the minor version MUST change. + :vartype version: str + :ivar attribution: Copyright attribution to be displayed on the map. Implementations MAY decide + to treat this as HTML or literal text. For security reasons, make absolutely sure that this + field can't be abused as a vector for XSS or beacon tracking. + :vartype attribution: str + :ivar template: A mustache template to be used to format data from grids for interaction. + :vartype template: str + :ivar legend: A legend to be displayed with the map. Implementations MAY decide to treat this + as HTML or literal text. For security reasons, make absolutely sure that this field can't be + abused as a vector for XSS or beacon tracking. + :vartype legend: str + :ivar scheme: Default: "xyz". Either "xyz" or "tms". Influences the y direction of the tile + coordinates. The global-mercator (aka Spherical Mercator) profile is assumed. + :vartype scheme: str + :ivar tiles: An array of tile endpoints. If multiple endpoints are specified, clients may use + any combination of endpoints. All endpoints MUST return the same content for the same URL. The + array MUST contain at least one endpoint. + :vartype tiles: list[str] + :ivar grids: An array of interactivity endpoints. + :vartype grids: list[str] + :ivar data: An array of data files in GeoJSON format. + :vartype data: list[str] + :ivar min_zoom: The minimum zoom level. + :vartype min_zoom: int + :ivar max_zoom: The maximum zoom level. + :vartype max_zoom: int + :ivar bounds: The maximum extent of available map tiles. Bounds MUST define an area covered by + all zoom levels. The bounds are represented in WGS:84 latitude and longitude values, in the + order left, bottom, right, top. Values may be integers or floating point numbers. + :vartype bounds: list[float] + :ivar center: The default location of the tileset in the form [longitude, latitude, zoom]. The + zoom level MUST be between minzoom and maxzoom. Implementations can use this value to set the + default location. + :vartype center: list[float] + """ + + _validation = { + 'tilejson': {'pattern': r'\d+\.\d+\.\d+\w?[\w\d]*'}, + 'version': {'pattern': r'\d+\.\d+\.\d+\w?[\w\d]*'}, + 'min_zoom': {'maximum': 30, 'minimum': 0}, + 'max_zoom': {'maximum': 30, 'minimum': 0}, + } + + _attribute_map = { + "tilejson": {"key": "tilejson", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "description": {"key": "description", "type": "str"}, + "version": {"key": "version", "type": "str"}, + "attribution": {"key": "attribution", "type": "str"}, + "template": {"key": "template", "type": "str"}, + "legend": {"key": "legend", "type": "str"}, + "scheme": {"key": "scheme", "type": "str"}, + "tiles": {"key": "tiles", "type": "[str]"}, + "grids": {"key": "grids", "type": "[str]"}, + "data": {"key": "data", "type": "[str]"}, + "min_zoom": {"key": "minzoom", "type": "int"}, + "max_zoom": {"key": "maxzoom", "type": "int"}, + "bounds": {"key": "bounds", "type": "[float]"}, + "center": {"key": "center", "type": "[float]"}, + } + + def __init__( + self, + *, + tilejson: Optional[str] = None, + name: Optional[str] = None, + description: Optional[str] = None, + version: Optional[str] = None, + attribution: Optional[str] = None, + template: Optional[str] = None, + legend: Optional[str] = None, + scheme: Optional[str] = None, + tiles: Optional[List[str]] = None, + grids: Optional[List[str]] = None, + data: Optional[List[str]] = None, + min_zoom: Optional[int] = None, + max_zoom: Optional[int] = None, + bounds: Optional[List[float]] = None, + center: Optional[List[float]] = None, + **kwargs + ): + """ + :keyword tilejson: Describes the version of the TileJSON spec that is implemented by this JSON + object. + :paramtype tilejson: str + :keyword name: A name describing the tileset. The name can contain any legal character. + Implementations SHOULD NOT interpret the name as HTML. + :paramtype name: str + :keyword description: Text description of the tileset. The description can contain any legal + character. Implementations SHOULD NOT interpret the description as HTML. + :paramtype description: str + :keyword version: A semver.org style version number for the tiles contained within the tileset. + When changes across tiles are introduced, the minor version MUST change. + :paramtype version: str + :keyword attribution: Copyright attribution to be displayed on the map. Implementations MAY + decide to treat this as HTML or literal text. For security reasons, make absolutely sure that + this field can't be abused as a vector for XSS or beacon tracking. + :paramtype attribution: str + :keyword template: A mustache template to be used to format data from grids for interaction. + :paramtype template: str + :keyword legend: A legend to be displayed with the map. Implementations MAY decide to treat + this as HTML or literal text. For security reasons, make absolutely sure that this field can't + be abused as a vector for XSS or beacon tracking. + :paramtype legend: str + :keyword scheme: Default: "xyz". Either "xyz" or "tms". Influences the y direction of the tile + coordinates. The global-mercator (aka Spherical Mercator) profile is assumed. + :paramtype scheme: str + :keyword tiles: An array of tile endpoints. If multiple endpoints are specified, clients may + use any combination of endpoints. All endpoints MUST return the same content for the same URL. + The array MUST contain at least one endpoint. + :paramtype tiles: list[str] + :keyword grids: An array of interactivity endpoints. + :paramtype grids: list[str] + :keyword data: An array of data files in GeoJSON format. + :paramtype data: list[str] + :keyword min_zoom: The minimum zoom level. + :paramtype min_zoom: int + :keyword max_zoom: The maximum zoom level. + :paramtype max_zoom: int + :keyword bounds: The maximum extent of available map tiles. Bounds MUST define an area covered + by all zoom levels. The bounds are represented in WGS:84 latitude and longitude values, in the + order left, bottom, right, top. Values may be integers or floating point numbers. + :paramtype bounds: list[float] + :keyword center: The default location of the tileset in the form [longitude, latitude, zoom]. + The zoom level MUST be between minzoom and maxzoom. Implementations can use this value to set + the default location. + :paramtype center: list[float] + """ + super().__init__(**kwargs) + self.tilejson = tilejson + self.name = name + self.description = description + self.version = version + self.attribution = attribution + self.template = template + self.legend = legend + self.scheme = scheme + self.tiles = tiles + self.grids = grids + self.data = data + self.min_zoom = min_zoom + self.max_zoom = max_zoom + self.bounds = bounds + self.center = center + + +class RegionCopyrights(_serialization.Model): + """RegionCopyrights. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar copyrights: Copyrights array. + :vartype copyrights: list[str] + :ivar country: Country property. + :vartype country: ~azure.maps.render.models.RegionCopyrightsCountry + """ + + _validation = { + 'copyrights': {'readonly': True}, + 'country': {'readonly': True}, + } + + _attribute_map = { + "copyrights": {"key": "copyrights", "type": "[str]"}, + "country": {"key": "country", "type": "RegionCopyrightsCountry"}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super().__init__(**kwargs) + self.copyrights = None + self.country = None + + +class RegionCopyrightsCountry(_serialization.Model): + """Country property. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar iso3: ISO3 property. + :vartype iso3: str + :ivar label: Label property. + :vartype label: str + """ + + _validation = { + 'iso3': {'readonly': True}, + 'label': {'readonly': True}, + } + + _attribute_map = { + "iso3": {"key": "ISO3", "type": "str"}, + "label": {"key": "label", "type": "str"}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super().__init__(**kwargs) + self.iso3 = None + self.label = None diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_patch.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_patch.py new file mode 100644 index 000000000000..0ad201a8c586 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_patch.py @@ -0,0 +1,19 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/__init__.py new file mode 100644 index 000000000000..0a7e4b5f0754 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/__init__.py @@ -0,0 +1,18 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._operations import RenderV2Operations + +from ._patch import __all__ as _patch_all +from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import +from ._patch import patch_sdk as _patch_sdk +__all__ = [ + 'RenderV2Operations', +] +__all__.extend([p for p in _patch_all if p not in __all__]) +_patch_sdk() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_operations.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_operations.py new file mode 100644 index 000000000000..a0030c70cb4d --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_operations.py @@ -0,0 +1,1728 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +import datetime +from typing import Any, Callable, Dict, Iterator, List, Optional, TypeVar, Union + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpResponse +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict + +from .. import models as _models +from .._serialization import Serializer +from .._vendor import _format_url_section +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_render_v2_get_map_tile_request( + *, + tileset_id: Union[str, "_models.TilesetID"], + z: int, + x: int, + y: int, + time_stamp: Optional[datetime.datetime] = None, + tile_size: Optional[Union[str, "_models.MapTileSize"]] = None, + language: Optional[str] = None, + localized_map_view: Optional[Union[str, "_models.LocalizedMapView"]] = None, + client_id: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str + accept = _headers.pop('Accept', "application/json, image/jpeg, image/png, image/pbf, application/vnd.mapbox-vector-tile") + + # Construct URL + _url = "/map/tile" + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params['tilesetId'] = _SERIALIZER.query("tileset_id", tileset_id, 'str') + _params['zoom'] = _SERIALIZER.query("z", z, 'int') + _params['x'] = _SERIALIZER.query("x", x, 'int') + _params['y'] = _SERIALIZER.query("y", y, 'int') + if time_stamp is not None: + _params['timeStamp'] = _SERIALIZER.query("time_stamp", time_stamp, 'iso-8601') + if tile_size is not None: + _params['tileSize'] = _SERIALIZER.query("tile_size", tile_size, 'str') + if language is not None: + _params['language'] = _SERIALIZER.query("language", language, 'str') + if localized_map_view is not None: + _params['view'] = _SERIALIZER.query("localized_map_view", localized_map_view, 'str') + + # Construct headers + if client_id is not None: + _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_render_v2_get_map_tileset_request( + *, + tileset_id: Union[str, "_models.TilesetID"], + client_id: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = "/map/tileset" + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params['tilesetId'] = _SERIALIZER.query("tileset_id", tileset_id, 'str') + + # Construct headers + if client_id is not None: + _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_render_v2_get_map_attribution_request( + *, + tileset_id: Union[str, "_models.TilesetID"], + zoom: int, + bounds: List[float], + client_id: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = "/map/attribution" + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params['tilesetId'] = _SERIALIZER.query("tileset_id", tileset_id, 'str') + _params['zoom'] = _SERIALIZER.query("zoom", zoom, 'int') + _params['bounds'] = _SERIALIZER.query("bounds", bounds, '[float]', div=',') + + # Construct headers + if client_id is not None: + _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_render_v2_get_map_state_tile_request( + *, + z: int, + x: int, + y: int, + stateset_id: str, + client_id: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str + accept = _headers.pop('Accept', "application/vnd.mapbox-vector-tile, application/json") + + # Construct URL + _url = "/map/statetile" + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params['zoom'] = _SERIALIZER.query("z", z, 'int') + _params['x'] = _SERIALIZER.query("x", x, 'int') + _params['y'] = _SERIALIZER.query("y", y, 'int') + _params['statesetId'] = _SERIALIZER.query("stateset_id", stateset_id, 'str') + + # Construct headers + if client_id is not None: + _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_render_v2_get_copyright_caption_request( + format: Union[str, "_models.ResponseFormat"] = "json", + *, + client_id: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = "/map/copyright/caption/{format}" + path_format_arguments = { + "format": _SERIALIZER.url("format", format, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + if client_id is not None: + _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_render_v2_get_map_static_image_request( + format: Union[str, "_models.RasterTileFormat"] = "png", + *, + layer: Optional[Union[str, "_models.StaticMapLayer"]] = None, + style: Optional[Union[str, "_models.MapImageStyle"]] = None, + zoom: Optional[int] = None, + center: Optional[List[float]] = None, + bounding_box_private: Optional[List[float]] = None, + height: Optional[int] = None, + width: Optional[int] = None, + language: Optional[str] = None, + localized_map_view: Optional[Union[str, "_models.LocalizedMapView"]] = None, + pins: Optional[List[str]] = None, + path: Optional[List[str]] = None, + client_id: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str + accept = _headers.pop('Accept', "application/json, image/jpeg, image/png, image/pbf, application/vnd.mapbox-vector-tile") + + # Construct URL + _url = "/map/static/{format}" + path_format_arguments = { + "format": _SERIALIZER.url("format", format, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if layer is not None: + _params['layer'] = _SERIALIZER.query("layer", layer, 'str') + if style is not None: + _params['style'] = _SERIALIZER.query("style", style, 'str') + if zoom is not None: + _params['zoom'] = _SERIALIZER.query("zoom", zoom, 'int', maximum=20, minimum=0) + if center is not None: + _params['center'] = _SERIALIZER.query("center", center, '[float]', div=',') + if bounding_box_private is not None: + _params['bbox'] = _SERIALIZER.query("bounding_box_private", bounding_box_private, '[float]', div=',') + if height is not None: + _params['height'] = _SERIALIZER.query("height", height, 'int', maximum=8192, minimum=1) + if width is not None: + _params['width'] = _SERIALIZER.query("width", width, 'int', maximum=8192, minimum=1) + if language is not None: + _params['language'] = _SERIALIZER.query("language", language, 'str') + if localized_map_view is not None: + _params['view'] = _SERIALIZER.query("localized_map_view", localized_map_view, 'str') + if pins is not None: + _params['pins'] = [_SERIALIZER.query("pins", q, 'str') if q is not None else '' for q in pins] + if path is not None: + _params['path'] = [_SERIALIZER.query("path", q, 'str') if q is not None else '' for q in path] + + # Construct headers + if client_id is not None: + _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_render_v2_get_copyright_from_bounding_box_request( + format: Union[str, "_models.ResponseFormat"] = "json", + *, + south_west: List[float], + north_east: List[float], + include_text: Optional[Union[str, "_models.IncludeText"]] = None, + client_id: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = "/map/copyright/bounding/{format}" + path_format_arguments = { + "format": _SERIALIZER.url("format", format, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params['mincoordinates'] = _SERIALIZER.query("south_west", south_west, '[float]', div=',') + _params['maxcoordinates'] = _SERIALIZER.query("north_east", north_east, '[float]', div=',') + if include_text is not None: + _params['text'] = _SERIALIZER.query("include_text", include_text, 'str') + + # Construct headers + if client_id is not None: + _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_render_v2_get_copyright_for_tile_request( + format: Union[str, "_models.ResponseFormat"] = "json", + *, + z: int, + x: int, + y: int, + include_text: Optional[Union[str, "_models.IncludeText"]] = None, + client_id: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = "/map/copyright/tile/{format}" + path_format_arguments = { + "format": _SERIALIZER.url("format", format, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params['zoom'] = _SERIALIZER.query("z", z, 'int') + _params['x'] = _SERIALIZER.query("x", x, 'int') + _params['y'] = _SERIALIZER.query("y", y, 'int') + if include_text is not None: + _params['text'] = _SERIALIZER.query("include_text", include_text, 'str') + + # Construct headers + if client_id is not None: + _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + + +def build_render_v2_get_copyright_for_world_request( + format: Union[str, "_models.ResponseFormat"] = "json", + *, + include_text: Optional[Union[str, "_models.IncludeText"]] = None, + client_id: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str + accept = _headers.pop('Accept', "application/json") + + # Construct URL + _url = "/map/copyright/world/{format}" + path_format_arguments = { + "format": _SERIALIZER.url("format", format, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if include_text is not None: + _params['text'] = _SERIALIZER.query("include_text", include_text, 'str') + + # Construct headers + if client_id is not None: + _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') + _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_params, + headers=_headers, + **kwargs + ) + +class RenderV2Operations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.maps.render.RenderClient`'s + :attr:`render_v2` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs): + input_args = list(args) + self._client = input_args.pop(0) if input_args else kwargs.pop("client") + self._config = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + + @distributed_trace + def get_map_tile( + self, + *, + tileset_id: Union[str, "_models.TilesetID"], + z: int, + x: int, + y: int, + time_stamp: Optional[datetime.datetime] = None, + tile_size: Optional[Union[str, "_models.MapTileSize"]] = None, + language: Optional[str] = None, + localized_map_view: Optional[Union[str, "_models.LocalizedMapView"]] = None, + **kwargs: Any + ) -> Iterator[bytes]: + """**Applies to:** see pricing `tiers `_. + + The Get Map Tiles API allows users to request map tiles in vector or raster formats typically + to be integrated into a map control or SDK. Some example tiles that can be requested are Azure + Maps road tiles, real-time Weather Radar tiles or the map tiles created using `Azure Maps + Creator `_. By default, Azure Maps uses vector tiles for its web map + control (Web SDK) and Android SDK. + + :keyword tileset_id: A tileset is a collection of raster or vector data broken up into a + uniform grid of square tiles at preset zoom levels. Every tileset has a **tilesetId** to use + when making requests. The **tilesetId** for tilesets created using `Azure Maps Creator + `_ are generated through the `Tileset Create API + `_. The ready-to-use tilesets supplied + by Azure Maps are listed below. For example, microsoft.base. Known values are: + "microsoft.base", "microsoft.base.labels", "microsoft.base.hybrid", "microsoft.terra.main", + "microsoft.base.road", "microsoft.base.darkgrey", "microsoft.base.labels.road", + "microsoft.base.labels.darkgrey", "microsoft.base.hybrid.road", + "microsoft.base.hybrid.darkgrey", "microsoft.imagery", "microsoft.weather.radar.main", + "microsoft.weather.infrared.main", "microsoft.dem", "microsoft.dem.contours", + "microsoft.traffic.absolute", "microsoft.traffic.absolute.main", "microsoft.traffic.relative", + "microsoft.traffic.relative.main", "microsoft.traffic.relative.dark", + "microsoft.traffic.delay", "microsoft.traffic.delay.main", "microsoft.traffic.reduced.main", + and "microsoft.traffic.incident". Required. + :paramtype tileset_id: str or ~azure.maps.render.models.TilesetID + :keyword z: Zoom level for the desired tile. + + Please see `Zoom Levels and Tile Grid + `_ + for details. Required. + :paramtype z: int + :keyword x: X coordinate of the tile on zoom grid. Value must be in the range [0, + 2:code:``zoom`` -1]. + + Please see `Zoom Levels and Tile Grid + `_ for + details. Required. + :paramtype x: int + :keyword y: Y coordinate of the tile on zoom grid. Value must be in the range [0, + 2:code:``zoom`` -1]. + + Please see `Zoom Levels and Tile Grid + `_ for + details. Required. + :paramtype y: int + :keyword time_stamp: The desired date and time of the requested tile. This parameter must be + specified in the standard date-time format (e.g. 2019-11-14T16:03:00-08:00), as defined by `ISO + 8601 `_. This parameter is only supported when + tilesetId parameter is set to one of the values below. + + + * microsoft.weather.infrared.main: We provide tiles up to 3 hours in the past. Tiles are + available in 10-minute intervals. We round the timeStamp value to the nearest 10-minute time + frame. + * microsoft.weather.radar.main: We provide tiles up to 1.5 hours in the past and up to 2 hours + in the future. Tiles are available in 5-minute intervals. We round the timeStamp value to the + nearest 5-minute time frame. Default value is None. + :paramtype time_stamp: ~datetime.datetime + :keyword tile_size: The size of the returned map tile in pixels. Known values are: "256" and + "512". Default value is None. + :paramtype tile_size: str or ~azure.maps.render.models.MapTileSize + :keyword language: Language in which search results should be returned. Should be one of + supported IETF language tags, case insensitive. When data in specified language is not + available for a specific field, default language is used. + + Please refer to `Supported Languages + `_ for details. Default value + is None. + :paramtype language: str + :keyword localized_map_view: The View parameter (also called the "user region" parameter) + allows you to show the correct maps for a certain country/region for geopolitically disputed + regions. Different countries have different views of such regions, and the View parameter + allows your application to comply with the view required by the country your application will + be serving. By default, the View parameter is set to “Unified” even if you haven’t defined it + in the request. It is your responsibility to determine the location of your users, and then + set the View parameter correctly for that location. Alternatively, you have the option to set + ‘View=Auto’, which will return the map data based on the IP address of the request. The View + parameter in Azure Maps must be used in compliance with applicable laws, including those + regarding mapping, of the country where maps, images and other data and third party content + that you are authorized to access via Azure Maps is made available. Example: view=IN. + + Please refer to `Supported Views `_ for details and + to see the available Views. Known values are: "AE", "AR", "BH", "IN", "IQ", "JO", "KW", "LB", + "MA", "OM", "PK", "PS", "QA", "SA", "SY", "YE", "Auto", and "Unified". Default value is None. + :paramtype localized_map_view: str or ~azure.maps.render.models.LocalizedMapView + :return: Iterator of the response bytes + :rtype: Iterator[bytes] + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[Iterator[bytes]] + + + request = build_render_v2_get_map_tile_request( + tileset_id=tileset_id, + z=z, + x=x, + y=y, + time_stamp=time_stamp, + tile_size=tile_size, + language=language, + localized_map_view=localized_map_view, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=True, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + response_headers = {} + response_headers['Content-Type']=self._deserialize('str', response.headers.get('Content-Type')) + + deserialized = response.iter_bytes() + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + + + + @distributed_trace + def get_map_tileset( + self, + *, + tileset_id: Union[str, "_models.TilesetID"], + **kwargs: Any + ) -> _models.MapTileset: + """**Applies to:** see pricing `tiers `_. + + The Get Map Tileset API allows users to request metadata for a tileset. + + :keyword tileset_id: A tileset is a collection of raster or vector data broken up into a + uniform grid of square tiles at preset zoom levels. Every tileset has a **tilesetId** to use + when making requests. The **tilesetId** for tilesets created using `Azure Maps Creator + `_ are generated through the `Tileset Create API + `_. The ready-to-use tilesets supplied + by Azure Maps are listed below. For example, microsoft.base. Known values are: + "microsoft.base", "microsoft.base.labels", "microsoft.base.hybrid", "microsoft.terra.main", + "microsoft.base.road", "microsoft.base.darkgrey", "microsoft.base.labels.road", + "microsoft.base.labels.darkgrey", "microsoft.base.hybrid.road", + "microsoft.base.hybrid.darkgrey", "microsoft.imagery", "microsoft.weather.radar.main", + "microsoft.weather.infrared.main", "microsoft.dem", "microsoft.dem.contours", + "microsoft.traffic.absolute", "microsoft.traffic.absolute.main", "microsoft.traffic.relative", + "microsoft.traffic.relative.main", "microsoft.traffic.relative.dark", + "microsoft.traffic.delay", "microsoft.traffic.delay.main", "microsoft.traffic.reduced.main", + and "microsoft.traffic.incident". Required. + :paramtype tileset_id: str or ~azure.maps.render.models.TilesetID + :return: MapTileset + :rtype: ~azure.maps.render.models.MapTileset + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[_models.MapTileset] + + + request = build_render_v2_get_map_tileset_request( + tileset_id=tileset_id, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('MapTileset', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + + + @distributed_trace + def get_map_attribution( + self, + *, + tileset_id: Union[str, "_models.TilesetID"], + zoom: int, + bounds: List[float], + **kwargs: Any + ) -> _models.MapAttribution: + """**Applies to:** see pricing `tiers `_. + + The Get Map Attribution API allows users to request map copyright attribution information for a + section of a tileset. + + :keyword tileset_id: A tileset is a collection of raster or vector data broken up into a + uniform grid of square tiles at preset zoom levels. Every tileset has a **tilesetId** to use + when making requests. The **tilesetId** for tilesets created using `Azure Maps Creator + `_ are generated through the `Tileset Create API + `_. The ready-to-use tilesets supplied + by Azure Maps are listed below. For example, microsoft.base. Known values are: + "microsoft.base", "microsoft.base.labels", "microsoft.base.hybrid", "microsoft.terra.main", + "microsoft.base.road", "microsoft.base.darkgrey", "microsoft.base.labels.road", + "microsoft.base.labels.darkgrey", "microsoft.base.hybrid.road", + "microsoft.base.hybrid.darkgrey", "microsoft.imagery", "microsoft.weather.radar.main", + "microsoft.weather.infrared.main", "microsoft.dem", "microsoft.dem.contours", + "microsoft.traffic.absolute", "microsoft.traffic.absolute.main", "microsoft.traffic.relative", + "microsoft.traffic.relative.main", "microsoft.traffic.relative.dark", + "microsoft.traffic.delay", "microsoft.traffic.delay.main", "microsoft.traffic.reduced.main", + and "microsoft.traffic.incident". Required. + :paramtype tileset_id: str or ~azure.maps.render.models.TilesetID + :keyword zoom: Zoom level for the desired map attribution. Required. + :paramtype zoom: int + :keyword bounds: The string that represents the rectangular area of a bounding box. The bounds + parameter is defined by the 4 bounding box coordinates, with WGS84 longitude and latitude of + the southwest corner followed by WGS84 longitude and latitude of the northeast corner. The + string is presented in the following format: ``[SouthwestCorner_Longitude, + SouthwestCorner_Latitude, NortheastCorner_Longitude, NortheastCorner_Latitude]``. Required. + :paramtype bounds: list[float] + :return: MapAttribution + :rtype: ~azure.maps.render.models.MapAttribution + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[_models.MapAttribution] + + + request = build_render_v2_get_map_attribution_request( + tileset_id=tileset_id, + zoom=zoom, + bounds=bounds, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('MapAttribution', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + + + @distributed_trace + def get_map_state_tile( + self, + *, + z: int, + x: int, + y: int, + stateset_id: str, + **kwargs: Any + ) -> Iterator[bytes]: + """**Applies to:** see pricing `tiers `_. + + Fetches state tiles in vector format typically to be integrated into indoor maps module of map + control or SDK. The map control will call this API after user turns on dynamic styling (see + `Zoom Levels and Tile Grid + `_\ + ). + + :keyword z: Zoom level for the desired tile. + + Please see `Zoom Levels and Tile Grid + `_ + for details. Required. + :paramtype z: int + :keyword x: X coordinate of the tile on zoom grid. Value must be in the range [0, + 2:code:``zoom`` -1]. + + Please see `Zoom Levels and Tile Grid + `_ for + details. Required. + :paramtype x: int + :keyword y: Y coordinate of the tile on zoom grid. Value must be in the range [0, + 2:code:``zoom`` -1]. + + Please see `Zoom Levels and Tile Grid + `_ for + details. Required. + :paramtype y: int + :keyword stateset_id: The stateset id. Required. + :paramtype stateset_id: str + :return: Iterator of the response bytes + :rtype: Iterator[bytes] + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[Iterator[bytes]] + + + request = build_render_v2_get_map_state_tile_request( + z=z, + x=x, + y=y, + stateset_id=stateset_id, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=True, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + response_headers = {} + response_headers['Content-Type']=self._deserialize('str', response.headers.get('Content-Type')) + + deserialized = response.iter_bytes() + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + + + + @distributed_trace + def get_copyright_caption( + self, + format: Union[str, "_models.ResponseFormat"] = "json", + **kwargs: Any + ) -> _models.CopyrightCaption: + """**Applies to:** see pricing `tiers `_. + + Copyrights API is designed to serve copyright information for Render Tile + service. In addition to basic copyright for the whole map, API is serving + specific groups of copyrights for some countries. + + As an alternative to copyrights for map request, one can receive captions + for displaying the map provider information on the map. + + :param format: Desired format of the response. Value can be either *json* or *xml*. Known + values are: "json" and "xml". Default value is "json". + :type format: str or ~azure.maps.render.models.ResponseFormat + :return: CopyrightCaption + :rtype: ~azure.maps.render.models.CopyrightCaption + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[_models.CopyrightCaption] + + + request = build_render_v2_get_copyright_caption_request( + format=format, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('CopyrightCaption', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + + + @distributed_trace + def get_map_static_image( + self, + format: Union[str, "_models.RasterTileFormat"] = "png", + *, + layer: Optional[Union[str, "_models.StaticMapLayer"]] = None, + style: Optional[Union[str, "_models.MapImageStyle"]] = None, + zoom: Optional[int] = None, + center: Optional[List[float]] = None, + bounding_box_private: Optional[List[float]] = None, + height: Optional[int] = None, + width: Optional[int] = None, + language: Optional[str] = None, + localized_map_view: Optional[Union[str, "_models.LocalizedMapView"]] = None, + pins: Optional[List[str]] = None, + path: Optional[List[str]] = None, + **kwargs: Any + ) -> Iterator[bytes]: + """**Applies to:** see pricing `tiers `_. + + The static image service renders a user-defined, rectangular image containing a map section + using a zoom level from 0 to 20. The static image service renders a user-defined, rectangular + image containing a map section using a zoom level from 0 to 20. The supported resolution range + for the map image is from 1x1 to 8192x8192. If you are deciding when to use the static image + service over the map tile service, you may want to consider how you would like to interact with + the rendered map. If the map contents will be relatively unchanging, a static map is a good + choice. If you want to support a lot of zooming, panning and changing of the map content, the + map tile service would be a better choice. + + Service also provides Image Composition functionality to get a static image back with + additional data like; pushpins and geometry overlays with following S0 and S1 capabilities. + + In S0 you can: + + + * Render up to 5 pushpins specified in the request + * Provide one custom image for the pins referenced in the request + * Add labels to the pushpins + + In S1 you can: + + + * Render pushpins through `Azure Maps Data Service `_ + * Specify multiple pushpin styles + * Render circle, polyline and polygon geometry types. + * Render of supported GeoJSON geometry types uploaded through `Azure Maps Data Service + `_ + + Please see `How-to-Guide `_ for detailed + examples. + + *Note* : Either **center** or **bbox** parameter must be supplied to the + API. + :code:`
`:code:`
` + The supported Lat and Lon ranges when using the **bbox** parameter, are as follows: + :code:`
`:code:`
` + + .. list-table:: + :header-rows: 1 + + * - Zoom Level + - Max Lon Range + - Max Lat Range + * - 0 + - 360.0 + - 170.0 + * - 1 + - 360.0 + - 170.0 + * - 2 + - 360.0 + - 170.0 + * - 3 + - 360.0 + - 170.0 + * - 4 + - 360.0 + - 170.0 + * - 5 + - 180.0 + - 85.0 + * - 6 + - 90.0 + - 42.5 + * - 7 + - 45.0 + - 21.25 + * - 8 + - 22.5 + - 10.625 + * - 9 + - 11.25 + - 5.3125 + * - 10 + - 5.625 + - 2.62625 + * - 11 + - 2.8125 + - 1.328125 + * - 12 + - 1.40625 + - 0.6640625 + * - 13 + - 0.703125 + - 0.33203125 + * - 14 + - 0.3515625 + - 0.166015625 + * - 15 + - 0.17578125 + - 0.0830078125 + * - 16 + - 0.087890625 + - 0.0415039063 + * - 17 + - 0.0439453125 + - 0.0207519531 + * - 18 + - 0.0219726563 + - 0.0103759766 + * - 19 + - 0.0109863281 + - 0.0051879883 + * - 20 + - 0.0054931641 + - 0.0025939941. + + :param format: Desired format of the response. Possible value: png. "png" Default value is + "png". + :type format: str or ~azure.maps.render.models.RasterTileFormat + :keyword layer: Map layer requested. If layer is set to labels or hybrid, the format should be + png. Known values are: "basic", "hybrid", and "labels". Default value is None. + :paramtype layer: str or ~azure.maps.render.models.StaticMapLayer + :keyword style: Map style to be returned. Possible values are main and dark. Known values are: + "main" and "dark". Default value is None. + :paramtype style: str or ~azure.maps.render.models.MapImageStyle + :keyword zoom: Desired zoom level of the map. Zoom value must be in the range: 0-20 + (inclusive). Default value is 12.:code:`
`:code:`
`Please see `Zoom Levels and Tile Grid + `_ + for details. Default value is None. + :paramtype zoom: int + :keyword center: Coordinates of the center point. Format: 'lon,lat'. Projection used + + + * EPSG:3857. Longitude range: -180 to 180. Latitude range: -85 to 85. + + Note: Either center or bbox are required parameters. They are + mutually exclusive. Default value is None. + :paramtype center: list[float] + :keyword bounding_box_private: Bounding box. Projection used - EPSG:3857. Format : 'minLon, + minLat, + maxLon, maxLat'. + + Note: Either bbox or center are required + parameters. They are mutually exclusive. It shouldn’t be used with + height or width. + + The maximum allowed ranges for Lat and Lon are defined for each zoom level + in the table at the top of this page. Default value is None. + :paramtype bounding_box_private: list[float] + :keyword height: Height of the resulting image in pixels. Range is 1 to 8192. Default + is 512. It shouldn’t be used with bbox. Default value is None. + :paramtype height: int + :keyword width: Width of the resulting image in pixels. Range is 1 to 8192. Default is 512. It + shouldn’t be used with bbox. Default value is None. + :paramtype width: int + :keyword language: Language in which search results should be returned. Should be one of + supported IETF language tags, case insensitive. When data in specified language is not + available for a specific field, default language is used. + + Please refer to `Supported Languages + `_ for details. Default value + is None. + :paramtype language: str + :keyword localized_map_view: The View parameter (also called the "user region" parameter) + allows you to show the correct maps for a certain country/region for geopolitically disputed + regions. Different countries have different views of such regions, and the View parameter + allows your application to comply with the view required by the country your application will + be serving. By default, the View parameter is set to “Unified” even if you haven’t defined it + in the request. It is your responsibility to determine the location of your users, and then + set the View parameter correctly for that location. Alternatively, you have the option to set + ‘View=Auto’, which will return the map data based on the IP address of the request. The View + parameter in Azure Maps must be used in compliance with applicable laws, including those + regarding mapping, of the country where maps, images and other data and third party content + that you are authorized to access via Azure Maps is made available. Example: view=IN. + + Please refer to `Supported Views `_ for details and + to see the available Views. Known values are: "AE", "AR", "BH", "IN", "IQ", "JO", "KW", "LB", + "MA", "OM", "PK", "PS", "QA", "SA", "SY", "YE", "Auto", and "Unified". Default value is None. + :paramtype localized_map_view: str or ~azure.maps.render.models.LocalizedMapView + :keyword pins: Pushpin style and instances. Use this parameter to optionally add pushpins to + the image. + The pushpin style describes the appearance of the pushpins, and the instances specify + the coordinates of the pushpins and optional labels for each pin. (Be sure to properly + URL-encode values of this + parameter since it will contain reserved characters such as pipes and punctuation.) + + The Azure Maps account S0 SKU only supports a single instance of the pins parameter. Other + SKUs + allow multiple instances of the pins parameter to specify multiple pin styles. + + To render a pushpin at latitude 45°N and longitude 122°W using the default built-in pushpin + style, add the + querystring parameter + + ``pins=default||-122 45`` + + Note that the longitude comes before the latitude. + After URL encoding this will look like + + ``pins=default%7C%7C-122+45`` + + All of the examples here show the pins + parameter without URL encoding, for clarity. + + To render a pin at multiple locations, separate each location with a pipe character. For + example, use + + ``pins=default||-122 45|-119.5 43.2|-121.67 47.12`` + + The S0 Azure Maps account SKU only allows five pushpins. Other account SKUs do not have this + limitation. + + Style Modifiers + ^^^^^^^^^^^^^^^ + + You can modify the appearance of the pins by adding style modifiers. These are added after the + style but before + the locations and labels. Style modifiers each have a two-letter name. These abbreviated names + are used to help + reduce the length of the URL. + + To change the color of the pushpin, use the 'co' style modifier and specify the color using + the HTML/CSS RGB color + format which is a six-digit hexadecimal number (the three-digit form is not supported). For + example, to use + a deep pink color which you would specify as #FF1493 in CSS, use + + ``pins=default|coFF1493||-122 45`` + + Pushpin Labels + ^^^^^^^^^^^^^^ + + To add a label to the pins, put the label in single quotes just before the coordinates. For + example, to label + three pins with the values '1', '2', and '3', use + + ``pins=default||'1'-122 45|'2'-119.5 43.2|'3'-121.67 47.12`` + + There is a built in pushpin style called 'none' that does not display a pushpin image. You can + use this if + you want to display labels without any pin image. For example, + + ``pins=none||'A'-122 45|'B'-119.5 43.2`` + + To change the color of the pushpin labels, use the 'lc' label color style modifier. For + example, to use pink + pushpins with black labels, use + + ``pins=default|coFF1493|lc000000||-122 45`` + + To change the size of the labels, use the 'ls' label size style modifier. The label size + represents the approximate + height of the label text in pixels. For example, to increase the label size to 12, use + + ``pins=default|ls12||'A'-122 45|'B'-119 43`` + + The labels are centered at the pushpin 'label anchor.' The anchor location is predefined for + built-in pushpins and + is at the top center of custom pushpins (see below). To override the label anchor, using the + 'la' style modifier + and provide X and Y pixel coordinates for the anchor. These coordinates are relative to the + top left corner of the + pushpin image. Positive X values move the anchor to the right, and positive Y values move the + anchor down. For example, + to position the label anchor 10 pixels right and 4 pixels above the top left corner of the + pushpin image, + use + + ``pins=default|la10 -4||'A'-122 45|'B'-119 43`` + + Custom Pushpins + ^^^^^^^^^^^^^^^ + + To use a custom pushpin image, use the word 'custom' as the pin style name, and then specify a + URL after the + location and label information. Use two pipe characters to indicate that you're done + specifying locations and are + starting the URL. For example, + + ``pins=custom||-122 45||http://contoso.com/pushpins/red.png`` + + After URL encoding, this would look like + + ``pins=custom%7C%7C-122+45%7C%7Chttp%3A%2F%2Fcontoso.com%2Fpushpins%2Fred.png`` + + By default, custom pushpin images are drawn centered at the pin coordinates. This usually + isn't ideal as it obscures + the location that you're trying to highlight. To override the anchor location of the pin + image, use the 'an' + style modifier. This uses the same format as the 'la' label anchor style modifier. For + example, if your custom + pin image has the tip of the pin at the top left corner of the image, you can set the anchor + to that spot by + using + + ``pins=custom|an0 0||-122 45||http://contoso.com/pushpins/red.png`` + + Note: If you use the 'co' color modifier with a custom pushpin image, the specified color will + replace the RGB + channels of the pixels in the image but will leave the alpha (opacity) channel unchanged. This + would usually + only be done with a solid-color custom image. + + Getting Pushpins from Azure Maps Data Storage + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + For all Azure Maps account SKUs other than S0, + the pushpin location information can be obtained from Azure Maps Data Storage. After uploading + a GeoJSON document containing pin locations, the Data Storage service returns a Unique Data ID + (UDID) that you can use + to reference the data in the pins parameter. + + To use the point geometry from an uploaded GeoJSON document as the pin locations, specify the + UDID in the locations + section of the pins parameter. For example, + + ``pins=default||udid-29dc105a-dee7-409f-a3f9-22b066ae4713`` + + Note that + only point and multipoint geometry, points and multipoints from geometry collections, and + point geometry from features + will be used. Linestring and polygon geometry will be ignored. If the point comes from a + feature and the feature + has a string property called "label", the value of that property will be used as the label for + the pin. + + You can mix pin locations from Data Storage and pin locations specified in the pins parameter. + Any of the pipe-delimited + pin locations can be a longitude and latitude or a UDID. For example, + + ``pins=default||-122 45|udid-29dc105a-dee7-409f-a3f9-22b066ae4713|-119 43`` + + Scale, Rotation, and Opacity + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + You can make pushpins and their labels larger or smaller by using the 'sc' scale style + modifier. This is a + value greater than zero. A value of 1 is the standard scale. Values larger than 1 will make + the pins larger, and + values smaller than 1 will make them smaller. For example, to draw the pushpins 50% larger + than normal, use + + ``pins=default|sc1.5||-122 45`` + + You can rotate pushpins and their labels by using the 'ro' rotation style modifier. This is a + number of degrees + of clockwise rotation. Use a negative number to rotate counter-clockwise. For example, to + rotate the pushpins + 90 degrees clockwise and double their size, use + + ``pins=default|ro90|sc2||-122 45`` + + You can make pushpins and their labels partially transparent by specifying the 'al' alpha + style modifier. + This is a number between 0 and 1 indicating the opacity of the pushpins. Zero makes them + completely transparent + (and not visible) and 1 makes them completely opaque (which is the default). For example, to + make pushpins + and their labels only 67% opaque, use + + ``pins=default|al.67||-122 45`` + + Style Modifier Summary + ^^^^^^^^^^^^^^^^^^^^^^ + + .. list-table:: + :header-rows: 1 + + * - Modifier + - Description + - Range + * - al + - Alpha (opacity) + - 0 to 1 + * - an + - Pin anchor + - * + * - co + - Pin color + - 000000 to FFFFFF + * - la + - Label anchor + - * + * - lc + - Label color + - 000000 to FFFFFF + * - ls + - Label size + - Greater than 0 + * - ro + - Rotation + - -360 to 360 + * - sc + - Scale + - Greater than 0 + + + + * X and Y coordinates can be anywhere within pin image or a margin around it. + The margin size is the minimum of the pin width and height. Default value is None. + :paramtype pins: list[str] + :keyword path: Path style and locations. Use this parameter to optionally add lines, polygons + or circles to the image. + The path style describes the appearance of the line and fill. (Be sure to properly URL-encode + values of this + parameter since it will contain reserved characters such as pipes and punctuation.) + + Path parameter is supported in Azure Maps account SKU starting with S1. Multiple instances of + the path parameter + allow to specify multiple geometries with their styles. Number of parameters per request is + limited to 10 and + number of locations is limited to 100 per path. + + To render a circle with radius 100 meters and center point at latitude 45°N and longitude + 122°W using the default style, add the + querystring parameter + + ``path=ra100||-122 45`` + + Note that the longitude comes before the latitude. + After URL encoding this will look like + + ``path=ra100%7C%7C-122+45`` + + All of the examples here show the path parameter without URL encoding, for clarity. + + To render a line, separate each location with a pipe character. For example, use + + ``path=||-122 45|-119.5 43.2|-121.67 47.12`` + + To render a polygon, last location must be equal to the start location. For example, use + + ``path=||-122 45|-119.5 43.2|-121.67 47.12|-122 45`` + + Longitude and latitude values for locations of lines and polygons can be in the range from + -360 to 360 to allow for rendering of geometries crossing the anti-meridian. + + Style Modifiers + ^^^^^^^^^^^^^^^ + + You can modify the appearance of the path by adding style modifiers. These are added before + the locations. + Style modifiers each have a two-letter name. These abbreviated names are used to help reduce + the length + of the URL. + + To change the color of the outline, use the 'lc' style modifier and specify the color using + the HTML/CSS RGB color + format which is a six-digit hexadecimal number (the three-digit form is not supported). For + example, to use + a deep pink color which you would specify as #FF1493 in CSS, use + + ``path=lcFF1493||-122 45|-119.5 43.2`` + + Multiple style modifiers may be combined together to create a more complex visual style. + + ``lc0000FF|lw3|la0.60|fa0.50||-122.2 47.6|-122.2 47.7|-122.3 47.7|-122.3 47.6|-122.2 47.6`` + + Getting Path locations from Azure Maps Data Storage + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + For all Azure Maps account SKUs other than S0, the path location information can be obtained + from Azure Maps Data Storage. + After uploading a GeoJSON document containing path locations, the Data Storage service returns + a Unique Data ID (UDID) that you can use + to reference the data in the path parameter. + + To use the point geometry from an uploaded GeoJSON document as the path locations, specify the + UDID in the locations + section of the path parameter. For example, + + ``path=||udid-29dc105a-dee7-409f-a3f9-22b066ae4713`` + + Note the it is not allowed to mix path locations from Data Storage with locations specified in + the path parameter. + + Style Modifier Summary + ^^^^^^^^^^^^^^^^^^^^^^ + + .. list-table:: + :header-rows: 1 + + * - Modifier + - Description + - Range + * - lc + - Line color + - 000000 to FFFFFF + * - fc + - Fill color + - 000000 to FFFFFF + * - la + - Line alpha (opacity) + - 0 to 1 + * - fa + - Fill alpha (opacity) + - 0 to 1 + * - lw + - Line width + - Greater than 0 + * - ra + - Circle radius (meters) + - Greater than 0. Default value is None. + :paramtype path: list[str] + :return: Iterator of the response bytes + :rtype: Iterator[bytes] + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[Iterator[bytes]] + + + request = build_render_v2_get_map_static_image_request( + format=format, + layer=layer, + style=style, + zoom=zoom, + center=center, + bounding_box_private=bounding_box_private, + height=height, + width=width, + language=language, + localized_map_view=localized_map_view, + pins=pins, + path=path, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=True, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + response_headers = {} + response_headers['Content-Type']=self._deserialize('str', response.headers.get('Content-Type')) + + deserialized = response.iter_bytes() + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + + + + @distributed_trace + def get_copyright_from_bounding_box( + self, + format: Union[str, "_models.ResponseFormat"] = "json", + *, + south_west: List[float], + north_east: List[float], + include_text: Optional[Union[str, "_models.IncludeText"]] = None, + **kwargs: Any + ) -> _models.Copyright: + """**Applies to:** see pricing `tiers `_. + + Returns copyright information for a given bounding box. Bounding-box requests should specify + the minimum and maximum longitude and latitude (EPSG-3857) coordinates. + + :param format: Desired format of the response. Value can be either *json* or *xml*. Known + values are: "json" and "xml". Default value is "json". + :type format: str or ~azure.maps.render.models.ResponseFormat + :keyword south_west: Minimum coordinates (south-west point) of bounding box in latitude + longitude coordinate system. E.g. 52.41064,4.84228. Required. + :paramtype south_west: list[float] + :keyword north_east: Maximum coordinates (north-east point) of bounding box in latitude + longitude coordinate system. E.g. 52.41064,4.84228. Required. + :paramtype north_east: list[float] + :keyword include_text: Yes/no value to exclude textual data from response. Only images and + country names will be in response. Known values are: "yes" and "no". Default value is None. + :paramtype include_text: str or ~azure.maps.render.models.IncludeText + :return: Copyright + :rtype: ~azure.maps.render.models.Copyright + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[_models.Copyright] + + + request = build_render_v2_get_copyright_from_bounding_box_request( + format=format, + south_west=south_west, + north_east=north_east, + include_text=include_text, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('Copyright', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + + + @distributed_trace + def get_copyright_for_tile( + self, + format: Union[str, "_models.ResponseFormat"] = "json", + *, + z: int, + x: int, + y: int, + include_text: Optional[Union[str, "_models.IncludeText"]] = None, + **kwargs: Any + ) -> _models.Copyright: + """**Applies to:** see pricing `tiers `_. + + Copyrights API is designed to serve copyright information for Render Tile service. In addition + to basic copyright for the whole map, API is serving specific groups of copyrights for some + countries. + Returns the copyright information for a given tile. To obtain the copyright information for a + particular tile, the request should specify the tile's zoom level and x and y coordinates (see: + Zoom Levels and Tile Grid). + + :param format: Desired format of the response. Value can be either *json* or *xml*. Known + values are: "json" and "xml". Default value is "json". + :type format: str or ~azure.maps.render.models.ResponseFormat + :keyword z: Zoom level for the desired tile. + + Please see `Zoom Levels and Tile Grid + `_ + for details. Required. + :paramtype z: int + :keyword x: X coordinate of the tile on zoom grid. Value must be in the range [0, + 2:code:``zoom`` -1]. + + Please see `Zoom Levels and Tile Grid + `_ for + details. Required. + :paramtype x: int + :keyword y: Y coordinate of the tile on zoom grid. Value must be in the range [0, + 2:code:``zoom`` -1]. + + Please see `Zoom Levels and Tile Grid + `_ for + details. Required. + :paramtype y: int + :keyword include_text: Yes/no value to exclude textual data from response. Only images and + country names will be in response. Known values are: "yes" and "no". Default value is None. + :paramtype include_text: str or ~azure.maps.render.models.IncludeText + :return: Copyright + :rtype: ~azure.maps.render.models.Copyright + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[_models.Copyright] + + + request = build_render_v2_get_copyright_for_tile_request( + format=format, + z=z, + x=x, + y=y, + include_text=include_text, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('Copyright', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + + + @distributed_trace + def get_copyright_for_world( + self, + format: Union[str, "_models.ResponseFormat"] = "json", + *, + include_text: Optional[Union[str, "_models.IncludeText"]] = None, + **kwargs: Any + ) -> _models.Copyright: + """**Applies to:** see pricing `tiers `_. + + Copyrights API is designed to serve copyright information for Render Tile service. In addition + to basic copyright for the whole map, API is serving specific groups of copyrights for some + countries. + Returns the copyright information for the world. To obtain the default copyright information + for the whole world, do not specify a tile or bounding box. + + :param format: Desired format of the response. Value can be either *json* or *xml*. Known + values are: "json" and "xml". Default value is "json". + :type format: str or ~azure.maps.render.models.ResponseFormat + :keyword include_text: Yes/no value to exclude textual data from response. Only images and + country names will be in response. Known values are: "yes" and "no". Default value is None. + :paramtype include_text: str or ~azure.maps.render.models.IncludeText + :return: Copyright + :rtype: ~azure.maps.render.models.Copyright + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = kwargs.pop("params", {}) or {} + + cls = kwargs.pop('cls', None) # type: ClsType[_models.Copyright] + + + request = build_render_v2_get_copyright_for_world_request( + format=format, + include_text=include_text, + client_id=self._config.client_id, + api_version=self._config.api_version, + headers=_headers, + params=_params, + ) + request.url = self._client.format_url(request.url) # type: ignore + + pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error) + + deserialized = self._deserialize('Copyright', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_patch.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_patch.py new file mode 100644 index 000000000000..0ad201a8c586 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_patch.py @@ -0,0 +1,19 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/py.typed b/sdk/maps/azure-maps-render/azure/maps/render/_generated/py.typed new file mode 100644 index 000000000000..e5aff4f83af8 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561. \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py new file mode 100644 index 000000000000..b85a97bbe961 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py @@ -0,0 +1,395 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ + +# pylint: disable=unused-import,ungrouped-imports, R0904, C0302 +from typing import TYPE_CHECKING, overload, Union, Any, List, Optional, Iterator +from azure.core.tracing.decorator import distributed_trace +from azure.core.exceptions import HttpResponseError +from azure.core.credentials import AzureKeyCredential + +from ._base_client import MapsRenderClientBase +from ._generated.models import ( + TilesetID +) +from .models import ( + LatLon, + BoundingBox +) +if TYPE_CHECKING: + from azure.core.credentials import TokenCredential + from azure.core.polling import LROPoller + +if TYPE_CHECKING: + from azure.core.credentials import TokenCredential + +class MapsRenderClient(MapsRenderClientBase): + """Azure Maps Render REST APIs. + + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials.TokenCredential or ~azure.core.credentials.AzureKeyCredential + :keyword api_version: + The API version of the service to use for requests. It defaults to the latest service version. + Setting to an older version may result in reduced feature compatibility. + :paramtype api_version: str + """ + def __init__( + self, + credential, # type: Union[AzureKeyCredential, TokenCredential] + **kwargs # type: Any + ): + # type: (...) -> None + + super().__init__( + credential=credential, **kwargs + ) + + @distributed_trace + def get_map_tile( + self, + tileset_id, # type: Union[str, TilesetID] + tile_index_z, # type: int + tile_index_x, # type: int + tile_index_y, # type: int + **kwargs # type: Any + ): + # type: (...) -> Iterator[bytes] + """The Get Map Tiles API allows users to request map tiles in vector or raster formats typically + to be integrated into a map control or SDK. Some example tiles that can be requested are Azure + Maps road tiles, real-time Weather Radar tiles. By default, Azure Maps uses vector tiles for its web map + control (Web SDK) and Android SDK. + + :param tileset_id: + A tileset is a collection of raster or vector data broken up into a + uniform grid of square tiles at preset zoom levels. Every tileset has a **tilesetId** to use + when making requests. + :type tileset_id: + str or ~azure.maps.render.models.TilesetID + :param tile_index_z: + Zoom level for the desired tile. + :type tile_index_z: int + :param tile_index_x: + X coordinate of the tile on zoom grid. + :type tile_index_x: int + :param tile_index_y: + Y coordinate of the tile on zoom grid. + :type tile_index_y: int + :keyword time_stamp: + The desired date and time of the requested tile. + :paramtype time_stamp: ~datetime.datetime + :keyword tile_size: + The size of the returned map tile in pixels. Default is 256. + :paramtype tile_size: ~azure.maps.render.models.MapTileSize + :keyword language: + Language in which search results should be returned. + :paramtype language: str + :keyword localized_map_view: + The View parameter (also called the "user region" parameter) + allows you to show the correct maps for a certain country/region for geopolitically disputed + regions. + :paramtype localized_map_view: str or ~azure.maps.render.models.LocalizedMapView + :return: + Iterator of the response bytes + :rtype: Iterator[bytes] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + return self._render_client.get_map_tile( + tileset_id=tileset_id, + z=tile_index_z, + x=tile_index_x, + y=tile_index_y, + tile_size=kwargs.pop("tile_size", "256") + **kwargs + ) + + + @distributed_trace + def get_map_tileset( + self, + tileset_id, # type: Union[str, TilesetID] + **kwargs # type: Any + ): + # type: (...) -> models.MapTileset + """The Get Map Tileset API allows users to request metadata for a tileset. + + :param tileset_id: + A tileset is a collection of raster or vector data broken up into a + uniform grid of square tiles at preset zoom levels. Every tileset has a **tilesetId** to use + when making requests. + :type tileset_id: + str or ~azure.maps.render.models.TilesetID + :return: MapTileset + :rtype: ~azure.maps.render.models.MapTileset + :raises ~azure.core.exceptions.HttpResponseError: + """ + return self._render_client.get_map_tileset( + tileset_id=tileset_id, + **kwargs + ) + + + @distributed_trace + def get_map_attribution( + self, + tileset_id, # type: Union[str, "models.TilesetID"] + zoom, #type: int + bounds, # type: BoundingBox + **kwargs # type: Any + ): + # type: (...) -> models.MapAttribution + """The Get Map Attribution API allows users to request map copyright attribution information for a + section of a tileset. + + :param tileset_id: + A tileset is a collection of raster or vector data broken up into a + uniform grid of square tiles at preset zoom levels. Every tileset has a **tilesetId** to use + when making requests. + :type tileset_id: str or ~azure.maps.render.models.TilesetID + :param zoom: + Zoom level for the desired map attribution. + :type zoom: int + :param bounds: + The string that represents the rectangular area of a bounding box. The bounds + parameter is defined by the 4 bounding box coordinates, with WGS84 longitude and latitude of + the southwest corner followed by WGS84 longitude and latitude of the northeast corner. + :type bounds: BoundingBox + :return: MapAttribution + :rtype: ~azure.maps.render.models.MapAttribution + :raises ~azure.core.exceptions.HttpResponseError: + """ + return self._render_client.get_map_attribution( + tileset_id=tileset_id, + zoom=zoom, + bounds=bounds, + **kwargs + ) + + @distributed_trace + def get_map_state_tile( + self, + stateset_id, # type: str + tile_index_z, # type: int + tile_index_x, # type: int + tile_index_y, # type: int + **kwargs # type: Any + ): + # type: (...) -> Iterator[bytes] + """Fetches state tiles in vector format typically to be integrated into indoor maps module of map + control or SDK. + + :param tile_index_z: + Zoom level for the desired tile. + :type tile_index_z: int + :param tile_index_x: + X coordinate of the tile on zoom grid. + :type tile_index_x: int + :param tile_index_y: + Y coordinate of the tile on zoom grid. + :type tile_index_y: int + :param stateset_id: + The stateset id. + :type stateset_id: str + :return: Iterator of the response bytes + :rtype: Iterator[bytes] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + return self._render_client.get_map_state_tile( + stateset_id=stateset_id, + z=tile_index_z, + x=tile_index_x, + y=tile_index_y, + **kwargs + ) + + + @distributed_trace + def get_copyright_caption( + self, + **kwargs # type: Any + ): + # type: (...) -> "models.CopyrightCaption" + """Copyrights API is designed to serve copyright information for Render Tile + service. In addition to basic copyright for the whole map, API is serving + specific groups of copyrights for some countries. + + As an alternative to copyrights for map request, one can receive captions + for displaying the map provider information on the map. + + :return: Get Copyright Caption Result + :rtype: ~azure.maps.render.models.CopyrightCaption + :raises: ~azure.core.exceptions.HttpResponseError + """ + + return self._render_client.get_copyright_caption( + **kwargs + ) + + @distributed_trace + def get_map_static_image( + self, + _format, # type Union[str, "models.RasterTileFormat"] + **kwargs # type: Any + ): + # type: (...) -> Iterator[bytes] + """ The static image service renders a user-defined, rectangular image containing a map section + using a zoom level from 0 to 20. The static image service renders a user-defined, rectangular + image containing a map section using a zoom level from 0 to 20. The supported resolution range + for the map image is from 1x1 to 8192x8192. If you are deciding when to use the static image + service over the map tile service, you may want to consider how you would like to interact with + the rendered map. If the map contents will be relatively unchanging, a static map is a good + choice. If you want to support a lot of zooming, panning and changing of the map content, the + map tile service would be a better choice. + + :param _format: + Desired format of the response. Possible value: png. "png" Default value is "png". + :type _format: str or ~azure.maps.render.models.RasterTileFormat + :keyword layer: + Map layer requested. + :paramtype layer: str or ~azure.maps.render.models.StaticMapLayer + :keyword style: + Map style to be returned. + :paramtype style: str or ~azure.maps.render.models.MapImageStyle + :keyword zoom: + Desired zoom level of the map. + :paramtype zoom: int + :keyword center: + Coordinates of the center point. + :paramtype center: BoundingBox + :keyword bounding_box_private: + Bounding box. + :paramtype bounding_box_private: BoundingBox + :keyword height: + Height of the resulting image in pixels. Range is 1 to 8192. + :paramtype height: int + :keyword width: + Width of the resulting image in pixels. Range is 1 to 8192. Default is 512. + :paramtype width: int + :keyword language: + Language in which search results should be returned. + :paramtype language: str + :keyword localized_map_view: + The View parameter (also called the "user region" parameter) + allows you to show the correct maps for a certain country/region for geopolitically disputed + regions. + :paramtype localized_map_view: str or ~azure.maps.render.models.LocalizedMapView + :keyword pins: + Pushpin style and instances. Use this parameter to optionally add pushpins to the image. + :paramtype pins: list[str] + :keyword path: + Path style and locations. Use this parameter to optionally add lines, polygons + or circles to the image. + :paramtype path: list[str] + :return: Iterator of the response bytes + :rtype: Iterator[bytes] + :raises ~azure.core.exceptions.HttpResponseError: + """ + return self._render_client.get_map_static_image( + format=_format, + **kwargs + ) + + @distributed_trace + def get_copyright_from_bounding_box( + self, + bounding_box, #type: BoundingBox + **kwargs # type: Any + ): + # type: (...) -> "models.Copyright" + """Returns copyright information for a given bounding box. Bounding-box requests should specify + the minimum and maximum longitude and latitude (EPSG-3857) coordinates. + + :param bounding_box: + Position of the south_west and north_east as boundingbox type. + :type: BoundingBox + :keyword include_text: + True or False to exclude textual data from response. Only images and + country names will be in response. + :paramtype include_text: bool + :return: Copyright result + :rtype: ~azure.maps.render.models.Copyright + :raises ~azure.core.exceptions.HttpResponseError: + """ + + _include_text=kwargs.pop("include_text", True) + + return self._render_client.get_copyright_from_bounding_box( + south_west=bounding_box.bottom_left, + north_east=bounding_box.top_right, + include_text= "yes" if _include_text else "no", + **kwargs + ) + + @distributed_trace + def get_copyright_for_tile( + self, + tile_index_z, # type: int + tile_index_x, # type: int + tile_index_y, # type: int + **kwargs # type: Any + ): + # type: (...) -> "models.Copyright" + """Copyrights API is designed to serve copyright information for Render Tile service. In addition + to basic copyright for the whole map, API is serving specific groups of copyrights for some + countries. + Returns the copyright information for a given tile. To obtain the copyright information for a + particular tile, the request should specify the tile's zoom level and x and y coordinates (see: + Zoom Levels and Tile Grid). + + :param tile_index_z: + Zoom level for the desired tile. + :type tile_index_z: int + :param tile_index_x: + X coordinate of the tile on zoom grid. + :type tile_index_x: int + :param tile_index_y: + Y coordinate of the tile on zoom grid. + :type tile_index_y: int + :keyword include_text: + True or False to exclude textual data from response. Only images and + country names will be in response. + :paramtype include_text: bool + :return: Copyright result + :rtype: ~azure.maps.render.models.Copyright + :raises ~azure.core.exceptions.HttpResponseError: + """ + + _include_text=kwargs.pop("include_text", True) + + return self._render_client.get_copyright_for_tile( + z=tile_index_z, + x=tile_index_x, + y=tile_index_y, + include_text= "yes" if _include_text else "no", + **kwargs + ) + + @distributed_trace + def get_copyright_for_world( + self, + **kwargs # type: Any + ): + # type: (...) -> "models.Copyright" + """Copyrights API is designed to serve copyright information for Render Tile service. In addition + to basic copyright for the whole map, API is serving specific groups of copyrights for some + countries. + Returns the copyright information for the world. To obtain the default copyright information + for the whole world, do not specify a tile or bounding box. + + :keyword include_text: + True or False to exclude textual data from response. Only images and + country names will be in response. + :paramtype include_text: bool + :return: Copyright result + :rtype: ~azure.maps.render.models.Copyright + :raises ~azure.core.exceptions.HttpResponseError: + """ + + _include_text=kwargs.pop("include_text", True) + + return self._render_client.get_copyright_for_world( + include_text= "yes" if _include_text else "no", + **kwargs + ) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_version.py b/sdk/maps/azure-maps-render/azure/maps/render/_version.py new file mode 100644 index 000000000000..e5754a47ce68 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/_version.py @@ -0,0 +1,9 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +VERSION = "1.0.0b1" diff --git a/sdk/maps/azure-maps-render/azure/maps/render/aio/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/aio/__init__.py new file mode 100644 index 000000000000..f9e8c366a041 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/aio/__init__.py @@ -0,0 +1,10 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._render_client_async import MapsRenderClient +__all__ = ['MapsRenderClient'] diff --git a/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py b/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py new file mode 100644 index 000000000000..d39f2f296fdc --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py @@ -0,0 +1,51 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ + +#pylint: disable=C0209 +from typing import Union, TYPE_CHECKING +from azure.core.pipeline.policies import AzureKeyCredentialPolicy +from azure.core.credentials import AzureKeyCredential +from .._generated.aio import RenderClient as _MapsRenderClient +from .._version import VERSION +if TYPE_CHECKING: + from azure.core.credentials_async import AsyncTokenCredential + +def _authentication_policy(credential): + authentication_policy = None + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + if isinstance(credential, AzureKeyCredential): + authentication_policy = AzureKeyCredentialPolicy( + name="subscription-key", credential=credential + ) + elif credential is not None and not hasattr(credential, "get_token"): + raise TypeError( + "Unsupported credential: {}. Use an instance of AzureKeyCredential " + "or a token credential from azure.identity".format(type(credential)) + ) + return authentication_policy + +class AsyncMapsRenderClientBase: + def __init__( + self, + credential, #type: Union[AzureKeyCredential, AsyncTokenCredential] + **kwargs #type: Any + ): + # type: (...) -> None + + self._maps_client = _MapsRenderClient( + credential=credential, # type: ignore + api_version=kwargs.pop("api_version", VERSION), + authentication_policy=kwargs.pop("authentication_policy", _authentication_policy(credential)), + **kwargs + ) + self._render_client = self._maps_client.render_v2 + + async def __aenter__(self): + await self._maps_client.__aenter__() # pylint:disable=no-member + return self + + async def __aexit__(self, *args): + return await self._maps_client.__aexit__(*args) # pylint:disable=no-member diff --git a/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py new file mode 100644 index 000000000000..49a6ef4746ba --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py @@ -0,0 +1,388 @@ +# --------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# --------------------------------------------------------------------- + +# pylint: disable=unused-import,ungrouped-imports, R0904, C0302 +from typing import TYPE_CHECKING, overload, Iterator +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.exceptions import HttpResponseError +from azure.core.credentials import AzureKeyCredential + +from ._base_client_async import AsyncMapsRenderClientBase + +from ..models import ( + LatLon, + BoundingBox +) + +if TYPE_CHECKING: + from typing import Any, List, Union, Optional + from azure.core.credentials_async import AsyncTokenCredential + + +# By default, use the latest supported API version +class MapsRenderClient(AsyncMapsRenderClientBase): + """Azure Maps Render REST APIs. + + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials.AsyncTokenCredential or ~azure.core.credentials.AzureKeyCredential + :keyword api_version: + The API version of the service to use for requests. It defaults to the latest service version. + Setting to an older version may result in reduced feature compatibility. + :paramtype api_version: str + """ + def __init__( + self, + credential, # type: Union[AzureKeyCredential, AsyncTokenCredential] + **kwargs # type: Any + ): + # type: (...) -> None + super().__init__( + credential=credential, **kwargs + ) + + @distributed_trace_async + async def get_map_tile( + self, + tileset_id, # type: Union[str, TilesetID] + tile_index_z, # type: int + tile_index_x, # type: int + tile_index_y, # type: int + **kwargs # type: Any + ): + # type: (...) -> Iterator[bytes] + """The Get Map Tiles API allows users to request map tiles in vector or raster formats typically + to be integrated into a map control or SDK. Some example tiles that can be requested are Azure + Maps road tiles, real-time Weather Radar tiles. By default, Azure Maps uses vector tiles for its web map + control (Web SDK) and Android SDK. + + :param tileset_id: + A tileset is a collection of raster or vector data broken up into a + uniform grid of square tiles at preset zoom levels. Every tileset has a **tilesetId** to use + when making requests. + :type tileset_id: + str or ~azure.maps.render.models.TilesetID + :param tile_index_z: + Zoom level for the desired tile. + :type tile_index_z: int + :param tile_index_x: + X coordinate of the tile on zoom grid. + :type tile_index_x: int + :param tile_index_y: + Y coordinate of the tile on zoom grid. + :type tile_index_y: int + :keyword time_stamp: + The desired date and time of the requested tile. + :paramtype time_stamp: ~datetime.datetime + :keyword tile_size: + The size of the returned map tile in pixels. + :paramtype tile_size: ~azure.maps.render.models.MapTileSize + :keyword language: + Language in which search results should be returned. + :paramtype language: str + :keyword localized_map_view: + The View parameter (also called the "user region" parameter) + allows you to show the correct maps for a certain country/region for geopolitically disputed + regions. + :paramtype localized_map_view: str or ~azure.maps.render.models.LocalizedMapView + :return: + Iterator of the response bytes + :rtype: Iterator[bytes] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + return await self._render_client.get_map_tile( + tileset_id=tileset_id, + z=tile_index_z, + x=tile_index_x, + y=tile_index_y, + tile_size=kwargs.pop("tile_size", "256") + **kwargs + ) + + + @distributed_trace_async + async def get_map_tileset( + self, + tileset_id, # type: Union[str, TilesetID] + **kwargs # type: Any + ): + # type: (...) -> models.MapTileset + """The Get Map Tileset API allows users to request metadata for a tileset. + + :param tileset_id: + A tileset is a collection of raster or vector data broken up into a + uniform grid of square tiles at preset zoom levels. Every tileset has a **tilesetId** to use + when making requests. + :type tileset_id: + str or ~azure.maps.render.models.TilesetID + :return: MapTileset + :rtype: ~azure.maps.render.models.MapTileset + :raises ~azure.core.exceptions.HttpResponseError: + """ + return await self._render_client.get_map_tileset( + tileset_id=tileset_id, + **kwargs + ) + + + @distributed_trace_async + async def get_map_attribution( + self, + tileset_id, # type: Union[str, TilesetID] + zoom, #type: int + bounds, # type: BoundingBox + **kwargs # type: Any + ): + # type: (...) -> models.MapAttribution + """The Get Map Attribution API allows users to request map copyright attribution information for a + section of a tileset. + + :param tileset_id: + A tileset is a collection of raster or vector data broken up into a + uniform grid of square tiles at preset zoom levels. Every tileset has a **tilesetId** to use + when making requests. + :type tileset_id: str or ~azure.maps.render.models.TilesetID + :param zoom: + Zoom level for the desired map attribution. + :type zoom: int + :param bounds: + The string that represents the rectangular area of a bounding box. The bounds + parameter is defined by the 4 bounding box coordinates, with WGS84 longitude and latitude of + the southwest corner followed by WGS84 longitude and latitude of the northeast corner. + :type bounds: BoundingBox + :return: MapAttribution + :rtype: ~azure.maps.render.models.MapAttribution + :raises ~azure.core.exceptions.HttpResponseError: + """ + return await self._render_client.get_map_attribution( + tileset_id=tileset_id, + zoom=zoom, + bounds=bounds, + **kwargs + ) + + @distributed_trace_async + async def get_map_state_tile( + self, + stateset_id, # type: str + tile_index_z, # type: int + tile_index_x, # type: int + tile_index_y, # type: int + **kwargs # type: Any + ): + # type: (...) -> Iterator[bytes] + """Fetches state tiles in vector format typically to be integrated into indoor maps module of map + control or SDK. + + :param tile_index_z: + Zoom level for the desired tile. + :type tile_index_z: int + :param tile_index_x: + X coordinate of the tile on zoom grid. + :type tile_index_x: int + :param tile_index_y: + Y coordinate of the tile on zoom grid. + :type tile_index_y: int + :param stateset_id: + The stateset id. + :type stateset_id: str + :return: Iterator of the response bytes + :rtype: Iterator[bytes] + :raises ~azure.core.exceptions.HttpResponseError: + """ + return await self._render_client.get_map_state_tile( + stateset_id=stateset_id, + z=tile_index_z, + x=tile_index_x, + y=tile_index_y, + **kwargs + ) + + + @distributed_trace_async + async def get_copyright_caption( + self, + **kwargs # type: Any + ): + # type: (...) -> "models.CopyrightCaption" + """Copyrights API is designed to serve copyright information for Render Tile + service. In addition to basic copyright for the whole map, API is serving + specific groups of copyrights for some countries. + + As an alternative to copyrights for map request, one can receive captions + for displaying the map provider information on the map. + + :return: Get Copyright Caption Result + :rtype: ~azure.maps.render.models.CopyrightCaption + :raises: ~azure.core.exceptions.HttpResponseError + """ + return await self._render_client.get_copyright_caption( + **kwargs + ) + + @distributed_trace_async + async def get_map_static_image( + self, + _format, # type Union[str, "models.RasterTileFormat"] + **kwargs # type: Any + ): + # type: (...) -> Iterator[bytes] + """ The static image service renders a user-defined, rectangular image containing a map section + using a zoom level from 0 to 20. The static image service renders a user-defined, rectangular + image containing a map section using a zoom level from 0 to 20. The supported resolution range + for the map image is from 1x1 to 8192x8192. If you are deciding when to use the static image + service over the map tile service, you may want to consider how you would like to interact with + the rendered map. If the map contents will be relatively unchanging, a static map is a good + choice. If you want to support a lot of zooming, panning and changing of the map content, the + map tile service would be a better choice. + + :param _format: + Desired format of the response. Possible value: png. "png" Default value is "png". + :type _format: str or ~azure.maps.render.models.RasterTileFormat + :keyword layer: + Map layer requested. + :paramtype layer: str or ~azure.maps.render.models.StaticMapLayer + :keyword style: + Map style to be returned. + :paramtype style: str or ~azure.maps.render.models.MapImageStyle + :keyword zoom: + Desired zoom level of the map. + :paramtype zoom: int + :keyword center: + Coordinates of the center point. + :paramtype center: Latlon + :keyword bounding_box_private: + Bounding box. + :paramtype bounding_box_private: BoundingBox + :keyword height: + Height of the resulting image in pixels. Range is 1 to 8192. + :paramtype height: int + :keyword width: + Width of the resulting image in pixels. Range is 1 to 8192. Default is 512. + :paramtype width: int + :keyword language: + Language in which search results should be returned. + :paramtype language: str + :keyword localized_map_view: + The View parameter (also called the "user region" parameter) + allows you to show the correct maps for a certain country/region for geopolitically disputed + regions. + :paramtype localized_map_view: str or ~azure.maps.render.models.LocalizedMapView + :keyword pins: + Pushpin style and instances. Use this parameter to optionally add pushpins to the image. + :paramtype pins: list[str] + :keyword path: + Path style and locations. Use this parameter to optionally add lines, polygons + or circles to the image. + :paramtype path: list[str] + :return: Iterator of the response bytes + :rtype: Iterator[bytes] + :raises ~azure.core.exceptions.HttpResponseError: + """ + return await self._render_client.get_map_static_image( + format=_format, + **kwargs + ) + + @distributed_trace_async + async def get_copyright_from_bounding_box( + self, + bounding_box, #type: BoundingBox + **kwargs # type: Any + ): + # type: (...) -> "models.Copyright" + """Returns copyright information for a given bounding box. Bounding-box requests should specify + the minimum and maximum longitude and latitude (EPSG-3857) coordinates. + + :param bounding_box: + Position of the south_west and north_east as boundingbox type. + :type: BoundingBox + :keyword include_text: + True or False to exclude textual data from response. Only images and + country names will be in response. + :paramtype include_text: bool + :return: Copyright result + :rtype: ~azure.maps.render.models.Copyright + :raises ~azure.core.exceptions.HttpResponseError: + """ + _include_text=kwargs.pop("include_text", True) + + return await self._render_client.get_copyright_from_bounding_box( + include_text= "yes" if _include_text else "no", + south_west=bounding_box.bottom_left, + north_east=bounding_box.top_right, + **kwargs + ) + + @distributed_trace_async + async def get_copyright_for_tile( + self, + tile_index_z, # type: int + tile_index_x, # type: int + tile_index_y, # type: int + **kwargs # type: Any + ): + # type: (...) -> "models.Copyright" + """Copyrights API is designed to serve copyright information for Render Tile service. In addition + to basic copyright for the whole map, API is serving specific groups of copyrights for some + countries. + Returns the copyright information for a given tile. To obtain the copyright information for a + particular tile, the request should specify the tile's zoom level and x and y coordinates (see: + Zoom Levels and Tile Grid). + + :param tile_index_z: + Zoom level for the desired tile. + :type tile_index_z: int + :param tile_index_x: + X coordinate of the tile on zoom grid. + :type tile_index_x: int + :param tile_index_y: + Y coordinate of the tile on zoom grid. + :type tile_index_y: int + :keyword include_text: + True or False to exclude textual data from response. Only images and + country names will be in response. + :paramtype include_text: bool + :return: Copyright result + :rtype: ~azure.maps.render.models.Copyright + :raises ~azure.core.exceptions.HttpResponseError: + """ + _include_text=kwargs.pop("include_text", True) + + return await self._render_client.get_copyright_for_tile( + z=tile_index_z, + x=tile_index_x, + y=tile_index_y, + include_text= "yes" if _include_text else "no", + **kwargs + ) + + @distributed_trace_async + async def get_copyright_for_world( + self, + **kwargs # type: Any + ): + # type: (...) -> "models.Copyright" + """Copyrights API is designed to serve copyright information for Render Tile service. In addition + to basic copyright for the whole map, API is serving specific groups of copyrights for some + countries. + Returns the copyright information for the world. To obtain the default copyright information + for the whole world, do not specify a tile or bounding box. + + :keyword include_text: + True or False to exclude textual data from response. Only images and + country names will be in response. + :paramtype include_text: bool + :return: Copyright result + :rtype: ~azure.maps.render.models.Copyright + :raises ~azure.core.exceptions.HttpResponseError: + """ + _include_text=kwargs.pop("include_text", True) + + return await self._render_client.get_copyright_for_world( + include_text= "yes" if _include_text else "no", + **kwargs + ) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py new file mode 100644 index 000000000000..f2fc1c7312fe --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py @@ -0,0 +1,34 @@ + +from .._generated.models import ( + TilesetID, + MapTileSize, + LocalizedMapView, + MapTileset, + MapAttribution, + CopyrightCaption, + StaticMapLayer, + Copyright, + RegionCopyrights, + RegionCopyrightsCountry +) + +from ._models import ( + LatLon, + BoundingBox +) + + +__all__ = [ + 'LatLon', + 'BoundingBox', + 'TilesetID', + 'MapTileSize', + 'LocalizedMapView', + 'MapTileset', + 'MapAttribution', + 'CopyrightCaption', + 'StaticMapLayer', + 'Copyright', + 'RegionCopyrights', + 'RegionCopyrightsCountry', +] diff --git a/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py new file mode 100644 index 000000000000..da4e190e175b --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py @@ -0,0 +1,56 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ + +# pylint: disable=unused-import,ungrouped-imports, C0302, C0203 +from typing import List, Optional, Union +import msrest.serialization + + +class LatLon(object): + + def __init__( + self, + lat: float = None, + lon: float = None + ): + self._lat = lat + self._lon = lon + + @property + def lat(self) -> float: + return self._lat + + @lat.setter + def lat(self, value: float) -> None: + self._lat = value + + @property + def lon(self) -> float: + return self._lon + + @lon.setter + def lon(self, value: float) -> None: + self._lon = value + + +class BoundingBox(object): + + def __init__( + self, + top_left: LatLon = None, + bottom_right: LatLon = None, + top_right: LatLon = None, + bottom_left: LatLon = None + ): + self.top_left = top_left + self.bottom_right = bottom_right + self.top = top_left.lat + self.bottom = bottom_right.lat + self.left = top_left.lon + self.right = bottom_right.lon + self.top_right = top_right if top_right else LatLon( + top_left.lat, bottom_right.lon) + self.bottom_left = bottom_left if bottom_left else LatLon( + bottom_right.lat, top_left.lon) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/py.typed b/sdk/maps/azure-maps-render/azure/maps/render/py.typed new file mode 100644 index 000000000000..e5aff4f83af8 --- /dev/null +++ b/sdk/maps/azure-maps-render/azure/maps/render/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561. \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/dev_requirements.txt b/sdk/maps/azure-maps-render/dev_requirements.txt new file mode 100644 index 000000000000..f15ae1a63a98 --- /dev/null +++ b/sdk/maps/azure-maps-render/dev_requirements.txt @@ -0,0 +1,5 @@ +-e ../../../tools/azure-devtools +-e ../../../tools/azure-sdk-tools +-e ../../core/azure-core +-e ../../identity/azure-identity +aiohttp>=3.0; python_version >= '3.5' \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/README.md b/sdk/maps/azure-maps-render/samples/README.md new file mode 100644 index 000000000000..3b6b6e3f51c4 --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/README.md @@ -0,0 +1,52 @@ +--- +page_type: sample +languages: + - python +products: + - azure + - azure-maps-render +--- + +# Samples for Azure Maps Render client library for Python + +These code samples show common scenario operations with the Azure Maps Render client library. + +Authenticate the client with a Azure Maps Render [API Key Credential](https://docs.microsoft.com/azure/azure-maps/how-to-manage-account-keys): + +[samples authentication](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/sample_authentication.py) ([async version](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/async_samples/sample_authentication_async.py)) + +Then for common Azure Maps Render operations: + +* Perform fuzzy render: [sample_fuzzy_render.py](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/sample_fuzzy_render.py) ([async version](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/async_samples/sample_fuzzy_render_async.py)) + +## Prerequisites + +* Python 3.6 or later is required to use this package +* You must have an [Azure subscription](https://azure.microsoft.com/free/) +* A deployed Maps Services resource. You can create the resource via [Azure Portal][azure_portal] or [Azure CLI][azure_cli]. + +## Setup + +1. Install the Azure Maps Render client library for Python with [pip](https://pypi.org/project/pip/): + + ```bash + pip install azure-maps-render --pre + ``` + +2. Clone or download [this repository](https://github.com/Azure/azure-sdk-for-python) +3. Open this sample folder in [Visual Studio Code](https://code.visualstudio.com) or your IDE of choice. + +## Running the samples + +1. Open a terminal window and `cd` to the directory that the samples are saved in. +2. Set the environment variables specified in the sample file you wish to run. +3. Follow the usage described in the file, e.g. `python sample_fuzzy_render.py` + +## Next steps + +Check out the [API reference documentation](https://docs.microsoft.com/rest/api/maps/render) +to learn more about what you can do with the Azure Maps Render client library. + + +[azure_portal]: https://portal.azure.com +[azure_cli]: https://docs.microsoft.com/cli/azure diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_authentication_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_authentication_async.py new file mode 100644 index 000000000000..6a4a2c8cad98 --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_authentication_async.py @@ -0,0 +1,41 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_authentication_async.py +DESCRIPTION: + This sample demonstrates how to authenticate with the Azure Maps Render + service with an Subscription key. See more details about authentication here: + https://docs.microsoft.com/azure/azure-maps/how-to-manage-account-keys +USAGE: + python sample_authentication_async.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" + +import asyncio +import os + +async def authentication_maps_service_client_with_subscription_key_credential_async(): + # [START create_maps_render_service_client_with_key_async] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render.aio import MapsRenderClient + + subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + # [END create_maps_render_service_client_with_key_async] + + async with maps_render_client: + result = await maps_render_client.get_copyright_caption() + + print(result) + +if __name__ == '__main__': + loop = asyncio.get_event_loop() + loop.run_until_complete(authentication_maps_service_client_with_subscription_key_credential_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/sample_authentication.py b/sdk/maps/azure-maps-render/samples/sample_authentication.py new file mode 100644 index 000000000000..fd488947a7cc --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/sample_authentication.py @@ -0,0 +1,38 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_authentication.py +DESCRIPTION: + This sample demonstrates how to authenticate with the Azure Maps Render + service with an Subscription key. See more details about authentication here: + https://docs.microsoft.com/azure/azure-maps/how-to-manage-account-keys +USAGE: + python sample_authentication.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" + +import os + +def authentication_maps_service_client_with_subscription_key_credential(): + # [START create_maps_render_service_client_with_key] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render import MapsRenderClient + + subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + # [END create_maps_render_service_client_with_key] + + result = maps_render_client.get_copyright_caption() + + print(result) + +if __name__ == '__main__': + authentication_maps_service_client_with_subscription_key_credential() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/sdk_packaging.toml b/sdk/maps/azure-maps-render/sdk_packaging.toml new file mode 100644 index 000000000000..a9e1fd1cb366 --- /dev/null +++ b/sdk/maps/azure-maps-render/sdk_packaging.toml @@ -0,0 +1,9 @@ +[packaging] +package_name = "azure-maps-render" +package_nspkg = "azure-maps-nspkg" +package_pprint_name = "Azure Maps Render" +package_doc_id = "" +is_stable = false +is_arm = true +need_msrestazure = false +need_azuremgmtcore = true diff --git a/sdk/maps/azure-maps-render/setup.py b/sdk/maps/azure-maps-render/setup.py new file mode 100644 index 000000000000..0ee048d7fd39 --- /dev/null +++ b/sdk/maps/azure-maps-render/setup.py @@ -0,0 +1,90 @@ +#!/usr/bin/env python + +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +#-------------------------------------------------------------------------- + +import re +import os.path +from io import open +from setuptools import find_packages, setup + +# Change the PACKAGE_NAME only to change folder and different name +PACKAGE_NAME = "azure-maps-render" +PACKAGE_PPRINT_NAME = "Azure Maps Render" + +# a-b-c => a/b/c +package_folder_path = PACKAGE_NAME.replace('-', '/') +# a-b-c => a.b.c +namespace_name = PACKAGE_NAME.replace('-', '.') + +# azure v0.x is not compatible with this package +# azure v0.x used to have a __version__ attribute (newer versions don't) +try: + import azure + try: + ver = azure.__version__ + raise Exception( + 'This package is incompatible with azure=={}. '.format(ver) + + 'Uninstall it with "pip uninstall azure".' + ) + except AttributeError: + pass +except ImportError: + pass + +# Version extraction inspired from 'requests' +with open(os.path.join(package_folder_path, 'version.py') + if os.path.exists(os.path.join(package_folder_path, 'version.py')) + else os.path.join(package_folder_path, '_version.py'), 'r') as fd: + version = re.search(r'^VERSION\s*=\s*[\'"]([^\'"]*)[\'"]', + fd.read(), re.MULTILINE).group(1) + +if not version: + raise RuntimeError('Cannot find version information') + +with open('README.md', encoding='utf-8') as f: + readme = f.read() +with open('CHANGELOG.md', encoding='utf-8') as f: + changelog = f.read() + +setup( + name=PACKAGE_NAME, + version=version, + description='Microsoft Azure {} Client Library for Python'.format(PACKAGE_PPRINT_NAME), + long_description=readme + '\n\n' + changelog, + long_description_content_type='text/markdown', + license='MIT License', + author='Microsoft Corporation', + author_email='azpysdkhelp@microsoft.com', + url='https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/maps/azure-maps-render', + classifiers=[ + "Development Status :: 4 - Beta", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "License :: OSI Approved :: MIT License", + ], + zip_safe=False, + packages=find_packages(exclude=[ + 'tests', + # Exclude packages that will be covered by PEP420 or nspkg + 'azure', + 'azure.maps', + ]), + install_requires=[ + 'msrest>=0.6.21', + 'azure-common~=1.1', + 'azure-mgmt-core>=1.3.0,<2.0.0', + ], + extras_require={ + ":python_version<'3.0'": ['azure-maps-nspkg~=3.0.2'], + } +) diff --git a/sdk/maps/azure-maps-render/swagger/README.md b/sdk/maps/azure-maps-render/swagger/README.md new file mode 100644 index 000000000000..c8f1b822ca81 --- /dev/null +++ b/sdk/maps/azure-maps-render/swagger/README.md @@ -0,0 +1,37 @@ +# Azure Maps Render for Python + +> see + +## Setup + +Install Autorest v3 + +```ps +npm install -g autorest +``` + +## Generation + +```ps +cd +autorest --v3 --python +``` + +## Settings + +```yaml +input: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/maps/data-plane/Render/preview/2.1/render.json +output-folder: ../azure/maps/render/_generated +namespace: azure.maps.render +package-name: azure-maps-render +no-namespace-folders: true +license-header: MICROSOFT_MIT_NO_VERSION +credential-scopes: https://atlas.microsoft.com/.default +clear-output-folder: true +python: true +no-async: false +add-credential: false +title: MapsRenderClient +disable-async-iterators: true +python-sdks-folder: $(python-sdks-folder) +``` diff --git a/sdk/maps/azure-maps-render/tests/conftest.py b/sdk/maps/azure-maps-render/tests/conftest.py new file mode 100644 index 000000000000..9f9ea598a5f0 --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/conftest.py @@ -0,0 +1,31 @@ +# -------------------------------------------------------------------------- +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# +# The MIT License (MIT) +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the ""Software""), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. +# +# -------------------------------------------------------------------------- +import sys + +# Ignore collection of async tests for Python 2 +collect_ignore_glob = [] +if sys.version_info < (3, 5): + collect_ignore_glob.append("*_async.py") \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/tests/pytest.ini b/sdk/maps/azure-maps-render/tests/pytest.ini new file mode 100644 index 000000000000..4222cc688b36 --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/pytest.ini @@ -0,0 +1,4 @@ +[pytest] +python_files = *.py +python_classes = *Test +python_functions = test* \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/tests/test_client_e2e.py b/sdk/maps/azure-maps-render/tests/test_client_e2e.py new file mode 100644 index 000000000000..e1514e5da79d --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/test_client_e2e.py @@ -0,0 +1,57 @@ +import os +import sys +import pytest + +from devtools_testutils import AzureTestCase +from azure_devtools.scenario_tests import RecordingProcessor +from azure.maps.render import MapsRenderClient +from azure.maps.render.models import LatLon + + + +class HeaderReplacer(RecordingProcessor): + def __init__(self): + self.headers = [] + + def register_header(self, header_name, new_val): + self.headers.append((header_name, new_val)) + + def process_request(self, request): + for header_name, new_val in self.headers: + for key in request.headers.keys(): + if key.lower() == header_name.lower(): + request.headers[key] = new_val + break + return request + + +# cSpell:disable +class AzureMapsRenderClientE2ETest(AzureTestCase): + def __init__(self, *args, **kwargs): + super(AzureMapsRenderClientE2ETest, self).__init__(*args, **kwargs) + header_replacer = HeaderReFplacer() + header_replacer.register_header("subscription-key", "") + header_replacer.register_header("x-ms-client-id", "") + self.recording_processors.append(header_replacer) + + def setUp(self): + super(AzureMapsRenderClientE2ETest, self).setUp() + self.client = self.create_client_from_credential(RenderClient, + credential="NotUsed", + client_id=self.get_settings_value("CLIENT_ID"), + authentication_policy = self.get_credential(RenderClient)) + assert self.client is not None + + + + +if __name__ == "__main__" : + testArgs = [ "-v" , "-s" ] if len(sys.argv) == 1 else sys.argv[1:] + #testArgs = [ "-s" , "-n" , "auto" , "--dist=loadscope" ] if len(sys.argv) == 1 else sys.argv[1:] + #pytest-xdist: -n auto --dist=loadscope + #pytest-parallel: --tests-per-worker auto + #print( "testArgs={}".format(testArgs) ) + + pytest.main(args=testArgs) + + print("main() Leave") diff --git a/sdk/maps/azure-maps-render/tests/test_client_unit.py b/sdk/maps/azure-maps-render/tests/test_client_unit.py new file mode 100644 index 000000000000..6e6900b1c106 --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/test_client_unit.py @@ -0,0 +1,63 @@ +import os +import sys +import pytest +try: + from unittest.mock import Mock +except ImportError: # python < 3.3 + from mock import Mock # type: ignore + +from devtools_testutils import AzureTestCase +from azure.core.pipeline.transport import HttpTransport, HttpResponse +from azure.core.exceptions import HttpResponseError +from azure.core.pipeline.policies import AzureKeyCredentialPolicy +from azure.maps.render import MapsRenderClient +from azure.maps.render.models import LatLon + + +# cSpell:disable +class MockTransport(HttpTransport): + def __init__(self, status_code, body, **kwargs): + self.status_code = status_code + self.body = body.encode("utf-8-sig") if body != None else None + self.kwargs = kwargs + def __exit__(self, exc_type, exc_val, exc_tb): + pass + def close(self): + pass + def open(self): + pass + def send(self, request, **kwargs): # type: (PipelineRequest, Any) -> PipelineResponse + response = HttpResponse(request, None) + response.status_code = self.status_code + response.headers["content-type"] = "application/json" + response.body = lambda: self.body + for key, val in self.kwargs.items(): + setattr(response, key, val) + return response + +def create_mock_client(status_code=0, body=None, **kwargs): + return RenderClient(credential="NotUsed", + authentication_policy = Mock(AzureKeyCredentialPolicy), + transport=MockTransport(status_code, body, **kwargs)) + +class AzureMapsRenderClientUnitTest(AzureTestCase): + def __init__(self, *args, **kwargs): + super(AzureMapsRenderClientUnitTest, self).__init__(*args, **kwargs) + + def setUp(self): + super(AzureMapsRenderClientUnitTest, self).setUp() + + + + + +if __name__ == "__main__" : + testArgs = [ "-v" , "-s" ] if len(sys.argv) == 1 else sys.argv[1:] + #testArgs = [ "-s" , "-n" , "auto" , "--dist=loadscope" ] if len(sys.argv) == 1 else sys.argv[1:] + #pytest-xdist: -n auto --dist=loadscope + #pytest-parallel: --tests-per-worker auto + #print( "testArgs={}".format(testArgs) ) + + pytest.main(args=testArgs) + + print("main() Leave") \ No newline at end of file diff --git a/sdk/maps/ci.yml b/sdk/maps/ci.yml index ebac701e5ab9..b186eb810cb3 100644 --- a/sdk/maps/ci.yml +++ b/sdk/maps/ci.yml @@ -36,3 +36,6 @@ extends: safeName: azuremapssearch - name: azure-maps-geolocation safeName: azuremapsgeolocation + - name: azure-maps-render + safeName: azuremapsrender + diff --git a/shared_requirements.txt b/shared_requirements.txt index 45d9ca0fadcf..b24384a29580 100644 --- a/shared_requirements.txt +++ b/shared_requirements.txt @@ -24,6 +24,7 @@ azure-keyvault==4.0.0b5 azure-keyvault-secrets~=4.0 azure-keyvault-keys~=4.0 azure-loganalytics~=0.1.0 +azure-maps-nspkg~=3.0.2 azure-mgmt~=4.0 azure-mgmt-advisor~=1.0 azure-mgmt-applicationinsights~=0.1.1 @@ -129,7 +130,11 @@ isodate>=0.6.0 avro>=1.11.0 pyjwt>=1.7.1 chardet<5,>=3.0.2 +<<<<<<< HEAD yarl<2.0,>=1.0 +======= +azure-maps-nspkg~=3.0.2 +>>>>>>> 3cb788f927 (init PR) #override azure-core typing-extensions>=4.0.1 #override azure-search-documents typing-extensions>=3.7.4.3 #override azure azure-keyvault~=1.0 From e79e6d34f0c0bc1e7a86b7f0e8ab2ef10dbb272c Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Thu, 21 Jul 2022 18:54:20 +0800 Subject: [PATCH 02/14] Update samples --- sdk/maps/azure-maps-render/README.md | 71 ++++++++++++++++++- .../azure/maps/render/_base_client.py | 5 +- .../azure/maps/render/_render_client.py | 23 +++--- .../azure/maps/render/_version.py | 1 + .../maps/render/aio/_base_client_async.py | 5 +- .../maps/render/aio/_render_client_async.py | 20 ++++-- .../azure/maps/render/models/_models.py | 8 +-- sdk/maps/azure-maps-render/samples/README.md | 18 ++++- .../sample_get_copyright_caption_async.py | 54 ++++++++++++++ .../sample_get_copyright_for_tile_async.py | 55 ++++++++++++++ .../sample_get_copyright_for_world_async.py | 56 +++++++++++++++ ...e_get_copyright_from_bounding_box_async.py | 56 +++++++++++++++ .../sample_get_map_attribution_async.py | 53 ++++++++++++++ .../sample_get_map_static_image_async.py | 39 ++++++++++ .../sample_get_map_tile_async.py | 44 ++++++++++++ .../sample_get_map_tileset_async.py | 51 +++++++++++++ .../samples/sample_get_copyright_caption.py | 51 +++++++++++++ .../samples/sample_get_copyright_for_tile.py | 53 ++++++++++++++ .../samples/sample_get_copyright_for_world.py | 54 ++++++++++++++ .../sample_get_copyright_from_bounding_box.py | 53 ++++++++++++++ .../samples/sample_get_map_attribution.py | 55 ++++++++++++++ .../samples/sample_get_map_static_image.py | 37 ++++++++++ .../samples/sample_get_map_tile.py | 47 ++++++++++++ .../samples/sample_get_map_tileset.py | 50 +++++++++++++ .../tests/test_client_e2e.py | 21 ++++-- 25 files changed, 943 insertions(+), 37 deletions(-) create mode 100644 sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_caption_async.py create mode 100644 sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py create mode 100644 sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py create mode 100644 sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py create mode 100644 sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py create mode 100644 sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py create mode 100644 sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tile_async.py create mode 100644 sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py create mode 100644 sdk/maps/azure-maps-render/samples/sample_get_copyright_caption.py create mode 100644 sdk/maps/azure-maps-render/samples/sample_get_copyright_for_tile.py create mode 100644 sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py create mode 100644 sdk/maps/azure-maps-render/samples/sample_get_copyright_from_bounding_box.py create mode 100644 sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py create mode 100644 sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py create mode 100644 sdk/maps/azure-maps-render/samples/sample_get_map_tile.py create mode 100644 sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py diff --git a/sdk/maps/azure-maps-render/README.md b/sdk/maps/azure-maps-render/README.md index 64420240e53c..cead14945839 100644 --- a/sdk/maps/azure-maps-render/README.md +++ b/sdk/maps/azure-maps-render/README.md @@ -100,15 +100,72 @@ objects are async context managers and define async `close` methods. The following sections provide several code snippets covering some of the most common Azure Maps Render tasks, including: - [Get Maps Attribution](#get-maps-attribution) +- [Get Maps Static Image](#get-maps-static-image) +- [Get Maps Tile](#get-maps-tile) +- [Get Maps Tileset](#get-maps-tileset) +- [Get Maps Copyright for World](#get-maps-copyright-for-world) -### Get Maps Attr +### Get Maps Attribution -Get Maps Attr +Get Maps Attribution ```python from azure.maps.render import MapsRenderClient -render_result = client.render_address("400 Broad, Seattle"); +result = maps_render_client.get_map_attribution( + tileset_id=TilesetID.MICROSOFT_BASE, + zoom=6, + bounds=BoundingBox( + bottom_left=(LatLon(42.982261, 24.980233)), + top_right=(LatLon(56.526017, 1.355233)) + ) +) +``` + +### Get Maps Tile + +Get Maps Tile + +```python +from azure.maps.render import MapsRenderClient + +result = maps_render_client.get_map_tile( + tileset_id=TilesetID.MICROSOFT_BASE, + tile_index_z=6, + tile_index_x=9, + tile_index_y=22, + tile_size="512" +) +``` + +### Get Maps Tileset + +Get Maps Tileset + +```python +from azure.maps.render import MapsRenderClient + +result = maps_render_client.get_map_tileset(tileset_id=TilesetID.MICROSOFT_BASE) +``` + +### Get Maps Static Image + +Get Maps State Image + +```python +from azure.maps.render import MapsRenderClient + +result = maps_render_client.get_map_static_image(img_format="png", center=(52.41064,4.84228)) +``` + +### Get Maps Copyright for World + +Get Maps Copyright for world + +```python +from azure.maps.render import MapsRenderClient + +result = maps_render_client.get_copyright_for_world() ``` ## Troubleshooting @@ -166,6 +223,14 @@ set AZURE_SUBSCRIPTION_KEY="" pip install azure-maps-render --pre python samples/sample_authentication.py +python sample/sample_get_copyright_caption.py +python sample/sample_get_copyright_for_tile.py +python sample/sample_get_copyright_for_world.py +python sample/sample_get_copyright_from_bounding_box.py +python sample/sample_get_map_attribution.py +python sample/sample_get_map_static_image.py +python sample/sample_get_map_tile.py +python sample/sample_get_map_tileset.py ``` > Notes: `--pre` flag can be optionally added, it is to include pre-release and development versions for `pip install`. By default, `pip` only finds stable versions. diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py index d7da73981f05..cf5d023d0dd5 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py @@ -3,12 +3,11 @@ # Licensed under the MIT License. # ------------------------------------ -#pylint: disable=C0209 from typing import Union, TYPE_CHECKING from azure.core.pipeline.policies import AzureKeyCredentialPolicy from azure.core.credentials import AzureKeyCredential from ._generated import RenderClient as _MapsRenderClient -from ._version import VERSION +from ._version import API_VERSION if TYPE_CHECKING: from azure.core.credentials import TokenCredential @@ -38,7 +37,7 @@ def __init__( self._maps_client = _MapsRenderClient( credential=credential, # type: ignore - api_version=kwargs.pop("api_version", VERSION), + api_version=kwargs.pop("api_version", API_VERSION), authentication_policy=kwargs.pop("authentication_policy", _authentication_policy(credential)), **kwargs ) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py index b85a97bbe961..acd213956c71 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py @@ -100,7 +100,6 @@ def get_map_tile( z=tile_index_z, x=tile_index_x, y=tile_index_y, - tile_size=kwargs.pop("tile_size", "256") **kwargs ) @@ -153,12 +152,20 @@ def get_map_attribution( :param bounds: The string that represents the rectangular area of a bounding box. The bounds parameter is defined by the 4 bounding box coordinates, with WGS84 longitude and latitude of - the southwest corner followed by WGS84 longitude and latitude of the northeast corner. + the southwest corner which is "bottom_left" followed by + WGS84 longitude and latitude of the northeast corner which is "top_right". :type bounds: BoundingBox :return: MapAttribution :rtype: ~azure.maps.render.models.MapAttribution :raises ~azure.core.exceptions.HttpResponseError: """ + bounds=[ + bounds.bottom_left.lat, + bounds.bottom_left.lon, + bounds.top_right.lat, + bounds.top_right.lon + ] + return self._render_client.get_map_attribution( tileset_id=tileset_id, zoom=zoom, @@ -230,7 +237,7 @@ def get_copyright_caption( @distributed_trace def get_map_static_image( self, - _format, # type Union[str, "models.RasterTileFormat"] + img_format, # type Union[str, "models.RasterTileFormat"] **kwargs # type: Any ): # type: (...) -> Iterator[bytes] @@ -243,9 +250,9 @@ def get_map_static_image( choice. If you want to support a lot of zooming, panning and changing of the map content, the map tile service would be a better choice. - :param _format: + :param img_format: Desired format of the response. Possible value: png. "png" Default value is "png". - :type _format: str or ~azure.maps.render.models.RasterTileFormat + :type img_format: str or ~azure.maps.render.models.RasterTileFormat :keyword layer: Map layer requested. :paramtype layer: str or ~azure.maps.render.models.StaticMapLayer @@ -287,7 +294,7 @@ def get_map_static_image( :raises ~azure.core.exceptions.HttpResponseError: """ return self._render_client.get_map_static_image( - format=_format, + format=img_format, **kwargs ) @@ -316,8 +323,8 @@ def get_copyright_from_bounding_box( _include_text=kwargs.pop("include_text", True) return self._render_client.get_copyright_from_bounding_box( - south_west=bounding_box.bottom_left, - north_east=bounding_box.top_right, + south_west=(bounding_box.bottom_left.lat,bounding_box.bottom_left.lon), + north_east=(bounding_box.top_right.lat,bounding_box.top_right.lon), include_text= "yes" if _include_text else "no", **kwargs ) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_version.py b/sdk/maps/azure-maps-render/azure/maps/render/_version.py index e5754a47ce68..06d8a9594498 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_version.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_version.py @@ -7,3 +7,4 @@ # -------------------------------------------------------------------------- VERSION = "1.0.0b1" +API_VERSION = "2.1" diff --git a/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py b/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py index d39f2f296fdc..c8959c9e1dbd 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py @@ -3,12 +3,11 @@ # Licensed under the MIT License. # ------------------------------------ -#pylint: disable=C0209 from typing import Union, TYPE_CHECKING from azure.core.pipeline.policies import AzureKeyCredentialPolicy from azure.core.credentials import AzureKeyCredential from .._generated.aio import RenderClient as _MapsRenderClient -from .._version import VERSION +from .._version import API_VERSION if TYPE_CHECKING: from azure.core.credentials_async import AsyncTokenCredential @@ -37,7 +36,7 @@ def __init__( self._maps_client = _MapsRenderClient( credential=credential, # type: ignore - api_version=kwargs.pop("api_version", VERSION), + api_version=kwargs.pop("api_version", API_VERSION), authentication_policy=kwargs.pop("authentication_policy", _authentication_policy(credential)), **kwargs ) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py index 49a6ef4746ba..b7796009e3db 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py @@ -98,7 +98,6 @@ async def get_map_tile( z=tile_index_z, x=tile_index_x, y=tile_index_y, - tile_size=kwargs.pop("tile_size", "256") **kwargs ) @@ -157,6 +156,13 @@ async def get_map_attribution( :rtype: ~azure.maps.render.models.MapAttribution :raises ~azure.core.exceptions.HttpResponseError: """ + bounds=[ + bounds.bottom_left.lat, + bounds.bottom_left.lon, + bounds.top_right.lat, + bounds.top_right.lon + ] + return await self._render_client.get_map_attribution( tileset_id=tileset_id, zoom=zoom, @@ -226,7 +232,7 @@ async def get_copyright_caption( @distributed_trace_async async def get_map_static_image( self, - _format, # type Union[str, "models.RasterTileFormat"] + img_format, # type Union[str, "models.RasterTileFormat"] **kwargs # type: Any ): # type: (...) -> Iterator[bytes] @@ -239,9 +245,9 @@ async def get_map_static_image( choice. If you want to support a lot of zooming, panning and changing of the map content, the map tile service would be a better choice. - :param _format: + :param img_format: Desired format of the response. Possible value: png. "png" Default value is "png". - :type _format: str or ~azure.maps.render.models.RasterTileFormat + :type img_format: str or ~azure.maps.render.models.RasterTileFormat :keyword layer: Map layer requested. :paramtype layer: str or ~azure.maps.render.models.StaticMapLayer @@ -283,7 +289,7 @@ async def get_map_static_image( :raises ~azure.core.exceptions.HttpResponseError: """ return await self._render_client.get_map_static_image( - format=_format, + format=img_format, **kwargs ) @@ -312,8 +318,8 @@ async def get_copyright_from_bounding_box( return await self._render_client.get_copyright_from_bounding_box( include_text= "yes" if _include_text else "no", - south_west=bounding_box.bottom_left, - north_east=bounding_box.top_right, + south_west=(bounding_box.bottom_left.lat,bounding_box.bottom_left.lon), + north_east=(bounding_box.top_right.lat,bounding_box.top_right.lon), **kwargs ) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py index da4e190e175b..dc16cf527393 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py @@ -39,10 +39,10 @@ class BoundingBox(object): def __init__( self, - top_left: LatLon = None, - bottom_right: LatLon = None, - top_right: LatLon = None, - bottom_left: LatLon = None + top_left: LatLon = LatLon(), + bottom_right: LatLon = LatLon(), + top_right: LatLon = LatLon(), + bottom_left: LatLon = LatLon() ): self.top_left = top_left self.bottom_right = bottom_right diff --git a/sdk/maps/azure-maps-render/samples/README.md b/sdk/maps/azure-maps-render/samples/README.md index 3b6b6e3f51c4..e7d43ba88abb 100644 --- a/sdk/maps/azure-maps-render/samples/README.md +++ b/sdk/maps/azure-maps-render/samples/README.md @@ -17,7 +17,21 @@ Authenticate the client with a Azure Maps Render [API Key Credential](https://do Then for common Azure Maps Render operations: -* Perform fuzzy render: [sample_fuzzy_render.py](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/sample_fuzzy_render.py) ([async version](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/async_samples/sample_fuzzy_render_async.py)) +* Perform Get Map tile: [sample_get_map_tile.py](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/sample_get_map_tile.py) ([async version](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tile_async.py)) + +* Perform Get Map tileset: [sample_get_map_tileset.py](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py) ([async version](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py)) + +* Perform Get Map static image: [sample_get_map_static_image.py](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py) ([async version](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py)) + +* Perform Get Map Attribution: [sample_get_map_attribution.py](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py) ([async version](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py)) + +* Perform Get Copyright from bounding box: [sample_get_copyright_from_bounding_box.py](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/sample_get_copyright_from_bounding_box.py) ([async version](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py)) + +* Perform Get Copyright fpr world: [sample_get_copyright_for_world.py](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py) ([async version](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py)) + +* Perform Get Copyright for tile: [sample_get_copyright_for_tile.py](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_tile.py) ([async version](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py)) + +* Perform Get Copyright caption: [sample_get_copyright_caption.py](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/sample_get_copyright_caption.py) ([async version](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_caption_async.py)) ## Prerequisites @@ -40,7 +54,7 @@ Then for common Azure Maps Render operations: 1. Open a terminal window and `cd` to the directory that the samples are saved in. 2. Set the environment variables specified in the sample file you wish to run. -3. Follow the usage described in the file, e.g. `python sample_fuzzy_render.py` +3. Follow the usage described in the file, e.g. `python sample_get_map_tile.py` ## Next steps diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_caption_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_caption_async.py new file mode 100644 index 000000000000..ed42fb2e9295 --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_caption_async.py @@ -0,0 +1,54 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_copyright_caption_async.py +DESCRIPTION: + This sample demonstrates how to serve copyright information for Render Tile + service. In addition to basic copyright for the whole map, API is serving + specific groups of copyrights for some countries. +USAGE: + python sample_get_copyright_caption_async.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" + +import asyncio +import os +import json + +def to_json(self): + return json.dumps( + self, + default=lambda o: o.__dict__, + sort_keys=True, + indent=4 + ) + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +async def get_copyright_caption_async(): + # [START get_copyright_caption_async] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render.aio import MapsRenderClient + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + async with maps_render_client: + result = await maps_render_client.get_copyright_caption() + + print("Get copyright caption result:") + print(result) + print("------------------------------") + print("Get copyright caption result in Json format:") + print(to_json(result)) + # [END get_copyright_caption_async] + +if __name__ == '__main__': + loop = asyncio.get_event_loop() + loop.run_until_complete(get_copyright_caption_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py new file mode 100644 index 000000000000..b8b9d05b94ef --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py @@ -0,0 +1,55 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_copyright_for_tile_async.py +DESCRIPTION: + This sample demonstrates how to serve copyright information for Render Tile service. + In addition to basic copyright for the whole map, API is serving specific groups of copyrights for some countries. + Returns the copyright information for a given tile. To obtain the copyright information for a + particular tile, the request should specify the tile's zoom level and x and y coordinates (see: + Zoom Levels and Tile Grid). +USAGE: + python sample_get_copyright_for_tile_async.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" +import asyncio +import os +import json + +def to_json(self): + return json.dumps( + self, + default=lambda o: o.__dict__, + sort_keys=True, + indent=4 + ) + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +async def get_copyright_for_tile_async(): + # [START get_copyright_for_tile_async] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render.aio import MapsRenderClient + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + async with maps_render_client: + result = await maps_render_client.get_copyright_for_tile(tile_index_z=6, tile_index_x=9, tile_index_y=22) + + print("Get copyright for tile result:") + print(result) + print("------------------------------") + print("Get copyright for tile result in Json format:") + print(to_json(result)) + # [END get_copyright_for_tile_async] + +if __name__ == '__main__': + loop = asyncio.get_event_loop() + loop.run_until_complete(get_copyright_for_tile_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py new file mode 100644 index 000000000000..48405a46e50d --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py @@ -0,0 +1,56 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_copyright_for_world_async.py +DESCRIPTION: + This sample demonstrates how to serve copyright information for Render Tile service. In addition + to basic copyright for the whole map, API is serving specific groups of copyrights for some + countries. + Returns the copyright information for the world. To obtain the default copyright information + for the whole world, do not specify a tile or bounding box. + +USAGE: + python sample_get_copyright_for_world_async.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" +import asyncio +import os +import json + +def to_json(self): + return json.dumps( + self, + default=lambda o: o.__dict__, + sort_keys=True, + indent=4 + ) + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +async def get_copyright_for_world_async(): + # [START get_copyright_for_world_async] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render.aio import MapsRenderClient + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + async with maps_render_client: + result = await maps_render_client.get_copyright_for_world() + + print("Get copyright for the world result:") + print(result) + print("------------------------------") + print("Get copyright for the world result in Json format:") + print(to_json(result)) + # [END get_copyright_for_world_async] + +if __name__ == '__main__': + loop = asyncio.get_event_loop() + loop.run_until_complete(get_copyright_for_world_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py new file mode 100644 index 000000000000..2344e68c8e87 --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py @@ -0,0 +1,56 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_copyright_from_bounding_box_async.py +DESCRIPTION: + This sample demonstrates how to get copyright information for a given bounding box. Bounding-box requests should specify + the minimum and maximum longitude and latitude (EPSG-3857) coordinates. +USAGE: + python sample_get_copyright_from_bounding_box_async.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" + +import asyncio +import os +import json + +def to_json(self): + return json.dumps( + self, + default=lambda o: o.__dict__, + sort_keys=True, + indent=4 + ) + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +async def get_copyright_from_bounding_box_async(): + # [START get_copyright_from_bounding_box_async] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render.aio import MapsRenderClient + from azure.maps.render.models import BoundingBox, LatLon + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + async with maps_render_client: + result = await maps_render_client.get_copyright_from_bounding_box( + bounding_box=BoundingBox(bottom_left=LatLon(52.41064,4.84228), top_right=LatLon(52.41072,4.84239)) + ) + + print("Get copyright from bounding box result:") + print(result) + print("------------------------------") + print("Get copyright from bounding box result in Json format:") + print(to_json(result)) + # [END get_copyright_from_bounding_box] + +if __name__ == '__main__': + loop = asyncio.get_event_loop() + loop.run_until_complete(get_copyright_from_bounding_box_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py new file mode 100644 index 000000000000..83b54eb5bb43 --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py @@ -0,0 +1,53 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_map_attribution_async.py +DESCRIPTION: + This sample demonstrates how to allows users to request map copyright attribution information for a + section of a tileset. +USAGE: + python sample_get_map_attribution_async.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" +import asyncio +import os +import json + +def to_json(self): + return json.dumps( + self, + default=lambda o: o.__dict__, + sort_keys=True, + indent=4 + ) + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +async def get_map_attribution_async(): + # [START get_map_attribution_async] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render.aio import MapsRenderClient + from azure.maps.render.models import TilesetID, BoundingBox, LatLon + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + async with maps_render_client: + result = await maps_render_client.get_map_attribution(tileset_id=TilesetID.MICROSOFT_BASE, zoom=6, bounds=BoundingBox(bottom_left=(LatLon(42.982261, 24.980233)), top_right=(LatLon(56.526017, 1.355233)))) + + print("Get map attribution result:") + print(result) + print("------------------------------") + print("Get map tile result in Json format:") + print(to_json(result)) + # [END get_map_attribution_async] + +if __name__ == '__main__': + loop = asyncio.get_event_loop() + loop.run_until_complete(get_map_attribution_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py new file mode 100644 index 000000000000..a6e8b774cfd9 --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py @@ -0,0 +1,39 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_map_static_image_async.py +DESCRIPTION: + This sample demonstrates how to the static image service renders a user-defined, rectangular image containing a map section using a zoom level from 0 to 20. The static image service renders a user-defined, rectangular image containing a map section using a zoom level from 0 to 20. +USAGE: + python sample_get_map_static_image_async.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" +import asyncio +import os + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +async def get_map_static_image_async(): + # [START get_map_static_image_async] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render.aio import MapsRenderClient + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + async with maps_render_client: + result = await maps_render_client.get_map_static_image(img_format="png", center=(52.41064,4.84228)) + + print("Get map tile result:") + print(result) + # [END get_map_static_image_async] + +if __name__ == '__main__': + loop = asyncio.get_event_loop() + loop.run_until_complete(get_map_static_image_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tile_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tile_async.py new file mode 100644 index 000000000000..7c0e25b6590d --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tile_async.py @@ -0,0 +1,44 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_map_tile_async.py +DESCRIPTION: + This sample demonstrates how to request map tiles in vector or raster formats typically + to be integrated into a map control or SDK. Some example tiles that can be requested are Azure + Maps road tiles, real-time Weather Radar tiles. By default, Azure Maps uses vector tiles for its web map + control (Web SDK) and Android SDK. +USAGE: + python sample_get_map_tile_async.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" +import asyncio +import os + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +async def get_map_tile_async(): + # [START get_map_tile_async] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render.aio import MapsRenderClient + from azure.maps.render.models import TilesetID + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + + async with maps_render_client: + result = await maps_render_client.get_map_tile(tileset_id=TilesetID.MICROSOFT_BASE, tile_index_z=6, tile_index_x=9, tile_index_y=22, tile_size="512") + + print("Get map tile result:") + print(result) + # [END get_map_tile_async] + +if __name__ == '__main__': + loop = asyncio.get_event_loop() + loop.run_until_complete(get_map_tile_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py new file mode 100644 index 000000000000..36f8d9cb643c --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py @@ -0,0 +1,51 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_map_tileset_async.py +DESCRIPTION: + This sample demonstrates how to request metadata for a tileset. +USAGE: + python sample_get_map_tileset_async.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" +import asyncio +import os +import json + +def to_json(self): + return json.dumps( + self, + default=lambda o: o.__dict__, + sort_keys=True, + indent=4 + ) + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +async def get_map_tileset_async(): + # [START get_map_tile_async] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render.aio import MapsRenderClient + from azure.maps.render.models import TilesetID + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + result = maps_render_client.get_map_tileset(tileset_id=TilesetID.MICROSOFT_BASE) + + print("Get map tileset result:") + print(result) + print("------------------------------") + print("Get map tileset result in Json format:") + print(to_json(result)) + # [END get_map_tile_async] + +if __name__ == '__main__': + loop = asyncio.get_event_loop() + loop.run_until_complete(get_map_tileset_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/sample_get_copyright_caption.py b/sdk/maps/azure-maps-render/samples/sample_get_copyright_caption.py new file mode 100644 index 000000000000..44b68603cf20 --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/sample_get_copyright_caption.py @@ -0,0 +1,51 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_copyright_caption.py +DESCRIPTION: + This sample demonstrates how to serve copyright information for Render Tile + service. In addition to basic copyright for the whole map, API is serving + specific groups of copyrights for some countries. +USAGE: + python sample_get_copyright_caption.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" + +import os +import json + +def to_json(self): + return json.dumps( + self, + default=lambda o: o.__dict__, + sort_keys=True, + indent=4 + ) + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +def get_copyright_caption(): + # [START get_copyright_caption] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render import MapsRenderClient + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + result = maps_render_client.get_copyright_caption() + + print("Get copyright caption result:") + print(result) + print("------------------------------") + print("Get copyright caption result in Json format:") + print(to_json(result)) + # [END get_copyright_caption] + +if __name__ == '__main__': + get_copyright_caption() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_tile.py b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_tile.py new file mode 100644 index 000000000000..1e44f885fc85 --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_tile.py @@ -0,0 +1,53 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_copyright_for_tile.py +DESCRIPTION: + This sample demonstrates how to serve copyright information for Render Tile service. + In addition to basic copyright for the whole map, API is serving specific groups of copyrights for some countries. + Returns the copyright information for a given tile. To obtain the copyright information for a + particular tile, the request should specify the tile's zoom level and x and y coordinates (see: + Zoom Levels and Tile Grid). +USAGE: + python sample_get_copyright_for_tile.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" + +import os +import json + +def to_json(self): + return json.dumps( + self, + default=lambda o: o.__dict__, + sort_keys=True, + indent=4 + ) + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +def get_copyright_for_tile(): + # [START get_copyright_for_tile] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render import MapsRenderClient + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + result = maps_render_client.get_copyright_for_tile(tile_index_z=6, tile_index_x=9, tile_index_y=22) + + print("Get copyright for tile result:") + print(result) + print("------------------------------") + print("Get copyright for tile result in Json format:") + print(to_json(result)) + # [END get_copyright_for_tile] + +if __name__ == '__main__': + get_copyright_for_tile() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py new file mode 100644 index 000000000000..1c18ff963b04 --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py @@ -0,0 +1,54 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_copyright_for_world.py +DESCRIPTION: + This sample demonstrates how to serve copyright information for Render Tile service. In addition + to basic copyright for the whole map, API is serving specific groups of copyrights for some + countries. + Returns the copyright information for the world. To obtain the default copyright information + for the whole world, do not specify a tile or bounding box. + +USAGE: + python sample_get_copyright_for_world.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" + +import os +import json + +def to_json(self): + return json.dumps( + self, + default=lambda o: o.__dict__, + sort_keys=True, + indent=4 + ) + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +def get_copyright_for_world(): + # [START get_copyright_for_world] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render import MapsRenderClient + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + result = maps_render_client.get_copyright_for_world() + + print("Get copyright for the world result:") + print(result) + print("------------------------------") + print("Get copyright for the world result in Json format:") + print(to_json(result)) + # [END get_copyright_for_world] + +if __name__ == '__main__': + get_copyright_for_world() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/sample_get_copyright_from_bounding_box.py b/sdk/maps/azure-maps-render/samples/sample_get_copyright_from_bounding_box.py new file mode 100644 index 000000000000..89b712205a74 --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/sample_get_copyright_from_bounding_box.py @@ -0,0 +1,53 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_copyright_from_bounding_box.py +DESCRIPTION: + This sample demonstrates how to get copyright information for a given bounding box. Bounding-box requests should specify + the minimum and maximum longitude and latitude (EPSG-3857) coordinates. +USAGE: + python sample_get_copyright_from_bounding_box.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" + +import os +import json + +def to_json(self): + return json.dumps( + self, + default=lambda o: o.__dict__, + sort_keys=True, + indent=4 + ) + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +def get_copyright_from_bounding_box(): + # [START get_copyright_from_bounding_box] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render import MapsRenderClient + from azure.maps.render.models import BoundingBox, LatLon + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + result = maps_render_client.get_copyright_from_bounding_box( + bounding_box=BoundingBox(bottom_left=LatLon(52.41064,4.84228), top_right=LatLon(52.41072,4.84239)) + ) + + print("Get copyright from bounding box result:") + print(result) + print("------------------------------") + print("Get copyright from bounding box result in Json format:") + print(to_json(result)) + # [END get_copyright_from_bounding_box] + +if __name__ == '__main__': + get_copyright_from_bounding_box() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py b/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py new file mode 100644 index 000000000000..0f8bb8fad0b1 --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py @@ -0,0 +1,55 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_map_attribution.py +DESCRIPTION: + This sample demonstrates how to allows users to request map copyright attribution information for a + section of a tileset. +USAGE: + python sample_get_map_attribution.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" + +import os +import json + +def to_json(self): + return json.dumps( + self, + default=lambda o: o.__dict__, + sort_keys=True, + indent=4 + ) + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +def get_map_attribution(): + # [START get_map_attribution] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render import MapsRenderClient + from azure.maps.render.models import TilesetID, BoundingBox, LatLon + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + result = maps_render_client.get_map_attribution( + tileset_id=TilesetID.MICROSOFT_BASE, + zoom=6, + bounds=BoundingBox(bottom_left=(LatLon(42.982261, 24.980233)), top_right=(LatLon(56.526017, 1.355233))) + ) + + print("Get map attribution result:") + print(result) + print("------------------------------") + print("Get map tile result in Json format:") + print(to_json(result)) + # [END get_map_attribution] + +if __name__ == '__main__': + get_map_attribution() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py b/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py new file mode 100644 index 000000000000..442c6b15a151 --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py @@ -0,0 +1,37 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_map_static_image.py +DESCRIPTION: + This sample demonstrates how to the static image service renders a user-defined, rectangular image containing a map section using a zoom level from 0 to 20. The static image service renders a user-defined, rectangular image containing a map section using a zoom level from 0 to 20. +USAGE: + python sample_get_map_static_image.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" + +import os + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +def get_map_static_image(): + # [START get_map_static_image] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render import MapsRenderClient + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + result = maps_render_client.get_map_static_image(img_format="png", center=(52.41064,4.84228)) + + print("Get map tile result:") + print(result) + # [END get_map_static_image] + +if __name__ == '__main__': + get_map_static_image() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_tile.py b/sdk/maps/azure-maps-render/samples/sample_get_map_tile.py new file mode 100644 index 000000000000..e86b49238532 --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_tile.py @@ -0,0 +1,47 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_map_tile.py +DESCRIPTION: + This sample demonstrates how to request map tiles in vector or raster formats typically + to be integrated into a map control or SDK. Some example tiles that can be requested are Azure + Maps road tiles, real-time Weather Radar tiles. By default, Azure Maps uses vector tiles for its web map + control (Web SDK) and Android SDK. +USAGE: + python sample_get_map_tile.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" + +import os + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +def get_map_tile(): + # [START get_map_tile] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render import MapsRenderClient + from azure.maps.render.models import TilesetID + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + result = maps_render_client.get_map_tile( + tileset_id=TilesetID.MICROSOFT_BASE, + tile_index_z=6, + tile_index_x=9, + tile_index_y=22, + tile_size="512" + ) + + print("Get map tile result:") + print(result) + # [END get_map_tile] + +if __name__ == '__main__': + get_map_tile() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py b/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py new file mode 100644 index 000000000000..2270f823d34d --- /dev/null +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py @@ -0,0 +1,50 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_get_map_tileset.py +DESCRIPTION: + This sample demonstrates how to request metadata for a tileset. +USAGE: + python sample_get_map_tileset.py + Set the environment variables with your own values before running the sample: + - AZURE_SUBSCRIPTION_KEY - your subscription key +""" + +import os +import json + +def to_json(self): + return json.dumps( + self, + default=lambda o: o.__dict__, + sort_keys=True, + indent=4 + ) + +subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") + +def get_map_tileset(): + # [START get_map_tile] + from azure.core.credentials import AzureKeyCredential + from azure.maps.render import MapsRenderClient + from azure.maps.render.models import TilesetID + + maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) + + result = maps_render_client.get_map_tileset(tileset_id=TilesetID.MICROSOFT_BASE) + + print("Get map tileset result:") + print(result) + print("------------------------------") + print("Get map tileset result in Json format:") + print(to_json(result)) + # [END get_map_tile] + +if __name__ == '__main__': + get_map_tileset() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/tests/test_client_e2e.py b/sdk/maps/azure-maps-render/tests/test_client_e2e.py index e1514e5da79d..dd4e852705d0 100644 --- a/sdk/maps/azure-maps-render/tests/test_client_e2e.py +++ b/sdk/maps/azure-maps-render/tests/test_client_e2e.py @@ -4,11 +4,12 @@ from devtools_testutils import AzureTestCase from azure_devtools.scenario_tests import RecordingProcessor +from azure.core.credentials import AzureKeyCredential from azure.maps.render import MapsRenderClient -from azure.maps.render.models import LatLon - +from azure.maps.render.models import LatLon, TilesetID, BoundingBox +# cSpell:disable class HeaderReplacer(RecordingProcessor): def __init__(self): self.headers = [] @@ -29,19 +30,25 @@ def process_request(self, request): class AzureMapsRenderClientE2ETest(AzureTestCase): def __init__(self, *args, **kwargs): super(AzureMapsRenderClientE2ETest, self).__init__(*args, **kwargs) - header_replacer = HeaderReFplacer() + header_replacer = HeaderReplacer() header_replacer.register_header("subscription-key", "") header_replacer.register_header("x-ms-client-id", "") self.recording_processors.append(header_replacer) def setUp(self): super(AzureMapsRenderClientE2ETest, self).setUp() - self.client = self.create_client_from_credential(RenderClient, - credential="NotUsed", - client_id=self.get_settings_value("CLIENT_ID"), - authentication_policy = self.get_credential(RenderClient)) + self.client = MapsRenderClient( + client_id=self.get_settings_value('CLIENT_ID'), + credential=AzureKeyCredential(self.get_settings_value('SUBSCRIPTION_KEY')), + ) assert self.client is not None + @pytest.mark.live_test_only + def test_get_map_tile(self): + result = self.client.get_map_tile(tileset_id=TilesetID.MICROSOFT_BASE, tile_index_z=6, tile_index_x=9, tile_index_y=22, tile_size="512") + + assert len(result.results) > 0 + top_answer = result.results[0] From 47b2a1017de7d514434f4e92d50ffc0a54c6ca24 Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Fri, 22 Jul 2022 15:22:22 +0800 Subject: [PATCH 03/14] Add Unit/Live test Update testresopurce.json Update Minor Update --- sdk/maps/azure-maps-render/README.md | 17 +- .../azure-maps-render/dev_requirements.txt | 2 +- .../sample_get_map_tileset_async.py | 3 +- .../samples/sample_get_copyright_for_world.py | 10 +- sdk/maps/azure-maps-render/sdk_packaging.toml | 2 +- sdk/maps/azure-maps-render/setup.py | 7 +- ...client_e2e.test_get_copyright_caption.yaml | 47 + ...lient_e2e.test_get_copyright_for_tile.yaml | 286 + ...ient_e2e.test_get_copyright_for_world.yaml | 11521 ++++++++++++++++ ....test_get_copyright_from_bounding_box.yaml | 138 + ...t_client_e2e.test_get_map_attribution.yaml | 43 + .../test_client_e2e.test_get_map_tile.yaml | 266 + .../test_client_e2e.test_get_map_tileset.yaml | 45 + .../tests/test_client_e2e.py | 64 +- .../tests/test_client_unit.py | 46 +- sdk/maps/test-resources.json | 2 +- shared_requirements.txt | 4 +- 17 files changed, 12473 insertions(+), 30 deletions(-) create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_caption.yaml create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_tile.yaml create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_world.yaml create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_from_bounding_box.yaml create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_attribution.yaml create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tile.yaml create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tileset.yaml diff --git a/sdk/maps/azure-maps-render/README.md b/sdk/maps/azure-maps-render/README.md index cead14945839..3ac49ea47f57 100644 --- a/sdk/maps/azure-maps-render/README.md +++ b/sdk/maps/azure-maps-render/README.md @@ -107,7 +107,8 @@ The following sections provide several code snippets covering some of the most c ### Get Maps Attribution -Get Maps Attribution +This request allows users to request map copyright attribution information for a +section of a tileset. ```python from azure.maps.render import MapsRenderClient @@ -124,7 +125,10 @@ result = maps_render_client.get_map_attribution( ### Get Maps Tile -Get Maps Tile +This request will return map tiles in vector or raster formats typically +to be integrated into a map control or SDK. Some example tiles that can be requested are Azure +Maps road tiles, real-time Weather Radar tiles. By default, Azure Maps uses vector tiles for its web map +control (Web SDK) and Android SDK. ```python from azure.maps.render import MapsRenderClient @@ -140,7 +144,7 @@ result = maps_render_client.get_map_tile( ### Get Maps Tileset -Get Maps Tileset +This request will give metadata for a tileset. ```python from azure.maps.render import MapsRenderClient @@ -150,7 +154,10 @@ result = maps_render_client.get_map_tileset(tileset_id=TilesetID.MICROSOFT_BASE) ### Get Maps Static Image -Get Maps State Image +This request will provide the static image service renders a user-defined, rectangular image containing a map section +using a zoom level from 0 to 20. +The static image service renders a user-defined, +rectangular image containing a map section using a zoom level from 0 to 20. ```python from azure.maps.render import MapsRenderClient @@ -160,7 +167,7 @@ result = maps_render_client.get_map_static_image(img_format="png", center=(52.41 ### Get Maps Copyright for World -Get Maps Copyright for world +This request will serve copyright information for Render Tile service. ```python from azure.maps.render import MapsRenderClient diff --git a/sdk/maps/azure-maps-render/dev_requirements.txt b/sdk/maps/azure-maps-render/dev_requirements.txt index f15ae1a63a98..d85375f9cdba 100644 --- a/sdk/maps/azure-maps-render/dev_requirements.txt +++ b/sdk/maps/azure-maps-render/dev_requirements.txt @@ -2,4 +2,4 @@ -e ../../../tools/azure-sdk-tools -e ../../core/azure-core -e ../../identity/azure-identity -aiohttp>=3.0; python_version >= '3.5' \ No newline at end of file +aiohttp>=3.0; python_version >= '3.6' \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py index 36f8d9cb643c..4227e4319f9a 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py @@ -37,7 +37,8 @@ async def get_map_tileset_async(): maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) - result = maps_render_client.get_map_tileset(tileset_id=TilesetID.MICROSOFT_BASE) + async with maps_render_client: + result = await maps_render_client.get_map_tileset(tileset_id=TilesetID.MICROSOFT_BASE) print("Get map tileset result:") print(result) diff --git a/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py index 1c18ff963b04..4a03bdc062d4 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py @@ -9,11 +9,11 @@ """ FILE: sample_get_copyright_for_world.py DESCRIPTION: - This sample demonstrates how to serve copyright information for Render Tile service. In addition - to basic copyright for the whole map, API is serving specific groups of copyrights for some - countries. - Returns the copyright information for the world. To obtain the default copyright information - for the whole world, do not specify a tile or bounding box. + This sample demonstrates how to serve copyright information for Render Tile service. In addition + to basic copyright for the whole map, API is serving specific groups of copyrights for some + countries. + Returns the copyright information for the world. To obtain the default copyright information + for the whole world, do not specify a tile or bounding box. USAGE: python sample_get_copyright_for_world.py diff --git a/sdk/maps/azure-maps-render/sdk_packaging.toml b/sdk/maps/azure-maps-render/sdk_packaging.toml index a9e1fd1cb366..39e900039872 100644 --- a/sdk/maps/azure-maps-render/sdk_packaging.toml +++ b/sdk/maps/azure-maps-render/sdk_packaging.toml @@ -1,7 +1,7 @@ [packaging] package_name = "azure-maps-render" package_nspkg = "azure-maps-nspkg" -package_pprint_name = "Azure Maps Render" +package_pprint_name = "Maps Render" package_doc_id = "" is_stable = false is_arm = true diff --git a/sdk/maps/azure-maps-render/setup.py b/sdk/maps/azure-maps-render/setup.py index 0ee048d7fd39..53d26fcc659f 100644 --- a/sdk/maps/azure-maps-render/setup.py +++ b/sdk/maps/azure-maps-render/setup.py @@ -13,7 +13,7 @@ # Change the PACKAGE_NAME only to change folder and different name PACKAGE_NAME = "azure-maps-render" -PACKAGE_PPRINT_NAME = "Azure Maps Render" +PACKAGE_PPRINT_NAME = "Maps Render" # a-b-c => a/b/c package_folder_path = PACKAGE_NAME.replace('-', '/') @@ -83,8 +83,5 @@ 'msrest>=0.6.21', 'azure-common~=1.1', 'azure-mgmt-core>=1.3.0,<2.0.0', - ], - extras_require={ - ":python_version<'3.0'": ['azure-maps-nspkg~=3.0.2'], - } + ] ) diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_caption.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_caption.yaml new file mode 100644 index 000000000000..7085d4d3a477 --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_caption.yaml @@ -0,0 +1,47 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) + subscription-key: + - + x-ms-client-id: + - + method: GET + uri: https://atlas.microsoft.com/map/copyright/caption/json?api-version=2.1 + response: + body: + string: "{\n \"formatVersion\": \"0.0.1\",\n \"copyrightsCaption\": \"\xA9 + 1992 - 2022 TomTom.\"\n}" + headers: + cache-control: + - max-age=86400 + content-length: + - '81' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Jul 2022 06:40:15 GMT + etag: + - W/"f3cfa19fc3c68912b94faa097ee62351" + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-azuremaps-region: + - West US 2 + x-msedge-ref: + - 'Ref A: 893B9022A2544460831EA6A86C78C2D0 Ref B: TPE30EDGE0619 Ref C: 2022-07-22T06:40:15Z' + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_tile.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_tile.yaml new file mode 100644 index 000000000000..1f58bf8ed7c9 --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_tile.yaml @@ -0,0 +1,286 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) + subscription-key: + - + x-ms-client-id: + - + method: GET + uri: https://atlas.microsoft.com/map/copyright/tile/json?api-version=2.1&zoom=6&x=9&y=22&text=yes + response: + body: + string: "{\n \"formatVersion\": \"0.0.1\",\n \"generalCopyrights\": [\n + \ \"\xA9 1992 - 2022 TomTom. All rights reserved. This material is proprietary + and the subject of copyright protection, database right protection and other + intellectual property rights owned by TomTom or its suppliers. The use of + this material is subject to the terms of a license agreement. Any unauthorized + copying or disclosure of this material will lead to criminal and civil liabilities.\",\n + \ \"Data Source \xA9 2022 TomTom\",\n \"based on\"\n ],\n \"regions\": + [\n {\n \"country\": {\n \"ISO3\": \"CAN\",\n \"label\": + \"Canada\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 1992 \u2013 + 2021 TomTom. All rights reserved. This material is proprietary and the subject + of copyright protection and other intellectual property rights owned or licensed + to TomTom. The product includes information copied with permission from Canadian + authorities, including \xA9 Canada Post Corporation. All rights reserved. + The use of this material is subject to the terms of a License Agreement. You + will be held liable for any unauthorized copying or disclosure of this material.\",\n + \ \"The following copyright notice applies to the use of Post- FSA + layer and 6-digit layer: \xA9 1992 \u2013 2021 TomTom. All rights reserved. + This material is proprietary and the subject of copyright protection and other + intellectual property rights owned or licensed to TomTom. The product includes + information copied with permission from Canadian authorities, including \xA9 + Canada Post Corporation, All rights reserved. The use of this material is + subject to the terms of a License Agreement. You will be held liable for any + unauthorized copying or disclosure of this material. The following copyright + notice applies to the use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. + All rights reserved. Portions of the POI database contained in Points of Interest + North America have been provided by Neustar Localeze The following copyright + notice applies to the use of Telecommunications: \xA9 2021 Pitney Bowes Software + Inc. All rights reserved. This product contains information and/or data of + iconectiv, licensed to be included herein. Copyright \xA9 2021 iconectiv. + All rights reserved. The following copyright notice applies to the use of + Logistics: \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - + 2021 ProMiles Software Development Corporation. All rights reserved. This + material is proprietary and the subject of copyright protection and other + intellectual property rights owned or licensed to TomTom.\",\n \"The + 6-digit alpha/numeric Canadian Postal Codes contained in any Licensed Product + cannot be used for bulk mailing of items through the Canadian postal system. + Furthermore, the 6-digit alpha/numeric Canadian Postal Codes must be wholly + contained in the Authorized Application and shall not be extractable. Canadian + Postal Codes cannot be displayed or used for postal code look-up on the Internet, + nor can they be extracted or exported from any application to be utilized + in the creation of any other data set or application. Notwithstanding the + above, an End User may optionally correct or derive Canadian Postal Codes + using the Authorized Application, but only as part of the address information + for locations (e.g.: of delivery points and depots) that have been set up + in the Authorized Application, and optionally extract data for fleet management + purposes.\",\n \"This product contains information adapted from + Statistics Canada: Boundary Files, 2016 Census; Road Network File, 2018; and + Census Population and Dwelling Count Highlight Tables, 2016 Census. This does + not constitute an endorsement by Statistics Canada of this product.\",\n \"Contains + information licensed under Open Government Licence \u2013 Canada.\",\n \"Contains + data made available by GeoNames licensed under CC-BY 4.0. For more information + visit http://www.geonames.org/.\",\n \"Contains information provided + by TransLink (South Coast British Columbia Transportation Authority) under + the modified open GTFS Data Terms of Use Agreement. For specifics: https://developer.translink.ca/ServicesGtfs/GtfsData\",\n + \ \"Contains information licensed under Open Government Licence: + \ * Vancouver * City of Victoria * British Columbia * City of Surrey * + Kamloops * Nanaimo * City of Westminster * City of Prince George * Burnaby + \ * City of Kelowna * Maple Ridge * North Vancouver\"\n ]\n },\n + \ {\n \"country\": {\n \"ISO3\": \"OCP\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OUP\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"USA\",\n \"label\": + \"United States\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"The following + copyright notice applies to the use of Post- FSA layer and 6-digit layer: + \ \xA9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary + and the subject of copyright protection and other intellectual property rights + owned or licensed to TomTom. The product includes information copied with + permission from Canadian authorities, including \xA9 Canada Post Corporation, + All rights reserved. The use of this material is subject to the terms of a + License Agreement. You will be held liable for any unauthorized copying or + disclosure of this material. The following copyright notice applies to the + use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. All rights reserved. + Portions of the POI database contained in Points of Interest North America + have been provided by Neustar Localeze The following copyright notice applies + to the use of Telecommunications: \xA9 2021 Pitney Bowes Software Inc. All + rights reserved. This product contains information and/or data of iconectiv, + licensed to be included herein. Copyright \xA9 2021 iconectiv. All rights + reserved. The following copyright notice applies to the use of Logistics: + \ \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - 2021 ProMiles + Software Development Corporation. All rights reserved. This material is proprietary + and the subject of copyright protection and other intellectual property rights + owned or licensed to TomTom.\",\n \"\xA9 United States Postal Service + 2021\",\n \"You shall not use the Municipal Boundary layer of the + Administrative Areas product to create or derive applications which are used + by third parties for the purpose of tariff, tax jurisdiction, or tax rate + determination for a particular address or range of addresses.\",\n \"This + product is built on basis on the following elevation data: SRTM, GTOPO, NED + data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview\",\n + \ \"This product is built on basis on the following elevation data: + 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department + of Commerce, National Oceanic and Atmospheric Administration, National Geophysical + Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\",\n \"Contains + data made available by City of Everett, WA with the following disclaimer:\",\n + \ \"\\\"The data made available here has been modified for use from + its original source, which is the City of Everett. Neither the City of Everett + nor the Information Technology Department makes any claims as to the completeness, + timeliness, accuracy or content of any data contained in this application; + makes any representation of any kind, including, but not limited to, warranty + of the accuracy or fitness for a particular use; nor are any such warranties + to be implied or inferred with respect to the information or data furnished + herein. The data is subject to change as modifications and updates are complete. + It is understood that the information contained in the web feed is being used + at one's own risk.\\\" For specifics, please reference: https://data.everettwa.gov/\"\n + \ ]\n }\n ]\n}" + headers: + cache-control: + - max-age=86400 + content-length: + - '18516' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Jul 2022 06:40:15 GMT + etag: + - W/"9de0508ecdba66c786311c93a8d63f16" + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-azuremaps-region: + - West US 2 + x-msedge-ref: + - 'Ref A: 74DC20C646A14624BDF5C2E523057B00 Ref B: TPE30EDGE0921 Ref C: 2022-07-22T06:40:16Z' + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_world.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_world.yaml new file mode 100644 index 000000000000..54aae426e49a --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_world.yaml @@ -0,0 +1,11521 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) + subscription-key: + - + x-ms-client-id: + - + method: GET + uri: https://atlas.microsoft.com/map/copyright/world/json?api-version=2.1&text=yes + response: + body: + string: "{\n \"formatVersion\": \"0.0.1\",\n \"generalCopyrights\": [\n + \ \"\xA9 1992 - 2022 TomTom. All rights reserved. This material is proprietary + and the subject of copyright protection, database right protection and other + intellectual property rights owned by TomTom or its suppliers. The use of + this material is subject to the terms of a license agreement. Any unauthorized + copying or disclosure of this material will lead to criminal and civil liabilities.\",\n + \ \"Data Source \xA9 2022 TomTom\",\n \"based on\"\n ],\n \"regions\": + [\n {\n \"country\": {\n \"ISO3\": \"ABW\",\n \"label\": + \"Aruba\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"AFG\",\n \"label\": + \"Afghanistan\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"AGO\",\n \"label\": + \"Angola\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"AIA\",\n \"label\": + \"Anguilla\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ALB\",\n \"label\": + \"Albania\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"AND\",\n \"label\": + \"Andorra\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ARE\",\n \"label\": + \"United Arab Emirates\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + from Dubai Municipality.\"\n ]\n },\n {\n \"country\": + {\n \"ISO3\": \"ARG\",\n \"label\": \"Argentina\"\n + \ },\n \"copyrights\": [\n \"You agree to include + as soon as practically possible, but no later than the first new release of + the Authorized Application following Your receipt of any 3D Landmarks, any + copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ARM\",\n \"label\": + \"Armenia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ASM\",\n \"label\": + \"American Samoa\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"The following + copyright notice applies to the use of Post- FSA layer and 6-digit layer: + \ \xA9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary + and the subject of copyright protection and other intellectual property rights + owned or licensed to TomTom. The product includes information copied with + permission from Canadian authorities, including \xA9 Canada Post Corporation, + All rights reserved. The use of this material is subject to the terms of a + License Agreement. You will be held liable for any unauthorized copying or + disclosure of this material. The following copyright notice applies to the + use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. All rights reserved. + Portions of the POI database contained in Points of Interest North America + have been provided by Neustar Localeze The following copyright notice applies + to the use of Telecommunications: \xA9 2021 Pitney Bowes Software Inc. All + rights reserved. This product contains information and/or data of iconectiv, + licensed to be included herein. Copyright \xA9 2021 iconectiv. All rights + reserved. The following copyright notice applies to the use of Logistics: + \ \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - 2021 ProMiles + Software Development Corporation. All rights reserved. This material is proprietary + and the subject of copyright protection and other intellectual property rights + owned or licensed to TomTom.\",\n \"\xA9 United States Postal Service + 2021\",\n \"You shall not use the Municipal Boundary layer of the + Administrative Areas product to create or derive applications which are used + by third parties for the purpose of tariff, tax jurisdiction, or tax rate + determination for a particular address or range of addresses.\",\n \"This + product is built on basis on the following elevation data: SRTM, GTOPO, NED + data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview\",\n + \ \"This product is built on basis on the following elevation data: + 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department + of Commerce, National Oceanic and Atmospheric Administration, National Geophysical + Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\"\n ]\n + \ },\n {\n \"country\": {\n \"ISO3\": \"ATA\",\n + \ \"label\": \"Antarctica\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"ATF\",\n \"label\": \"French Southern and + Antarctic Lands\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ATG\",\n \"label\": + \"Antigua and Barbuda\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"AUS\",\n \"label\": + \"Australia\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Incorporates + modified data from G-NAF \xA9PSMA Australia Limited licensed by the Commonwealth + of Australia under the Open Geo-coded National Address File (G-NAF) End User + Licence Agreement. For more information visit https://data.gov.au/dataset/geocoded-national-address-file-g-naf\",\n + \ \"Contains modified hospitals made available by Western Australia + Department of Health. For more information visit https://catalogue.data.wa.gov.au/dataset/health-establishments\",\n + \ \"Contains heavy vehicle route information made available from + state road controlling authorities as described below and published by NHVR + on their route planner. For more information see https://www.nhvr.gov.au/road-access/route-planner\",\n + \ \"Contains data that is available free of charge from www.transperth.wa.gov.au\",\n + \ \"Contains data made available under open licence from https://www.data.brisbane.qld.gov.au/data/dataset/road-restrictions\",\n + \ \"Contains data licensed under CC-BY 2.5 AU. For more information + visit: * Australian Department of Industry, Science, Energy and Resources + https://data.gov.au/data/dataset/ab59e562-9cbc-410d-a9cc-d74934d302c1\",\n + \ \"Contains data licensed under CC-BY 3.0 AU. For more information + visit: * Queensland Department of Transport and Main Roads http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7bC7CA73D1-D7CD-4B36-BE2B-0A9AEFC770DF%7d, + http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7b2757F8EA-5B2F-4F03-902F-F9D7D038BF1B%7d, + http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={2757F8EA-5B2F-4F03-902F-F9D7D038BF1B} + \ * https://www.data.qld.gov.au/dataset/state-controlled-roads-queensland, + http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7B984B2531-17D6-4E3D-A04A-3BEB9407BBA3%7D + \ * https://www.publications.qld.gov.au/dataset/transport-of-dangerous-goods-by-road/resource/de4f110c-c007-496e-80a9-9b0f5a1aec89http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={14D6B946-F361-4CE7-B156-EA8C324866DC} + \ * Southern Grampians Shire Council https://data.gov.au/dataset/ds-dga-ff90cad8-bbfa-4c62-a957-54da3514f0e1 + \ * SA Department of Planning Transport and Infrastructure https://www.dpti.sa.gov.au/ravnet + \ * NSW Spatial Services https://sdi.nsw.gov.au/catalog/search/resource/details.page?uuid=%7B144289DD-004C-4F66-ABD4-4F269258C677%7D, + https://sdi.nsw.gov.au/catalog/search/resource/details.page?uuid={C5FCA09F-F919-4975-9D8A-B3F3BA82E06B}, + http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/address_data + and https://www.spatial.nsw.gov.au/mapping_and_imagery/address_data * NSW + Roads and Maritime Service https://data.nsw.gov.au/data/dataset/restricted-access-vehicle-map + \ * NSW Ministry of Health https://data.nsw.gov.au/data/dataset/nsw-health-services + \ * Department of Human Services https://data.gov.au/dataset/location-of-medicare-offices + & https://data.gov.au/dataset/location-of-centrelink-offices * Department + of Social Services https://data.gov.au/dataset/national-public-toilet-map + \ * City of Ballarat https://data.gov.au/dataset/ballarat-reserves * Land + Tasmania https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&query=road+segments&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=1ab7e34f-811c-4521-a549-212f295acc97&searchCriteriaURL=query%3Droad+segments%26perPage%3D10%26sortBy%3DTitle%3AASC, + http://listdata.thelist.tas.gov.au/opendata/index.html, https://data.thelist.tas.gov.au/datagn/srv/eng/main.home?uuid=cbd6d180-024b-4ff3-977c-5efd9cc58ca5 + , https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&query=speed&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=707db3e9-b4aa-4651-8be2-b11a07f89d4d&searchCriteriaURL=query%3Dspeed%26perPage%3D10%26sortBy%3DTitle%3AASC%20, + https://data.thelist.tas.gov.au/datagn/srv/eng/main.home?uuid=707db3e9-b4aa-4651-8be2-b11a07f89d4d, + https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&sc_tc_code=structure&sc_tc_code=transportation&sc_tc_code=utilitiesCommunication&query=&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=99c36d4b-7616-436c-84bd-a4a1877fa3dc&searchCriteriaURL=query%3D%26perPage%3D10%26sortBy%3DTitle%3AASC%26sc_tc_code%3Dstructure%26sc_tc_code%3Dtransportation%26sc_tc_code%3DutilitiesCommunication, + https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&query=Structure+Height+Structures&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=56b2d9bd-1f26-4163-b93a-61c7d2be218c&searchCriteriaURL=query%3DStructure+Height+Structures%26perPage%3D10%26sortBy%3DTitle%3AASC + and https://services.thelist.tas.gov.au/arcgis/rest/services/Public/OpenDataWFS/MapServer/42 + \ * City of Gold Coast http://data-goldcoast.opendata.arcgis.com/datasets/4cd43781770e44258fe72014d786bb52_0 + and https://data-goldcoast.opendata.arcgis.com/datasets/ab72b03757444f4c9865c1b1fd7087ae_0 + \ * City of Launceston https://data-launceston.opendata.arcgis.com/datasets/load-limits + and https://opendata.launceston.tas.gov.au/datasets/speed-limits * Australian + Government https://www.australia.gov.au/about-australia/facts-and-figures/time-zones-and-daylight-saving\",\n + \ \"Contains data licensed under CC-BY 4.0. For more information + visit: * Queensland Department of Natural Resources, Mines & Energy https://www.data.qld.gov.au/ + \ * SA Department of Planning Transport and Infrastructure https://data.sa.gov.au/ + \ * Victoria Department of Environment, Land, Water & Planning https://data.vic.gov.au/ + \ * WA Mainroads https://portal-mainroads.opendata.arcgis.com/ and https://catalogue.data.wa.gov.au/ + \ * ACT Environment, Planning and Sustainable Development Directorate https://www.data.act.gov.au/ + \ * Geoscience Australia https://www.ga.gov.au/ * Commonwealth of Australia + https://data.gov.au/ * Australian Capital Territory https://actmapi-actgov.opendata.arcgis.com/ + \ * Transport Canberra Light Rail https://www.data.act.gov.au/ * City of + Darwin https://open-darwin.opendata.arcgis.com/ * Rockhampton Regional Council + https://data.gov.au// * Tasmanian Department of State Growth https://data.gov.au/ + \ * Department of Health https://data.gov.au/ * Department of Finance, Services + & Innovation https://www.gnb.nsw.gov.au/ * Victoria Department of Health + and Human Services https://data.vic.gov.au/ * Queensland Health https://www.data.qld.gov.au/ + \ * SA Health https://data.sa.gov.au/ * Health ACT https://www.data.act.gov.au/ + \ * Brisbane City Council https://www.data.brisbane.qld.gov.au/ * City of + Melbourne https://data.melbourne.vic.gov.au/ * Vicroads http://api.vicroads.vic.gov.au/, + http://vicroadsopendata-vicroadsmaps.opendata.arcgis.com/ and https://data.vic.gov.au/ + \ * ACT Education Directorate https://www.data.act.gov.au/ * Queensland Department + of Education https://www.data.qld.gov.au/ * Victoria Department of Education + and Training https://www.data.vic.gov.au/ * NSW Department of Education https://data.cese.nsw.gov.au/ + \ * SA Department for Education https://data.sa.gov.au/ * Roads ACT https://www.data.act.gov.au/ + \ * State of NSW (NSW Police Force) https://www.police.nsw.gov.au/ * Environment + and Planning Directorate, Transport Canberra and City Services, Emergency + Services Agency - ACT Government https://actmapi-actgov.opendata.arcgis.com/ + \ * NSW Health https://www.health.nsw.gov.au/ * Transport Canberra and City + Services https://www.data.act.gov.au/ * Transport Canberra https://www.transport.act.gov.au/ + \ * Northern Territory Department of Infrastructure, Planning and Logistics + https://dipl.nt.gov.au/ * Public Transport Victoria https://www.data.vic.gov.au/ + \ * Queensland Department of Transport and Main Roads https://www.data.qld.gov.au/ + \ * Transport for New South Wales https://opendata.transport.nsw.gov.au/ * + SA Department for Infrastructure and Transport https://data.sa.gov.au/ * + Action Buses https://www.transport.act.gov.au * Adelaide Metro https://data.sa.gov.au + \ * Canberra Metro Light Rail https://www.transport.act.gov.au * Queensland + Translink https://www.data.qld.gov.au * Australian Department of Foreign + Affairs and Trade https://www.dfat.gov.au/ * New South Wales Legislation + https://www.legislation.nsw.gov.au/ * City of Hobart https://data-1-hobartcc.opendata.arcgis.com/ + \ * Victoria Department of Transport https://data-exchange.vicroads.vic.gov.au + \ * State of Western Australia (Department of Mines, Industry Regulation and + Safety) https://www.dmirs.wa.gov.au/\"\n ]\n },\n {\n \"country\": + {\n \"ISO3\": \"AUT\",\n \"label\": \"Austria\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 BEV, GZ + 1368/2003\",\n \"The location and event code (version 3.4) has + been provided by ASFINAG.\",\n \"Contains data licensed under CC + BY 3.0 AT. For more information visit: * City of Vienna https://www.data.gv.at + \ * Geoland https://www.data.gv.at/ * BEV: \xA9 \xD6sterreichisches Adressregister, + 01.10.2019. http://www.bev.gv.at/ * Open Government Data Wien https://open.wien.gv.at/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"AZE\",\n \"label\": \"Azerbaijan\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"BDI\",\n \"label\": \"Burundi\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BEL\",\n \"label\": + \"Belgium\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + licensed under Free Open Data License Vlaanderen. For more information visit: + \ * CRAB Adressenlijst https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=6EF348E1-69EB-4CAD-8CCD-1C68099AFCF3 + \ * CRAB Stratenlijst https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=FBC603AE-87DC-4418-B16D-832CE7B30335 + \ * Grootschalig Referentiebestand (GRB) https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=7C823055-7BBF-4D62-B55E-F85C30D53162 + \ * 3D GRB https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=42ac31a7-afe6-44c4-a534-243814fe5b58 + \ * AGIV Aerial images https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=0ffd5eee-c197-4f8f-b491-b01bd1792f7c + \ * Wegenregister Flanders and Brussels https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=49515fac-068f-4b41-a4ac-8e29d43df696 + \ * School and University data\",\n \"http://opendataforum.info/Docs/Modellicentie%202%20Gratis%20Open%20Data%20Licentie.htm + \ * City of Antwerp http://opendata.antwerpen.be/gratis-open-data-licentie + \ * Toerisme Vlaanderen http://www.toerismevlaanderen.be/opendata * Gipod + https://overheid.vlaanderen.be/sites/default/files/documenten/ict-egov/licenties/hergebruik/modellicentie_gratis_hergebruik_v1_0.html\",\n + \ \"Contains data licensed under CIRB - CIBG under Open Data License. + For more information visit: * CIRB-CIBG APT's http://www.bric.irisnet.be/en/our-solutions/urbis-solutions/download + \ * Brussels Mobility Zones 30 (30 km/h zones) http://data-mobility.brussels/mobigis/nl/#\",\n + \ \"Contains data licensed under CC-BY 4.0. For more information + visit: * TEC (Public Transport Stops) http://opendata.awt.be/dataset/tec\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"BEN\",\n \"label\": \"Benin\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"BES\",\n \"label\": \"Bonaire, Sint Eustatius + and Saba\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BFA\",\n \"label\": + \"Burkina Faso\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BGD\",\n \"label\": + \"Bangladesh\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BGR\",\n \"label\": + \"Bulgaria\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BHR\",\n \"label\": + \"Bahrain\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"The product + contains 'Points of Interest' (POI) data of Bahrain provided by the iGA via + www.data.gov.bh and governed by the Terms of Use available at http://www.data.gov.bh/en/TermsOfUse\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"BHS\",\n \"label\": \"Bahamas\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"BIH\",\n \"label\": \"Bosnia-Herzegovina\"\n + \ },\n \"copyrights\": [\n \"You agree to include + as soon as practically possible, but no later than the first new release of + the Authorized Application following Your receipt of any 3D Landmarks, any + copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BLM\",\n \"label\": + \"Saint Barthelemy\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BLR\",\n \"label\": + \"Republic of Belarus\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 Source + data. State committee on property of the Republic of Belarus, 2019 \xA9 Republic + unitary organization Belgeodsia, 2019\"\n ]\n },\n {\n \"country\": + {\n \"ISO3\": \"BLZ\",\n \"label\": \"Belize\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BMU\",\n \"label\": + \"Bermuda\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BOL\",\n \"label\": + \"Bolivia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BRA\",\n \"label\": + \"Brazil\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BRB\",\n \"label\": + \"Barbados\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BRN\",\n \"label\": + \"Brunei\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BTN\",\n \"label\": + \"Bhutan\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BVT\",\n \"label\": + \"Bouvet Island\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BWA\",\n \"label\": + \"Botswana\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"CAF\",\n \"label\": + \"Central African Republic\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"CAN\",\n \"label\": + \"Canada\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 1992 \u2013 + 2021 TomTom. All rights reserved. This material is proprietary and the subject + of copyright protection and other intellectual property rights owned or licensed + to TomTom. The product includes information copied with permission from Canadian + authorities, including \xA9 Canada Post Corporation. All rights reserved. + The use of this material is subject to the terms of a License Agreement. You + will be held liable for any unauthorized copying or disclosure of this material.\",\n + \ \"The following copyright notice applies to the use of Post- FSA + layer and 6-digit layer: \xA9 1992 \u2013 2021 TomTom. All rights reserved. + This material is proprietary and the subject of copyright protection and other + intellectual property rights owned or licensed to TomTom. The product includes + information copied with permission from Canadian authorities, including \xA9 + Canada Post Corporation, All rights reserved. The use of this material is + subject to the terms of a License Agreement. You will be held liable for any + unauthorized copying or disclosure of this material. The following copyright + notice applies to the use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. + All rights reserved. Portions of the POI database contained in Points of Interest + North America have been provided by Neustar Localeze The following copyright + notice applies to the use of Telecommunications: \xA9 2021 Pitney Bowes Software + Inc. All rights reserved. This product contains information and/or data of + iconectiv, licensed to be included herein. Copyright \xA9 2021 iconectiv. + All rights reserved. The following copyright notice applies to the use of + Logistics: \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - + 2021 ProMiles Software Development Corporation. All rights reserved. This + material is proprietary and the subject of copyright protection and other + intellectual property rights owned or licensed to TomTom.\",\n \"The + 6-digit alpha/numeric Canadian Postal Codes contained in any Licensed Product + cannot be used for bulk mailing of items through the Canadian postal system. + Furthermore, the 6-digit alpha/numeric Canadian Postal Codes must be wholly + contained in the Authorized Application and shall not be extractable. Canadian + Postal Codes cannot be displayed or used for postal code look-up on the Internet, + nor can they be extracted or exported from any application to be utilized + in the creation of any other data set or application. Notwithstanding the + above, an End User may optionally correct or derive Canadian Postal Codes + using the Authorized Application, but only as part of the address information + for locations (e.g.: of delivery points and depots) that have been set up + in the Authorized Application, and optionally extract data for fleet management + purposes.\",\n \"This product contains information adapted from + Statistics Canada: Boundary Files, 2016 Census; Road Network File, 2018; and + Census Population and Dwelling Count Highlight Tables, 2016 Census. This does + not constitute an endorsement by Statistics Canada of this product.\",\n \"Contains + information licensed under Open Government Licence \u2013 Canada.\",\n \"Contains + data made available by GeoNames licensed under CC-BY 4.0. For more information + visit http://www.geonames.org/.\",\n \"Contains information licensed + under the Open Data License \u2013 City of Grande Prairie.\",\n \"Contains + information licensed under the Open Data License \u2013 City of Airdrie.\",\n + \ \"Contains information licensed under the Open Data License \u2013 + Town of Cochrane.\",\n \"Contains information licensed under the + Open Data License. \u2013 The City of Red Deer\",\n \"Contains + information licensed under Open Government Licence: * Strathcona County * + County of Grand Prairie * City of Calgary * Banff * City of Grant Prairie\",\n + \ \"Contains information provided by TransLink (South Coast British + Columbia Transportation Authority) under the modified open GTFS Data Terms + of Use Agreement. For specifics: https://developer.translink.ca/ServicesGtfs/GtfsData\",\n + \ \"Contains information licensed under Open Government Licence: + \ * Vancouver * City of Victoria * British Columbia * City of Surrey * + Kamloops * Nanaimo * City of Westminster * City of Prince George * Burnaby + \ * City of Kelowna * Maple Ridge * North Vancouver\",\n \"Contains + public sector datasets made available under the City of Brandon\u2019s Open + Data License.\",\n \"Contains information licensed under the Open + Government License \u2013 Winnipeg.\",\n \"Contains information + licensed under Open Government Licence: * New Brunswick * Saint John\",\n + \ \"Contains information licenced under the Open Government License + \u2013 Halifax.\",\n \"Contains public sector Datasets made available + under the City of Yellowknife\u2019s Open Data License v.1.\",\n \"Contains + information provided by the City of Guelph under an open government license.\",\n + \ \"Contains public sector Data made available under the City of + Hamilton\u2019s Open Data Licence.\",\n \"Contains information + licensed under the Open Data Licence \u2013 City of Greater Sudbury.\",\n + \ \"Contains information licensed under the Open Data Licence \u2013 + City of Kingston.\",\n \"Contains information licensed under the + Grey County Open Data Licence.\",\n \"Contains information licensed + under Open Government Licence: * Toronto * Haldimand County * Niagra Region + \ * Town of Oakville * The Corporation of the City of Windsor * The Corporation + of the Municipality of Chatham-Kent * City of Welland * Brantford * Township + of The Archipelago * City of Lambton * Barrie * City of Cambridge * City + of Ottawa * The Corporation of the City of Oshawa * The Corporation of the + County of Hastings\",\n \"Contains information licensed under the + Open Government Licence \u2013 Prince Edward Island.\",\n \"This + product contains information licensed under the Le minist\xE8re des Transports + de la Mobilit\xE9 durable et de l'\xC9lectrification des Transports du Qu\xE9bec + (Transport Qu\xE9bec).\",\n \"Contains data for the Province of + Quebec: \xA9 Gouvernement du Qu\xE9bec.\",\n \"Contains information + provided by Soci\xE9t\xE9 de transport de Montr\xE9al (STM) under the GTFS + Data Terms of Use Agreement.\",\n \"Contains information provided + by Montr\xE9al Metropolitan Transportation Agency (ATM) under the License + of Open Data L'agence M\xE9tropolitaine de Transport (AMT).\",\n \"Contains + data licensed under CC-BY 4.0. For more information visit: * Gatineau, QC + \ * Laval, QC * Longueuil, QC * Montreal, QC * Rimouski, QC\",\n \"Contains + information licensed under Open Government Licence: * City of Regina * City + of Yorkton\"\n ]\n },\n {\n \"country\": {\n \"ISO3\": + \"CCK\",\n \"label\": \"Cocos (Keeling) Islands\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"CHE\",\n \"label\": + \"Switzerland\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 Swisstopo\",\n + \ \"Contains data licensed under CC BY. For more information visit: + \ * SITG https://opendata.swiss/ * BFS (eidgen\xF6ssisches Geb\xE4ude- und + Wohnungsregister) https://data.geo.admin.ch/ * BAV https://opendata.swiss/de\",\n + \ \"Contains data licensed under CC Zero. For more information visit: + \ * the city of Z\xFCrich https://data.stadt-zuerich.ch/\",\n \"Contains + data licensed under CC BY ASK. For more information visit: * swisstopo https://opendata.swiss/de\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"CHL\",\n \"label\": \"Chile\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"CHN\",\n \"label\": \"China\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"You agree that + any Licensed Product which contains data of India may be subject to additional + terms and conditions which shall be provided to You when available to TomTom. + India data shall not be altered or changed during Your product creation / + publication process. India data may not be exported from India.\"\n ]\n + \ },\n {\n \"country\": {\n \"ISO3\": \"CIV\",\n + \ \"label\": \"Cote d'Ivoire\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"CMR\",\n \"label\": \"Cameroon\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"COD\",\n \"label\": + \"Congo (DRC)\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"COG\",\n \"label\": + \"Congo-Brazzaville\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"COK\",\n \"label\": + \"Cook Islands\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"COL\",\n \"label\": + \"Colombia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"COM\",\n \"label\": + \"Comoros\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"CPV\",\n \"label\": + \"Cabo Verde\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"CRI\",\n \"label\": + \"Costa Rica\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"CUB\",\n \"label\": + \"Cuba\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"CUW\",\n \"label\": + \"Cura\xE7ao\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"CXR\",\n \"label\": + \"Christmas Island\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Incorporates + modified data from G-NAF \xA9PSMA Australia Limited licensed by the Commonwealth + of Australia under the Open Geo-coded National Address File (G-NAF) End User + Licence Agreement. For more information visit https://data.gov.au/dataset/geocoded-national-address-file-g-naf\",\n + \ \"Contains modified hospitals made available by Western Australia + Department of Health. For more information visit https://catalogue.data.wa.gov.au/dataset/health-establishments\",\n + \ \"Contains heavy vehicle route information made available from + state road controlling authorities as described below and published by NHVR + on their route planner. For more information see https://www.nhvr.gov.au/road-access/route-planner\",\n + \ \"Contains data that is available free of charge from www.transperth.wa.gov.au\",\n + \ \"Contains data made available under open licence from https://www.data.brisbane.qld.gov.au/data/dataset/road-restrictions\",\n + \ \"Contains data licensed under CC-BY 2.5 AU. For more information + visit: * Australian Department of Industry, Science, Energy and Resources + https://data.gov.au/data/dataset/ab59e562-9cbc-410d-a9cc-d74934d302c1\",\n + \ \"Contains data licensed under CC-BY 3.0 AU. For more information + visit: * Queensland Department of Transport and Main Roads http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7bC7CA73D1-D7CD-4B36-BE2B-0A9AEFC770DF%7d, + http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7b2757F8EA-5B2F-4F03-902F-F9D7D038BF1B%7d, + http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={2757F8EA-5B2F-4F03-902F-F9D7D038BF1B} + \ * https://www.data.qld.gov.au/dataset/state-controlled-roads-queensland, + http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7B984B2531-17D6-4E3D-A04A-3BEB9407BBA3%7D + \ * https://www.publications.qld.gov.au/dataset/transport-of-dangerous-goods-by-road/resource/de4f110c-c007-496e-80a9-9b0f5a1aec89http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={14D6B946-F361-4CE7-B156-EA8C324866DC} + \ * Southern Grampians Shire Council https://data.gov.au/dataset/ds-dga-ff90cad8-bbfa-4c62-a957-54da3514f0e1 + \ * SA Department of Planning Transport and Infrastructure https://www.dpti.sa.gov.au/ravnet + \ * NSW Spatial Services https://sdi.nsw.gov.au/catalog/search/resource/details.page?uuid=%7B144289DD-004C-4F66-ABD4-4F269258C677%7D, + https://sdi.nsw.gov.au/catalog/search/resource/details.page?uuid={C5FCA09F-F919-4975-9D8A-B3F3BA82E06B}, + http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/address_data + and https://www.spatial.nsw.gov.au/mapping_and_imagery/address_data * NSW + Roads and Maritime Service https://data.nsw.gov.au/data/dataset/restricted-access-vehicle-map + \ * NSW Ministry of Health https://data.nsw.gov.au/data/dataset/nsw-health-services + \ * Department of Human Services https://data.gov.au/dataset/location-of-medicare-offices + & https://data.gov.au/dataset/location-of-centrelink-offices * Department + of Social Services https://data.gov.au/dataset/national-public-toilet-map + \ * City of Ballarat https://data.gov.au/dataset/ballarat-reserves * Land + Tasmania https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&query=road+segments&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=1ab7e34f-811c-4521-a549-212f295acc97&searchCriteriaURL=query%3Droad+segments%26perPage%3D10%26sortBy%3DTitle%3AASC, + http://listdata.thelist.tas.gov.au/opendata/index.html, https://data.thelist.tas.gov.au/datagn/srv/eng/main.home?uuid=cbd6d180-024b-4ff3-977c-5efd9cc58ca5 + , https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&query=speed&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=707db3e9-b4aa-4651-8be2-b11a07f89d4d&searchCriteriaURL=query%3Dspeed%26perPage%3D10%26sortBy%3DTitle%3AASC%20, + https://data.thelist.tas.gov.au/datagn/srv/eng/main.home?uuid=707db3e9-b4aa-4651-8be2-b11a07f89d4d, + https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&sc_tc_code=structure&sc_tc_code=transportation&sc_tc_code=utilitiesCommunication&query=&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=99c36d4b-7616-436c-84bd-a4a1877fa3dc&searchCriteriaURL=query%3D%26perPage%3D10%26sortBy%3DTitle%3AASC%26sc_tc_code%3Dstructure%26sc_tc_code%3Dtransportation%26sc_tc_code%3DutilitiesCommunication, + https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&query=Structure+Height+Structures&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=56b2d9bd-1f26-4163-b93a-61c7d2be218c&searchCriteriaURL=query%3DStructure+Height+Structures%26perPage%3D10%26sortBy%3DTitle%3AASC + and https://services.thelist.tas.gov.au/arcgis/rest/services/Public/OpenDataWFS/MapServer/42 + \ * City of Gold Coast http://data-goldcoast.opendata.arcgis.com/datasets/4cd43781770e44258fe72014d786bb52_0 + and https://data-goldcoast.opendata.arcgis.com/datasets/ab72b03757444f4c9865c1b1fd7087ae_0 + \ * City of Launceston https://data-launceston.opendata.arcgis.com/datasets/load-limits + and https://opendata.launceston.tas.gov.au/datasets/speed-limits * Australian + Government https://www.australia.gov.au/about-australia/facts-and-figures/time-zones-and-daylight-saving\",\n + \ \"Contains data licensed under CC-BY 4.0. For more information + visit: * Queensland Department of Natural Resources, Mines & Energy https://www.data.qld.gov.au/ + \ * SA Department of Planning Transport and Infrastructure https://data.sa.gov.au/ + \ * Victoria Department of Environment, Land, Water & Planning https://data.vic.gov.au/ + \ * WA Mainroads https://portal-mainroads.opendata.arcgis.com/ and https://catalogue.data.wa.gov.au/ + \ * ACT Environment, Planning and Sustainable Development Directorate https://www.data.act.gov.au/ + \ * Geoscience Australia https://www.ga.gov.au/ * Commonwealth of Australia + https://data.gov.au/ * Australian Capital Territory https://actmapi-actgov.opendata.arcgis.com/ + \ * Transport Canberra Light Rail https://www.data.act.gov.au/ * City of + Darwin https://open-darwin.opendata.arcgis.com/ * Rockhampton Regional Council + https://data.gov.au// * Tasmanian Department of State Growth https://data.gov.au/ + \ * Department of Health https://data.gov.au/ * Department of Finance, Services + & Innovation https://www.gnb.nsw.gov.au/ * Victoria Department of Health + and Human Services https://data.vic.gov.au/ * Queensland Health https://www.data.qld.gov.au/ + \ * SA Health https://data.sa.gov.au/ * Health ACT https://www.data.act.gov.au/ + \ * Brisbane City Council https://www.data.brisbane.qld.gov.au/ * City of + Melbourne https://data.melbourne.vic.gov.au/ * Vicroads http://api.vicroads.vic.gov.au/, + http://vicroadsopendata-vicroadsmaps.opendata.arcgis.com/ and https://data.vic.gov.au/ + \ * ACT Education Directorate https://www.data.act.gov.au/ * Queensland Department + of Education https://www.data.qld.gov.au/ * Victoria Department of Education + and Training https://www.data.vic.gov.au/ * NSW Department of Education https://data.cese.nsw.gov.au/ + \ * SA Department for Education https://data.sa.gov.au/ * Roads ACT https://www.data.act.gov.au/ + \ * State of NSW (NSW Police Force) https://www.police.nsw.gov.au/ * Environment + and Planning Directorate, Transport Canberra and City Services, Emergency + Services Agency - ACT Government https://actmapi-actgov.opendata.arcgis.com/ + \ * NSW Health https://www.health.nsw.gov.au/ * Transport Canberra and City + Services https://www.data.act.gov.au/ * Transport Canberra https://www.transport.act.gov.au/ + \ * Northern Territory Department of Infrastructure, Planning and Logistics + https://dipl.nt.gov.au/ * Public Transport Victoria https://www.data.vic.gov.au/ + \ * Queensland Department of Transport and Main Roads https://www.data.qld.gov.au/ + \ * Transport for New South Wales https://opendata.transport.nsw.gov.au/ * + SA Department for Infrastructure and Transport https://data.sa.gov.au/ * + Action Buses https://www.transport.act.gov.au * Adelaide Metro https://data.sa.gov.au + \ * Canberra Metro Light Rail https://www.transport.act.gov.au * Queensland + Translink https://www.data.qld.gov.au * Australian Department of Foreign + Affairs and Trade https://www.dfat.gov.au/ * New South Wales Legislation + https://www.legislation.nsw.gov.au/ * City of Hobart https://data-1-hobartcc.opendata.arcgis.com/ + \ * Victoria Department of Transport https://data-exchange.vicroads.vic.gov.au + \ * State of Western Australia (Department of Mines, Industry Regulation and + Safety) https://www.dmirs.wa.gov.au/\"\n ]\n },\n {\n \"country\": + {\n \"ISO3\": \"CYM\",\n \"label\": \"Cayman Islands\"\n + \ },\n \"copyrights\": [\n \"You agree to include + as soon as practically possible, but no later than the first new release of + the Authorized Application following Your receipt of any 3D Landmarks, any + copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"CYP\",\n \"label\": + \"Cyprus\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + licensed under CC-BY 4.0. For more information visit: * GeoNames http://www.geonames.org/ + \ * National Open data Portal Cyprus https://www.data.gov.cy/\"\n ]\n + \ },\n {\n \"country\": {\n \"ISO3\": \"CZE\",\n + \ \"label\": \"Czechia\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"DEU\",\n \"label\": \"Germany\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 GeoBasis-DE + / LDBV 2021\",\n \"Contains data licensed under CC BY 3.0 DE. For + more information visit: * Bayerisches Landesamt f\xFCr Umwelt, www.lfu.bayern.de + \ * Bayerische Vermessungsverwaltung, www.geodaten.bayern.de\",\n \"Contains + cartographic information made available by \xA9 GeoBasis-DE / BKG 2018 (data + modified). https://www.bkg.bund.de\",\n \"Contains data licensed + under dl-de-by-2.0. For more information visit: * Bezirksregierung K\xF6ln, + 2019, https://www.bezreg-koeln.nrw.de/ * geoportal-th.de (data modified), + https://www.geoportal-th.de * Open.NRW \u2013 Das Open Government Portal + f\xFCr das Land Nordrhein-Westfalen\u201D; Landesamt f\xFCr Natur, Umwelt + und Verbraucherschutz Nordrhein-Westfalen, www.open.nrw * transparenz.hamburg.de + (data modified), http://suche.transparenz.hamburg.de/ * Land NRW, 2018, https://www.wms.nrw.de/geobasis/wms_nw_dop?REQUEST=GetCapabilities&SERVICE=WMS + \ * Vermessungs- und Katasterverwaltung Rheinland-Pfalz, 2018, https://lvermgeo.rlp.de/de/ + \ * LVermGeoRP, 2018, https://www.geoportal.rlp.de/\",\n \"Contains + data licensed under CC-BY 4.0. For more information visit: * \u201EOpen.NRW + \u2013 Das Open Government Portal f\xFCr das Land Nordrhein-Westfalen\u201D; + Landesamt f\xFCr Natur, Umwelt und Verbraucherschutz Nordrhein-Westfalen, + www.open.nrw\"\n ]\n },\n {\n \"country\": {\n \"ISO3\": + \"DJI\",\n \"label\": \"Djibouti\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"DMA\",\n \"label\": \"Dominica\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"DNK\",\n \"label\": + \"Denmark\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 DAV, violation + of these copyrights shall cause legal proceedings\",\n \"This product + contains information from Styrelsen for Dataforsyning og Effektiviserings + Adresse Web Services (AWS Suiten)\",\n \"\u201DIndeholder data + fra Styrelsen for Dataforsyning og Effektivisering\\\"; Stedsnavne, Vejmidte\",\n + \ \"\u201DIndeholder oplysninger fra Styrelsen for Dataforsyning + og Effektivisering Adresse Web Services (AWS).\u201D\",\n \"\u201DIndeholder + data fra Styrelsen for Dataforsyning og Effektivisering\\\"; Stedsnavne\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"DOM\",\n \"label\": \"Dominican Republic\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"DZA\",\n \"label\": \"Algeria\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + made available by GeoNames licensed under CC-BY 4.0. For more information + visit: http://www.geonames.org/.\"\n ]\n },\n {\n \"country\": + {\n \"ISO3\": \"ECU\",\n \"label\": \"Ecuador\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"EGY\",\n \"label\": + \"Egypt\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ERI\",\n \"label\": + \"Eritrea\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ESP\",\n \"label\": + \"Spain\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"This product + contains public transport stops and sports centers data made available by + Ayuntamiento de Lorca under Legal Terms available here: http://datos.lorca.es/avisolegal/\",\n + \ \"This product contains several data made available by Ayuntamiento + de Madrid under Legal Terms available here:\",\n \"http://datos.madrid.es/portal/site/egob/menuitem.400a817358ce98c34e937436a8a409a0/?vgnextoid=b4c412b9ace9f310VgnVCM100000171f5a0aRCRD&vgnextchannel=b4c412b9ace9f310VgnVCM100000171f5a0aRCRD&vgnextfmt=default\",\n + \ \"This product contains public transport stops data \u201CPowered + by EMT de Madrid\u201D under license terms available here:\",\n \"https://www.crtm.es/licencia-de-uso\",\n + \ \"This product contains public transport stops data made available + by Ayuntamiento de Zaragoza under Legal Terms available here:\",\n \"https://www.zaragoza.es/ciudad/servicios/avisolegal.htm#condiciones\",\n + \ \"This product contains public transport stops \u201CPowered by + CRTM\u201D under license terms available here:\",\n \"http://www.crtm.es/licencia-de-uso\",\n + \ \"Contains data available on /nap.dgt.es/: * Direcci\xF3n General + de Tr\xE1fico Madrid * Trafiko Zuzendaritza/Direcci\xF3n de Tr\xE1fico San + Sebastian * Servei Catal\xE0 de Tr\xE0nsit Barcelona\",\n \"Contains + data licensed under CC-BY 3.0. For more information visit: * Ajuntament de + El Prat de Llobregat https://seu-e.cat/web/elpratdellobregat/avis-legal * + Xunta de Galicia https://abertos.xunta.gal/condicions-de-uso * Ayuntamiento + de Getxo https://www.getxo.eus/es/gobierno-abierto/opndata/ * Ayuntamiento + de C\xE1ceres https://opendata.caceres.es/terminos * Diputaci\xF3n de Pontevedra + https://ide.depo.gal/web/idepo/aviso-legal * Junta de Castilla y Le\xF3n + https://datosabiertos.jcyl.es/web/es/datos-abiertos-castilla-leon.html * + Ajuntament de Girona https://www.girona.cat/opendata/dataset * Ajuntament + de Sabadell http://web.sabadell.cat/ * Ayuntamiento de Santa Cruz de Tenerife + http://www.santacruzdetenerife.es/opendata/about * Gobierno Vasco https://opendata.euskadi.eus/general/-/informacion-legal-opendata/ + \ * Ayuntamiento de Alcobendas https://datos.alcobendas.org/pages/aviso-legal + \ * Ajuntament de Terrassa https://opendata.terrassa.cat/es/\",\n \"Contains + data licensed under CC-BY 4.0. For more information visit: * Ayuntamiento + de Valencia http://www.valencia.es/ayuntamiento/DatosAbiertos.nsf/ * Ajuntament + de Sant Feu de Llobregat http://opendata.santfeliu.cat/ca/normes-dus/#llicencia + \ * Cartociudad http://www.cartociudad.es/portal/ * Nomecalles http://www.madrid.org/nomecalles/Inicio.icm + \ * Ayuntamiento de Barcelona https://opendata-ajuntament.barcelona.cat/es/ + \ * Gobierno de Navarra https://gobiernoabierto.navarra.es/es/open-data * + Ayuntamiento de Vitoria-Gasteiz https://www.vitoria-gasteiz.org/j34-01w/catalogo/portada + \ * Diputaci\xF3n Foral de Guip\xFAzcoa https://b5m.gipuzkoa.eus/web5000/es/cartoteca/conjuntos-datos/ + \ * Diputaci\xF3n Foral de Vizcaya https://www.opendatabizkaia.eus/es/catalogo + \ * Instituto Geogr\xE1fico Nacional https://www.ign.es/web/ign/portal/politica-datos + \ * Consell Insular de Menorca https://menorca.tib.org/es/open-data * Gobierno + de Arag\xF3n https://opendata.aragon.es/\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"EST\",\n \"label\": + \"Estonia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains map + data made available by Estonian Land Board, 2019:\",\n \"https://geoportaal.maaamet.ee/index.php?lang_id=2&page_id=618&plugin_act=litsents\",\n + \ \"This product contains information from TarkTee with license + listed here: https://tarktee.mnt.ee/#/en/terms\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ETH\",\n \"label\": + \"Ethiopia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"FIN\",\n \"label\": + \"Finland\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"This product + contains information from Finnish Transport agency, with license listed here:\",\n + \ \"https://www.liikennevirasto.fi/web/en/open-data/terms-of-use#.W9GUg7puIjY\",\n + \ \"This product contains information from Finnish Population Registry, + with license listed here:\",\n \"https://www.avoindata.fi/data/en_GB/dataset/rakennusten-osoitetiedot-koko-suomi\",\n + \ \"Suomalaisten rakennusten osoitteet, postinumerot ja WGS84-koordinaatit + by V\xE4est\xF6rekisterikeskus is licensed under a Creative Commons Attribution + 4.0 International License.\",\n \"Contains data licensed under + CC-BY 4.0. For more information visit Fintraffic / digitraffic.fi https://www.digitraffic.fi\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"FJI\",\n \"label\": \"Fiji\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"FLK\",\n \"label\": \"Falkland Islands\"\n + \ },\n \"copyrights\": [\n \"You agree to include + as soon as practically possible, but no later than the first new release of + the Authorized Application following Your receipt of any 3D Landmarks, any + copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"FRA\",\n \"label\": + \"France\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"(navigation + devices only) Michelin data \xA9 Michelin 2019 The following copyright applies + to the Advanced Navigable MAP, Address Points, 2D City Map and Buildings: + \ Source: Direction g\xE9n\xE9rale des Finances Publiques \u2013 Cadastre; + Updated 2019\",\n \"Contains data licensed under Open License Version + 1.0: * Ville de Toulouse * Rennes M\xE9tropole * Grand Lyon dated from + 1/3/2015 * Mulhouse Alsace Agglom\xE9ration dated from 13/2/2015 * Grand + Poitiers * Ville de Chassieu dated from October 2017 * Ville de Chennevi\xE8res-sur-Marne + \ * D\xE9partement des Hauts-de-Seine * M\xE9tropole Europ\xE9enne de Lille + dated from 21/2/2017 * Colmar Agglom\xE9ration dated from 23/09/2016 * Minist\xE8re + des Solidarit\xE9s et de la Sant\xE9 dated from 17/3/2017 * Sodetrel dated + from December 2017 * E.Leclerc dated from December 2017 * Parking EFFIA + Stationnement dated from December 2017 * Centre national du cin\xE9ma et + de l'image anim\xE9e dated from 23/9/2016 * Communaut\xE9 d'Agglom\xE9ration + de Rambouillet Territoires dated from January 2017 * Lannion-Tr\xE9gor Communaut\xE9 + \ * G\xE9oGrandEst * Nissan dated from December 2017 * Seames dated from + December 2017 * Syndicat Intercommunal des Energies du d\xE9partement de + la Loire dated from February 2017 * SOR\xC9GIES dated from June 2017 * Syndicat + D\xE9partemental d\u2019Energie et d\u2019Equipement de la Vend\xE9e dated + from December 2017 * Minist\xE8re de l\u2019Int\xE9rieur dated from July + 2018 * Minist\xE8re des Sports * Office national d'information sur les enseignements + et les professions dated from December 2017 * Administration du Premier ministre + dated from December 2017 * D\xE9partement de Sa\xF4ne-et Loire * Ville d\u2019Istres + dated from December 2017 * Tesla dated from February 2017 * Syndicat D\xE9partemental + d'Energies de la Manche dated from December 2017 * Syndicat D\xE9partemental + d'Energie de Loire-Atlantique dated from December 2017 * M\xE9tropole d'Aix-Marseille-Provence + \ * Ville de Montpellier\",\n \"Contains data licensed under Open + License Version 2.0: * Minist\xE8re de la Transition \xC9cologique * Ville + d'Issy-les-Moulineaux * Ville de Bayonne dated from 23/01/2018 * P\xF4le + Metropolitain du Pays de Brest dated from 1/3/2016 * Bordeaux M\xE9tropole + \ * Communaut\xE9 d'agglom\xE9ration Arles Crau Camargue Montagnette dated + from 29/4/2016 * Rennes M\xE9tropole dated from 30/11/2016 * Angers Loire + M\xE9tropole dated from 21/9/2016 * D\xE9partement de la Moselle dated from + December 2017 * Ville de La Rochelle dated from 23/05/2012 * Grand Paris + Seine Ouest dated from 01/02/2016 * Morbihan Energies dated from December + 2017 * R\xE9gion Bretagne dated from December 2017 * R\xE9gie Culturelle + de la R\xE9gion Sud Provence-Alpes-C\xF4te d'Azur dated from December 2017 + \ * Education Nationale * M\xE9tropole du Grand Nancy * Toulouse M\xE9tropole + \ * Nantes M\xE9tropole * M\xE9tropole Europ\xE9enne de Lille * Orl\xE9ans + M\xE9tropole * Grand Poitiers * D\xE9partement des Hautes-de-Seine * D\xE9partement + de la Mayenne * Mulhouse Alsace Agglom\xE9ration\",\n \"Contains + data licensed under la Licence de r\xE9utilisation des donn\xE9es num\xE9ris\xE9es + d\u2019informations en temps r\xE9el sur la circulation: * Minist\xE8re de + la Transition \xC9cologique * Direction Interd\xE9partementale des Routes + d\u2019\xCEle-de-France\",\n \"Contains data licensed under le + Code des relation sentre le public et l\u2019administration: * Communaut\xE9 + d'Agglom\xE9ration Maubeuge - Val de Sambre dated from September 2017 * Syndicat + des \xE9nergies de la Haute-Savoie dated from November 2017 * Syndicat d\u2019\xE9nergie + de l\u2019Oise dated from December 2017 * Syndicat d'\xE9nergie de l'Orne + dated from March 2017 * Syndicat D\xE9partemental d'Energie de la Haute-Garonne + dated from December 2017 * Syndicat D\xE9partemental d'Energie des Hautes-Pyr\xE9n\xE9es + dated from December 2017 * Syndicat D\xE9partemental d'Energies du Calvados + dated from December 2017 * Syndicat D\xE9partemental d'Energie du Cher dated + from December 2017 * Syndicat D\xE9partemental d'Energies de l'Indre dated + from December 2017 * Syndicat D\xE9partemental d'Equipement et d'Energie + du Finist\xE8re dated from December 2017 * Syndicat D\xE9partemental des + Energies de Seine-et-Marne dated from March 2017 * Syndicat intercommunal + d'\xE9nergie d'Indre-et-Loire dated from December 2017 * Union des Secteurs + d'Energie du D\xE9partement de l'Aisne dated from December 2017 * Ville de + Beauvais dated from March 2017\",\n \"Contains data from D\xE9partement + de Hautes-Alpes. For more information visit: http://inforoute.hautes-alpes.fr/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"FRO\",\n \"label\": \"Faroe Islands\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"FSM\",\n \"label\": \"Federated States + of Micronesia\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GAB\",\n \"label\": + \"Gabon\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GBR\",\n \"label\": + \"United Kingdom\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains Ordnance + Survey data \xA9 Crown copyright and database right 2018. Licensed under the + Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"Contains Ordnance Survey data \xA9 Crown copyright and database + right 2018.\",\n \"Contains Royal Mail data \xA9 Royal Mail copyright + and database right 2018.\",\n \"Contains National Statistics data + \xA9 Crown copyright and database right 2018.\",\n \"Licensed under + the Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information (public transport + stops data) licensed under the Open Government Licence v2.0. This is specified + here: http://data.gov.uk/dataset/naptan\",\n \"The license can + be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n + \ \"This product contains public sector information (publicly accessible + charge points) licensed under the Open Government Licence v2.0. This is specified + here: http://data.gov.uk/dataset/national-charge-point-registry\",\n \"The + license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n + \ \"This product contains Sports venues locations data made available + by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE + AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area + . The license can be found at: https://spogo.co.uk/active-places-license\",\n + \ \"This product contains data made available by the Northern Ireland + Department of Education and licensed under the Open Government Licence v3.0. + Data download page: http://apps.deni.gov.uk/appinstitutes The license can + be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains data made available by Historic England + 2015. Contains Ordnance Survey data \xA9 Crown copyright and database right + 2015 The Historic England GIS Data contained in this material was obtained + on 12/08/2015. The most publicly available up to date Historic England GIS + Data can be obtained from: http://www.HistoricEngland.org.uk\",\n \"Data + download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx\",\n + \ \"The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html\",\n + \ \"This product contains designated Historic Asset GIS Data from + the Welsh Historic Environment Service, licenced under the Open Government + Licence. Data download page: http://lle.wales.gov.uk. The license can be found + at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information licensed under + the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information licensed under + the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains data made available by Visit Wales and + licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"Based upon the Ordnance Survey or Northern Ireland's data of + 2019 with the permission of the Controller of Her Majesty's Stationary Office, + \xA9 Crown copyright and database rights.\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GEO\",\n \"label\": + \"Georgia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"This product + contains data from the National Agency of Public Registry under the Ministry + of Justice of Georgia.\",\n \"For more information visit: http://www.napr.gov.ge/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"GGY\",\n \"label\": \"Guernsey\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\",\n \"Contains Ordnance Survey data \xA9 Crown copyright + and database right 2018. Licensed under the Open Government Licence. The license + can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"Contains Ordnance Survey data \xA9 Crown copyright and database + right 2018.\",\n \"Contains Royal Mail data \xA9 Royal Mail copyright + and database right 2018.\",\n \"Contains National Statistics data + \xA9 Crown copyright and database right 2018.\",\n \"Licensed under + the Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information (public transport + stops data) licensed under the Open Government Licence v2.0. This is specified + here: http://data.gov.uk/dataset/naptan\",\n \"The license can + be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n + \ \"This product contains public sector information (publicly accessible + charge points) licensed under the Open Government Licence v2.0. This is specified + here: http://data.gov.uk/dataset/national-charge-point-registry\",\n \"The + license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n + \ \"This product contains Sports venues locations data made available + by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE + AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area + . The license can be found at: https://spogo.co.uk/active-places-license\",\n + \ \"This product contains data made available by the Northern Ireland + Department of Education and licensed under the Open Government Licence v3.0. + Data download page: http://apps.deni.gov.uk/appinstitutes The license can + be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains data made available by Historic England + 2015. Contains Ordnance Survey data \xA9 Crown copyright and database right + 2015 The Historic England GIS Data contained in this material was obtained + on 12/08/2015. The most publicly available up to date Historic England GIS + Data can be obtained from: http://www.HistoricEngland.org.uk\",\n \"Data + download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx\",\n + \ \"The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html\",\n + \ \"This product contains designated Historic Asset GIS Data from + the Welsh Historic Environment Service, licenced under the Open Government + Licence. Data download page: http://lle.wales.gov.uk. The license can be found + at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information licensed under + the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information licensed under + the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains data made available by Visit Wales and + licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"GHA\",\n \"label\": \"Ghana\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"GIB\",\n \"label\": \"Gibraltar\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GIN\",\n \"label\": + \"Guinea\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GLP\",\n \"label\": + \"Guadeloupe\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GMB\",\n \"label\": + \"The Gambia\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GNB\",\n \"label\": + \"Guinea-Bissau\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GNQ\",\n \"label\": + \"Equatorial Guinea\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GRC\",\n \"label\": + \"Greece\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GRD\",\n \"label\": + \"Grenada\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GRL\",\n \"label\": + \"Greenland\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GTM\",\n \"label\": + \"Guatemala\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GUF\",\n \"label\": + \"French Guiana\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"GUM\",\n \"label\": + \"Guam\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"The following + copyright notice applies to the use of Post- FSA layer and 6-digit layer: + \ \xA9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary + and the subject of copyright protection and other intellectual property rights + owned or licensed to TomTom. The product includes information copied with + permission from Canadian authorities, including \xA9 Canada Post Corporation, + All rights reserved. The use of this material is subject to the terms of a + License Agreement. You will be held liable for any unauthorized copying or + disclosure of this material. The following copyright notice applies to the + use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. All rights reserved. + Portions of the POI database contained in Points of Interest North America + have been provided by Neustar Localeze The following copyright notice applies + to the use of Telecommunications: \xA9 2021 Pitney Bowes Software Inc. All + rights reserved. This product contains information and/or data of iconectiv, + licensed to be included herein. Copyright \xA9 2021 iconectiv. All rights + reserved. The following copyright notice applies to the use of Logistics: + \ \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - 2021 ProMiles + Software Development Corporation. All rights reserved. This material is proprietary + and the subject of copyright protection and other intellectual property rights + owned or licensed to TomTom.\",\n \"\xA9 United States Postal Service + 2021\",\n \"You shall not use the Municipal Boundary layer of the + Administrative Areas product to create or derive applications which are used + by third parties for the purpose of tariff, tax jurisdiction, or tax rate + determination for a particular address or range of addresses.\",\n \"This + product is built on basis on the following elevation data: SRTM, GTOPO, NED + data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview\",\n + \ \"This product is built on basis on the following elevation data: + 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department + of Commerce, National Oceanic and Atmospheric Administration, National Geophysical + Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\"\n ]\n + \ },\n {\n \"country\": {\n \"ISO3\": \"GUY\",\n + \ \"label\": \"Guyana\"\n },\n \"copyrights\": [\n + \ \"You agree to include as soon as practically possible, but no + later than the first new release of the Authorized Application following Your + receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"HKG\",\n \"label\": \"Hong Kong\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + licensed under Open Data Government v1.0.\",\n \"Contains datasets + made available by DATA.GOV.HK. under the following open data license: https://data.gov.hk/en/terms-and-conditions\",\n + \ \"Contains datasets made available by HONG KONG GEODATA STORE + under the following open data license: https://geodata.gov.hk/gs/?p=terms_and_conditions\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"HMD\",\n \"label\": \"Heard Island and McDonald Islands\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"HND\",\n \"label\": + \"Honduras\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"HRV\",\n \"label\": + \"Croatia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"HTI\",\n \"label\": + \"Haiti\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"HUN\",\n \"label\": + \"Hungary\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + under National Access Point Hungary.\"\n ]\n },\n {\n \"country\": + {\n \"ISO3\": \"IDN\",\n \"label\": \"Indonesia\"\n + \ },\n \"copyrights\": [\n \"You agree to include + as soon as practically possible, but no later than the first new release of + the Authorized Application following Your receipt of any 3D Landmarks, any + copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 Base data + Bakosurtanal\"\n ]\n },\n {\n \"country\": {\n \"ISO3\": + \"IMN\",\n \"label\": \"Isle of Man\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\",\n \"Contains Ordnance Survey data \xA9 Crown copyright + and database right 2018. Licensed under the Open Government Licence. The license + can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"Contains Ordnance Survey data \xA9 Crown copyright and database + right 2018.\",\n \"Contains Royal Mail data \xA9 Royal Mail copyright + and database right 2018.\",\n \"Contains National Statistics data + \xA9 Crown copyright and database right 2018.\",\n \"Licensed under + the Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information (public transport + stops data) licensed under the Open Government Licence v2.0. This is specified + here: http://data.gov.uk/dataset/naptan\",\n \"The license can + be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n + \ \"This product contains public sector information (publicly accessible + charge points) licensed under the Open Government Licence v2.0. This is specified + here: http://data.gov.uk/dataset/national-charge-point-registry\",\n \"The + license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n + \ \"This product contains Sports venues locations data made available + by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE + AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area + . The license can be found at: https://spogo.co.uk/active-places-license\",\n + \ \"This product contains data made available by the Northern Ireland + Department of Education and licensed under the Open Government Licence v3.0. + Data download page: http://apps.deni.gov.uk/appinstitutes The license can + be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains data made available by Historic England + 2015. Contains Ordnance Survey data \xA9 Crown copyright and database right + 2015 The Historic England GIS Data contained in this material was obtained + on 12/08/2015. The most publicly available up to date Historic England GIS + Data can be obtained from: http://www.HistoricEngland.org.uk\",\n \"Data + download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx\",\n + \ \"The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html\",\n + \ \"This product contains designated Historic Asset GIS Data from + the Welsh Historic Environment Service, licenced under the Open Government + Licence. Data download page: http://lle.wales.gov.uk. The license can be found + at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information licensed under + the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information licensed under + the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains data made available by Visit Wales and + licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"IND\",\n \"label\": \"India\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\",\n \"You agree that any Licensed Product which + contains data of India may be subject to additional terms and conditions which + shall be provided to You when available to TomTom. India data shall not be + altered or changed during Your product creation / publication process. India + data may not be exported from India.\"\n ]\n },\n {\n \"country\": + {\n \"ISO3\": \"IND.IND\",\n \"label\": \"\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"You agree that + any Licensed Product which contains data of India may be subject to additional + terms and conditions which shall be provided to You when available to TomTom. + India data shall not be altered or changed during Your product creation / + publication process. India data may not be exported from India.\"\n ]\n + \ },\n {\n \"country\": {\n \"ISO3\": \"IRL\",\n + \ \"label\": \"Ireland\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\",\n \"\xA9 2019 GeoDirectory\"\n ]\n },\n + \ {\n \"country\": {\n \"ISO3\": \"IRN\",\n \"label\": + \"Iran\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"IRQ\",\n \"label\": + \"Iraq\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ISL\",\n \"label\": + \"Iceland\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Based on data + from the \xDEj\xF3\xF0skr\xE1 \xCDslands.\",\n \"Contains data + licensed under UK Open Government License.\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ISR\",\n \"label\": + \"Israel\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ISR.ISR\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ITA\",\n \"label\": + \"Italy\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + licensed under IODL 2.0. For more information visit: * Regione Lombardia. + http://www.geoportale.regione.lombardia.it/en/home * Comune di Torino. http://aperto.comune.torino.it + \ * Regione Veneto. For more information visit https://dati.veneto.it/ * + Regione Autonoma Friuli Venezia Giulia. http://www.regione.fvg.it/rafvg/cms/RAFVG/ambiente-territorio/conoscere-ambiente-territorio/ + \ * Regione Basilicata. http://dati.regione.basilicata.it/catalog/ * Regione + Calabria. http://geoportale.regione.calabria.it/opendata * Comune di Reggio + Calabria. http://dati.reggiocal.it/ * Ministero dell\u2019Istruzione. http://www.dati.gov.it + \ * Regione Puglia. http://www.dataset.puglia.it/ * Comune di Verona. http://www.comune.verona.it + \ * Comune di Vicenza. http://www.comune.vicenza.it\",\n \"Contains + data licensed under CC-BY 2.0 For more information visit: * Comune di Bari. + http://opendata.comune.bari.it/dataset/sistema-informativo-territoriale-civilario-unico-comunaleContains + data licensed under CC-BY 2.5. For more information visit * Comune di Milano. + https://geoportale.comune.milano.it/sit/open-data/ and http://geodata-sitmilano.opendata.arcgis.com/ + \ * Regione Toscana according to the legislation available at http://www.regione.toscana.it/documents/10180/492172/Decreto-2014_02_25n663.pdf/162db905-95fd-4b5e-bc41-88a629b5a3e5 + and Regolamento http://raccoltanormativa.consiglio.regione.toscana.it/articolo?urndoc=urn:nir:regione.toscana:regolamento.giunta:2007-02-09;6/R&pr=idx,0;artic,1;articparziale,0\",\n + \ \"http://dati.toscana.it/dataset/grafo-civici * Regione Emilia + Romagna. http://geoportale.regione.emilia-romagna.it/it/catalogo/dati-cartografici/cartografia-di-base + and http://geoportale.regione.emilia-romagna.it/it/catalogo/dati-cartografici/cartografia-di-base/database-topografico-regionale/gestione-viabilita-indirizzi/toponimi-e-numeri-civici + \ * Regione Piemonte. http://www.geoportale.piemonte.it/geocatalogorp/?sca[]=r_piemon:da9b12ba-866a-4f0f-8704-5b7b753e4f15&sezione=dwl + \ * Agenzia Europea dell'Ambiente http://data.europa.eu/euodp/it/data/dataset/data_urban-atlas\",\n + \ \"Contains data licensed under CC-BY 3.0. For more information + visit: * Comune di Milano. https://www.comune.milano.it/wps/portal/ist/it/vivicitta/verde/parchi + \ * Ministero dell\u2019Istruzione, dell\u2019Universit\xE0 e della Ricerca + MIURhttp://www.tper.it/azienda/tper-open-data * Agenzia per la Mobilit\xE0 + Roma http://www.agenziamobilita.roma.it/servizi/open-data/dataset.html * + Comune di Firenze http://opendata.comune.fi.it/mobilita_sicurezza/dataset_0196.html + and http://opendata.comune.fi.it/statistica_territorio/dataset_0040.html and + http://opendata.comune.fi.it/mobilita_sicurezza/dataset_0139.html * Regione + Umbria http://dati.umbria.it/ and http://www.umbriageo.regione.umbria.it/pagine/servizi-wms-attivi + \ * Comune di Cesena http://www.datiopen.it/it/opendata/Comune_di_Cesena_Verde + \ * Comune di Livorno http://www.datiopen.it/it/opendata/Comune_di_Livorno_Area_verde + \ * Comune di Bologna http://dati.comune.bologna.it/node/201 and http://dati.comune.bologna.it/node/217 + \ * Istituto Nazionale di Statistica http://www.istat.it/it/archivio/678 and + http://datiopen.istat.it/\",\n \"Contains data licensed under CC-BY + 4.0. For more information visit: * Regione Veneto https://dati.veneto.it/ + \ * Comune di Fano https://www.comune.fano.pu.it/index.php?id=2020 * Regione + Toscana http://dati.toscana.it/ * Comune di Genova http://dati.comune.genova.it + \ * Comune di Roma http://dati.comune.roma.it * Regione Piemonte http://www.geoportale.piemonte.it + \ * Reggio Emilia http://www.dati.gov.it * Regione Lazio http://www.dati.lazio.it + \ * Regione Autonoma Sardegna http://dati.regione.sardegna.it * Provincia + di Biella http://cartografia.provincia.biella.it * Regione Liguria https://www.regione.liguria.it + \ * Comune di Milano http://dati.comune.milano.it\"\n ]\n },\n + \ {\n \"country\": {\n \"ISO3\": \"JAM\",\n \"label\": + \"Jamaica\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"JEY\",\n \"label\": + \"Jersey\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains Ordnance + Survey data \xA9 Crown copyright and database right 2018. Licensed under the + Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"Contains Ordnance Survey data \xA9 Crown copyright and database + right 2018.\",\n \"Contains Royal Mail data \xA9 Royal Mail copyright + and database right 2018.\",\n \"Contains National Statistics data + \xA9 Crown copyright and database right 2018.\",\n \"Licensed under + the Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information (public transport + stops data) licensed under the Open Government Licence v2.0. This is specified + here: http://data.gov.uk/dataset/naptan\",\n \"The license can + be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n + \ \"This product contains public sector information (publicly accessible + charge points) licensed under the Open Government Licence v2.0. This is specified + here: http://data.gov.uk/dataset/national-charge-point-registry\",\n \"The + license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n + \ \"This product contains Sports venues locations data made available + by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE + AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area + . The license can be found at: https://spogo.co.uk/active-places-license\",\n + \ \"This product contains data made available by the Northern Ireland + Department of Education and licensed under the Open Government Licence v3.0. + Data download page: http://apps.deni.gov.uk/appinstitutes The license can + be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains data made available by Historic England + 2015. Contains Ordnance Survey data \xA9 Crown copyright and database right + 2015 The Historic England GIS Data contained in this material was obtained + on 12/08/2015. The most publicly available up to date Historic England GIS + Data can be obtained from: http://www.HistoricEngland.org.uk\",\n \"Data + download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx\",\n + \ \"The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html\",\n + \ \"This product contains designated Historic Asset GIS Data from + the Welsh Historic Environment Service, licenced under the Open Government + Licence. Data download page: http://lle.wales.gov.uk. The license can be found + at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information licensed under + the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information licensed under + the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains data made available by Visit Wales and + licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"JOR\",\n \"label\": \"Jordan\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\",\n \"\xA9 Royal Jordanian Geographic center\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"JPN\",\n \"label\": \"\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\",\n \"\xA9 Mapple, Inc. \xA9 Mapple\",\n \"Contains + data licensed under: http://its.zenrin.co.jp/legal/jpn/al_mi/index.html\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"KAZ\",\n \"label\": \"Kazakhstan\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"KEN\",\n \"label\": \"Kenya\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"KGZ\",\n \"label\": + \"Kyrgyzstan\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"KHM\",\n \"label\": + \"Cambodia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"KIR\",\n \"label\": + \"Kiribati\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"This product + contains data made available by PacGeo. For more information visit: http://www.pacgeo.org/about/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"KNA\",\n \"label\": \"Saint Kitts and Nevis\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"KOR\",\n \"label\": + \"Republic of Korea\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Based upon electronic + data \xA9 Mappers Co., Ltd. All rights reserved. Korean Association Survey + and Mapping Review Completed No. 2013-016 (2013-04-05)./No. 2008-133 (2008.05.27)/No. + 2011-056 (2011.08.29)/No. 2012-082 (2012.11.16) Spatial Information Quality + Management Service Review Completed No. 2021-004 (2021.03.31)\",\n \"You + agree that any Licensed Product which contains data of Korea may be subject + to additional terms and conditions which shall be provided to You when available + to TomTom. Korea data may not be exported from Korea. Data cannot be shipped + to End Users in an open format (such as ESRI shapefile).\"\n ]\n },\n + \ {\n \"country\": {\n \"ISO3\": \"KWT\",\n \"label\": + \"Kuwait\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"LAO\",\n \"label\": + \"Laos\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"LBN\",\n \"label\": + \"Lebanon\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"LBR\",\n \"label\": + \"Liberia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"LBY\",\n \"label\": + \"Libya\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"LCA\",\n \"label\": + \"Saint Lucia\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"LIE\",\n \"label\": + \"Liechtenstein\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"LKA\",\n \"label\": + \"Sri Lanka\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"LSO\",\n \"label\": + \"Lesotho\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"LTU\",\n \"label\": + \"Lithuania\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + licensed under: http://eismoinfo.lt/#!/news/8592\"\n ]\n },\n + \ {\n \"country\": {\n \"ISO3\": \"LUX\",\n \"label\": + \"Luxembourg\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"LVA\",\n \"label\": + \"Latvia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MAC\",\n \"label\": + \"Macao\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Macao Special + Administrative Region Government \u2013 Cartography and Cadastre Bureau\",\n + \ \"This product contains Road Geometry data made available by Macao + Special Administrative Region Government \u2013 Cartography and Cadastre Bureau: + http://www.dscc.gov.mo/ENG/copyright.html.\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MAF\",\n \"label\": + \"Saint Martin\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MAR\",\n \"label\": + \"Morocco\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MCO\",\n \"label\": + \"Monaco\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MDA\",\n \"label\": + \"Moldova\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"This product + contains data from the Republic of Moldova. For more information visit: http://date.gov.md.\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"MDG\",\n \"label\": \"Madagascar\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"MDV\",\n \"label\": \"Maldives\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MEX\",\n \"label\": + \"Mexico\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MHL\",\n \"label\": + \"Marshall Islands\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MKD\",\n \"label\": + \"North Macedonia\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MLI\",\n \"label\": + \"Mali\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MLT\",\n \"label\": + \"Malta\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 Mapping + Unit, Malta Planning Authority\"\n ]\n },\n {\n \"country\": + {\n \"ISO3\": \"MMR\",\n \"label\": \"Myanmar\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MNE\",\n \"label\": + \"Montenegro\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MNG\",\n \"label\": + \"Mongolia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MNP\",\n \"label\": + \"Northern Mariana Islands\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"The following + copyright notice applies to the use of Post- FSA layer and 6-digit layer: + \ \xA9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary + and the subject of copyright protection and other intellectual property rights + owned or licensed to TomTom. The product includes information copied with + permission from Canadian authorities, including \xA9 Canada Post Corporation, + All rights reserved. The use of this material is subject to the terms of a + License Agreement. You will be held liable for any unauthorized copying or + disclosure of this material. The following copyright notice applies to the + use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. All rights reserved. + Portions of the POI database contained in Points of Interest North America + have been provided by Neustar Localeze The following copyright notice applies + to the use of Telecommunications: \xA9 2021 Pitney Bowes Software Inc. All + rights reserved. This product contains information and/or data of iconectiv, + licensed to be included herein. Copyright \xA9 2021 iconectiv. All rights + reserved. The following copyright notice applies to the use of Logistics: + \ \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - 2021 ProMiles + Software Development Corporation. All rights reserved. This material is proprietary + and the subject of copyright protection and other intellectual property rights + owned or licensed to TomTom.\",\n \"\xA9 United States Postal Service + 2021\",\n \"You shall not use the Municipal Boundary layer of the + Administrative Areas product to create or derive applications which are used + by third parties for the purpose of tariff, tax jurisdiction, or tax rate + determination for a particular address or range of addresses.\",\n \"This + product is built on basis on the following elevation data: SRTM, GTOPO, NED + data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview\",\n + \ \"This product is built on basis on the following elevation data: + 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department + of Commerce, National Oceanic and Atmospheric Administration, National Geophysical + Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\"\n ]\n + \ },\n {\n \"country\": {\n \"ISO3\": \"MOZ\",\n + \ \"label\": \"Mozambique\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"MRT\",\n \"label\": \"Mauritania\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MSR\",\n \"label\": + \"Montserrat\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MTQ\",\n \"label\": + \"Martinique\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MUS\",\n \"label\": + \"Mauritius\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MWI\",\n \"label\": + \"Malawi\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MYS\",\n \"label\": + \"Malaysia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"The product + contains data made available by Government Open Data Portal. For more information + visit: http://www.data.gov.my/page/termsofuse.\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MYT\",\n \"label\": + \"Mayotte\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"NAM\",\n \"label\": + \"Namibia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"NCL\",\n \"label\": + \"New Caledonia\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"NER\",\n \"label\": + \"Niger\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"NFK\",\n \"label\": + \"Norfolk Island\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"NGA\",\n \"label\": + \"Nigeria\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"NIC\",\n \"label\": + \"Nicaragua\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"NIU\",\n \"label\": + \"Niue\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"NLD\",\n \"label\": + \"Netherlands\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + licensed under CC-BY 4.0. For more information visit: * Kadaster Top10NL + http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/29d5310f-dd0d-45ba-abad-b4ffc6b8785f?tab=general + \ * Kadaster BGT http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2cb4769c-b56e-48fa-8685-c48f61b9a319?tab=general + \ * CBS Bestand Bodemgebruik http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2d3dd6d2-2d2b-4b5f-9e30-86e19ed77a56?tab=general\",\n + \ \"Contains data licensed under CC-BY 2.0. For more information + visit: * Municipality of Amsterdam Datasets Parkeergarages https://data.amsterdam.nl/index.html#?dte=https:%2F%2Fapi.datapunt.amsterdam.nl%2Fcatalogus%2Fapi%2F3%2Faction%2Fpackage_show%3Fid%3Df06f5a77-04f6-432f-9fd9-ce9d740631aa&dtfs=T&mpb=topografie&mpz=9&mpv=52.3719:4.9012\",\n + \ \"Contains data licensed under CC-BY 3.0. For more information + visit: * Municipality of Amsterdam Multiple cat POI's https://data.amsterdam.nl/index.html#?dsd=dcatd&dsp=1&dsq=open%2520data&dsv=CATALOG&mpb=topografie&mpz=11&mpv=52.3731081:4.8932945\",\n + \ \"This product contains public transport stops data made available + under 9292 Open Data framework as documented on March 2013. This is specified + in their terms available here: http://9292opendata.org/sla\",\n \"This + product contains traffic incident information made available by NDW under + open source data policy:\_https://www.ndw.nu/pagina/nl/103/datalevering/120/open_data/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"NOR\",\n \"label\": \"Norway\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\",\n \"Contains data under CC BY3.0 as distributed + by Nobil https://creativecommons.org/licenses/by/3.0/\",\n \"Contains + data made available by Statens Kartverk licensed under CC-BY 4.0. For more + information visit https://creativecommons.org/licenses/by/4.0/\",\n \"Contains + data made available by Statens Vegvesen licensed under the Norwegian licence + for Open Government data (NLOD). For more information visit https://data.norge.no/nlod/en/2.0 + .\"\n ]\n },\n {\n \"country\": {\n \"ISO3\": + \"NPL\",\n \"label\": \"Nepal\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"NRU\",\n \"label\": \"Nauru\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"NZL\",\n \"label\": + \"New Zealand\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + licensed under CC-BY 3.0 NZ. For more information visit: * New Zealand Transport + Agency https://www.nzta.govt.nz/resources/grouped-crash-sites\",\n \"Contains + data licensed under CC-BY 4.0. For more information visit: * Land Information + New Zealand https://data.linz.govt.nz * Statistics New Zealand https://datafinder.stats.govt.nz + \ * Christchurch City Council https://opendata.ccc.govt.nz/public-portal/ + \ * Wellington City Council https://data-wcc.opendata.arcgis.com/ * Auckland + Transport https://data-wcc.opendata.arcgis.com * Ministry of Education https://www.educationcounts.govt.nz/ + \ * Ministry of Health https://www.health.govt.nz/ * Ministry of Justice + https://www.justice.govt.nz * Ministry for Primary Industries http://mpiportal.force.com/publicregister + \ * Ministry of Social Development https://www.familyservices.govt.nz/ * + Department of Conservation Te Papa Atawhai https://doc-deptconservation.opendata.arcgis.com/ + \ * New Zealand Transport Agency https://www.nzta.govt.nz\"\n ]\n + \ },\n {\n \"country\": {\n \"ISO3\": \"OAS\",\n + \ \"label\": \"\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OAT\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OBE\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OCA\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OCP\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ODE\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ODK\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OES\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OFI\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OFR\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OGB\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OGR\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OIE\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OIN\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OIT\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OMN\",\n \"label\": + \"Oman\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OMX\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ONL\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ONO\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OPA\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OPL\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OPT\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ORU\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OSE\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OTR\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OUA\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OUP\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"PAK\",\n \"label\": + \"Pakistan\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"You agree that + any Licensed Product which contains data of India may be subject to additional + terms and conditions which shall be provided to You when available to TomTom. + India data shall not be altered or changed during Your product creation / + publication process. India data may not be exported from India.\"\n ]\n + \ },\n {\n \"country\": {\n \"ISO3\": \"PAN\",\n + \ \"label\": \"Panama\"\n },\n \"copyrights\": [\n + \ \"You agree to include as soon as practically possible, but no + later than the first new release of the Authorized Application following Your + receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"PCN\",\n \"label\": \"Pitcairn Islands\"\n + \ },\n \"copyrights\": [\n \"You agree to include + as soon as practically possible, but no later than the first new release of + the Authorized Application following Your receipt of any 3D Landmarks, any + copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"PER\",\n \"label\": + \"Peru\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"PHL\",\n \"label\": + \"Philippines\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"PLW\",\n \"label\": + \"Palau\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"PNG\",\n \"label\": + \"Papua New Guinea\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"POL\",\n \"label\": + \"Poland\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"PRI\",\n \"label\": + \"Puerto Rico\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"The following + copyright notice applies to the use of Post- FSA layer and 6-digit layer: + \ \xA9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary + and the subject of copyright protection and other intellectual property rights + owned or licensed to TomTom. The product includes information copied with + permission from Canadian authorities, including \xA9 Canada Post Corporation, + All rights reserved. The use of this material is subject to the terms of a + License Agreement. You will be held liable for any unauthorized copying or + disclosure of this material. The following copyright notice applies to the + use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. All rights reserved. + Portions of the POI database contained in Points of Interest North America + have been provided by Neustar Localeze The following copyright notice applies + to the use of Telecommunications: \xA9 2021 Pitney Bowes Software Inc. All + rights reserved. This product contains information and/or data of iconectiv, + licensed to be included herein. Copyright \xA9 2021 iconectiv. All rights + reserved. The following copyright notice applies to the use of Logistics: + \ \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - 2021 ProMiles + Software Development Corporation. All rights reserved. This material is proprietary + and the subject of copyright protection and other intellectual property rights + owned or licensed to TomTom.\",\n \"\xA9 United States Postal Service + 2021\",\n \"You shall not use the Municipal Boundary layer of the + Administrative Areas product to create or derive applications which are used + by third parties for the purpose of tariff, tax jurisdiction, or tax rate + determination for a particular address or range of addresses.\",\n \"This + product is built on basis on the following elevation data: SRTM, GTOPO, NED + data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview\",\n + \ \"This product is built on basis on the following elevation data: + 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department + of Commerce, National Oceanic and Atmospheric Administration, National Geophysical + Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\"\n ]\n + \ },\n {\n \"country\": {\n \"ISO3\": \"PRK\",\n + \ \"label\": \"North Korea\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"PRT\",\n \"label\": \"Portugal\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + licensed under CC-BY 4.0. For more information visit: * C\xE2mara Municipal + de Guimar\xE3es https://sig.cm-guimaraes.pt/dadosabertos/#one * C\xE2mara + Municipal de Cascais https://data.cascais.pt/pt-pt/node/254 * C\xE2mara Municipal + de Lisboa http://lisboaaberta.cm-lisboa.pt/index.php/pt/dados/conjuntos-de-dados + \ * C\xE2mara Municipal de Agueda http://ckan.sig.cm-agueda.pt/dataset\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"PRY\",\n \"label\": \"Paraguay\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"PYF\",\n \"label\": \"French Polynesia\"\n + \ },\n \"copyrights\": [\n \"You agree to include + as soon as practically possible, but no later than the first new release of + the Authorized Application following Your receipt of any 3D Landmarks, any + copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"QAT\",\n \"label\": + \"Qatar\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"REU\",\n \"label\": + \"Reunion\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ROU\",\n \"label\": + \"Romania\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains public + information based on Open Government License v1.0.\"\n ]\n },\n + \ {\n \"country\": {\n \"ISO3\": \"RUS\",\n \"label\": + \"Russia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 ROSREESTR\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"RWA\",\n \"label\": \"Rwanda\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"SAU\",\n \"label\": \"Saudi Arabia\"\n + \ },\n \"copyrights\": [\n \"You agree to include + as soon as practically possible, but no later than the first new release of + the Authorized Application following Your receipt of any 3D Landmarks, any + copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SDN\",\n \"label\": + \"Sudan\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SEN\",\n \"label\": + \"Senegal\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SGP\",\n \"label\": + \"Singapore\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + made available by the Land Transport Authority under the following license: + https://www.mytransport.sg/content/mytransport/home/dataMall/SingaporeOpenDataLicence.html\",\n + \ \"Contains information from ACRA Information on Corporate Entities + accessed on Sep-7, 2020 from data.gov.sg which is made available under the + terms of the Singapore Open Data Licence version 1.0 {https://data.gov.sg/open-data-licence}\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"SGS\",\n \"label\": \"South Georgia and the South Sandwich Islands\"\n + \ },\n \"copyrights\": [\n \"You agree to include + as soon as practically possible, but no later than the first new release of + the Authorized Application following Your receipt of any 3D Landmarks, any + copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SHN\",\n \"label\": + \"Saint Helena\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SLB\",\n \"label\": + \"Solomon Islands\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SLE\",\n \"label\": + \"Sierra Leone\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SLV\",\n \"label\": + \"El Salvador\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SMR\",\n \"label\": + \"San Marino\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SOM\",\n \"label\": + \"Somalia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SPM\",\n \"label\": + \"Saint Pierre and Miquelon\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SRB\",\n \"label\": + \"Serbia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains open + data with free license. The free license is defined in Article 26 of the Law + on Electronic Administration (\\\"Official Gazette of RS\\\", No. 27/18).\",\n + \ \"For more information:\",\n \"https://geosrbija.rs/en/\",\n + \ \"http://metakatalog.geosrbija.rs/geonetwork/srv/eng/catalog.search#/home\",\n + \ \"Data was downloaded on 02.03.2020\"\n ]\n },\n + \ {\n \"country\": {\n \"ISO3\": \"SSD\",\n \"label\": + \"South Sudan\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"STP\",\n \"label\": + \"Sao Tome and Principe\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SUR\",\n \"label\": + \"Suriname\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SVK\",\n \"label\": + \"Slovakia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SVN\",\n \"label\": + \"Slovenia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + (street names) from Surveying and mapping authority of the republic of Slovenia + licensed under CC-BA2.5. For more information visit https://egp.gu.gov.si/egp/?lang=en.\",\n + \ \"Contains data licensed under: https://www.promet.si/portal/en/etd.aspx\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"SWE\",\n \"label\": \"Sweden\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\",\n \"Contains data made available by Lantm\xE4teriet + under legal terms listed here:\",\n \"https://www.lantmateriet.se/en/maps-and-geographic-information/oppna-data/anvandarvillkor/\",\n + \ \"Contains data made available by Trafikverket under legal terms + listed here:\",\n \"https://www.trafikverket.se/tjanster/Oppna_data/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"SWZ\",\n \"label\": \"Eswatini\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"SXM\",\n \"label\": \"Sint Maarten\"\n + \ },\n \"copyrights\": [\n \"You agree to include + as soon as practically possible, but no later than the first new release of + the Authorized Application following Your receipt of any 3D Landmarks, any + copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SYC\",\n \"label\": + \"Seychelles\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SYR\",\n \"label\": + \"Syria\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"TCA\",\n \"label\": + \"Turks and Caicos Islands\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"TCD\",\n \"label\": + \"Chad\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"TGO\",\n \"label\": + \"Togo\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"THA\",\n \"label\": + \"Thailand\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"The product + contains \u2018Points of Interest\u2019 (POI) data of Thailand made available + by Governmnet Open Data Portal: https://data.go.th Data and information are + subject to the Open Government License \u2013 Thailand: https://data.go.th/TermsAndConditions.aspx\",\n + \ \"Contains data made available under DGA Open Government License. + For more information visit https://data.go.th/en/pages/dga-open-government-license\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"TJK\",\n \"label\": \"Tajikistan\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"TKL\",\n \"label\": \"Tokelau\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"TKM\",\n \"label\": + \"Turkmenistan\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"TLS\",\n \"label\": + \"Timor-Leste\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"TON\",\n \"label\": + \"Tonga\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"TTO\",\n \"label\": + \"Trinidad and Tobago\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"TUN\",\n \"label\": + \"Tunisia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"TUR\",\n \"label\": + \"T\xFCrkiye\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"TUV\",\n \"label\": + \"Tuvalu\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"TWN\",\n \"label\": + \"Taiwan\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"This product + contains traffic incident data made available by the Police Broadcasting Service + of Taiwan under the following open data license: https://data.gov.tw/license\",\n + \ \"Contains source of the original data made available by National + Land Surveying and Mapping Center, Ministry of the Interior.\",\n \"Contains + datasets made available by DATA.GOV.TW. licensed under Open Government Data + License v1.0. For specifics, please reference: https://data.gov.tw/en/license\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"TZA\",\n \"label\": \"Tanzania\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"UGA\",\n \"label\": \"Uganda\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"UKR\",\n \"label\": + \"Ukraine\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"UMI\",\n \"label\": + \"United States Minor Outlying Islands\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"URY\",\n \"label\": \"Uruguay\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"USA\",\n \"label\": + \"United States\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"The following + copyright notice applies to the use of Post- FSA layer and 6-digit layer: + \ \xA9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary + and the subject of copyright protection and other intellectual property rights + owned or licensed to TomTom. The product includes information copied with + permission from Canadian authorities, including \xA9 Canada Post Corporation, + All rights reserved. The use of this material is subject to the terms of a + License Agreement. You will be held liable for any unauthorized copying or + disclosure of this material. The following copyright notice applies to the + use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. All rights reserved. + Portions of the POI database contained in Points of Interest North America + have been provided by Neustar Localeze The following copyright notice applies + to the use of Telecommunications: \xA9 2021 Pitney Bowes Software Inc. All + rights reserved. This product contains information and/or data of iconectiv, + licensed to be included herein. Copyright \xA9 2021 iconectiv. All rights + reserved. The following copyright notice applies to the use of Logistics: + \ \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - 2021 ProMiles + Software Development Corporation. All rights reserved. This material is proprietary + and the subject of copyright protection and other intellectual property rights + owned or licensed to TomTom.\",\n \"\xA9 United States Postal Service + 2021\",\n \"You shall not use the Municipal Boundary layer of the + Administrative Areas product to create or derive applications which are used + by third parties for the purpose of tariff, tax jurisdiction, or tax rate + determination for a particular address or range of addresses.\",\n \"This + product is built on basis on the following elevation data: SRTM, GTOPO, NED + data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview\",\n + \ \"This product is built on basis on the following elevation data: + 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department + of Commerce, National Oceanic and Atmospheric Administration, National Geophysical + Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\",\n \"Contains + data made available by City of Tempe, AZ licensed under CC-BY 4.0. For specifics, + please reference: https://data.tempe.gov/\",\n \"Contains data + made available by Coconino County, AZ licensed under CC-BY 4.0. For specifics, + please reference: https://datahub-coconinocounty.opendata.arcgis.com/search\",\n + \ \"Contains data made available by the City of Mesa, AZ. The City + of Mesa Open Data Terms of Use License Agreement can be found here: https://data.mesaaz.gov/stories/s/2dcd-j2nx/\",\n + \ \"Contains data made available by Kern County, CA licensed under + CC-BY 4.0. For specifics, please reference: https://geodat-kernco.opendata.arcgis.com/\",\n + \ \"Contains data made available by the City of Bakersfield, CA. + The GIS Data disclaimer can be found here: https://bakersfieldcity.us/gov/depts/geographic_information_services/gis_data_disclaimer.htm\",\n + \ \"Contains data made available by the Sacramento Area Council + of Governments (SACOG) licensed under CC-BY 4.0. For specifics, please reference: + http://data-sacog.opendata.arcgis.com/\",\n \"This product contains + traffic incident data made available by Caltrans DOT licensed under this page: + http://www.dot.ca.gov/cwwp2/. For specifics, please reference: http://www.dot.ca.gov/use.html\",\n + \ \"Contains data made available by the City of Garden Grove, CA. + The City of Garden Grove Open Data Terms of Use License Agreement can be found + here: https://ggcity.org/maps/data-portal/\",\n \"Contains data + made available by Adams County, CO licensed under CC-BY 4.0. For specifics, + please reference: http://data-adcogov.opendata.arcgis.com/#data\",\n \"Contains + data made available by City of Greeley, CO GIS licensed under CC-BY 4.0. For + specifics, please reference: http://greeleygis2017-02-01t212304815z-greeley.opendata.arcgis.com/\",\n + \ \"Contains data made available by the City of Hartford, CT licensed + under CC-BY 4.0. For specifics, please reference: https://openhartford-hartfordgis.opendata.arcgis.com/\",\n + \ \"Contains data made available by Open Data DC licensed under + CC-BY 4.0. For specifics, please reference: https://opendata.dc.gov/\",\n + \ \"Contains data made available by City of Miami, FL licensed under + CC-BY 4.0. For specifics, please reference: http://datahub-miamigis.opendata.arcgis.com/\",\n + \ \"Contains data made available by Hillsboro County, FL licensed + under the CC-BY 4.0. For specifics, please reference: http://gis2017-01-10t133755357z-hillsborough.opendata.arcgis.com/\",\n + \ \"Contains data made available by Lee County, FL licensed under + the CC-BY 4.0. For specifics, please reference: http://leegisopendata2-leegis.opendata.arcgis.com/\",\n + \ \"Contains data made available by Manatee County, FL licensed + under the CC-BY 4.0. For specifics, please reference: https://www.mymanatee.org/\",\n + \ \"Contains data made available by City of Sandy Springs, GA licensed + under CC-BY 4.0. For specifics, please reference: https://data-coss.opendata.arcgis.com\",\n + \ \"Contains data made available by State of Iowa, licensed under + CC-BY 4.0. For specifics, please reference: https://data.iowadot.gov/datasets/\",\n + \ \"Contains data made available by DuPage County, IL licensed under + the Open Geo-Spatial Data License. For specifics, please reference: http://gisdata-dupage.opendata.arcgis.com/\",\n + \ \"Contains data made available by Indianapolis and Marion County, + IN. For specifics, please reference: http://data.indy.gov/\",\n \"Contains + data made available by MassDOT under the Massachusetts Department of Transportation + Developers License Agreement. For specifics, please reference: https://www.mass.gov/files/documents/2017/10/27/develop_license_agree_0.pdf\",\n + \ \"Contains data made available by the Bureau of Geographic Information + (MassGIS), Commonwealth of Massachusetts, Executive Office of Technology and + Security Services. For specifics, please reference: https://docs.digital.mass.gov/massgis\",\n + \ \"Contains data made available by Calvert County GIS licensed + under CC-BY 4.0. For specifics, please reference: https://www.co.cal.md.us/1534/Geographic-Information-Systems-GIS\",\n + \ \"Contains data made available by State of Maryland and MD iMAP. + For specifics, please reference: http://imap.maryland.gov\",\n \"Contains + data licensed under CC-BY 4.0. For more information visit Howard County: https://data.howardcountymd.gov/\",\n + \ \"Contains data made available by Maine Department of Transportation.\",\n + \ \"Contains data made available by Minnesota Department of Natural + Resources (MNDNR).\",\n \"Contains data made available by North + Dakota Department of Transportation licensed under CC-BY 4.0. For specifics, + please reference: https://gishubdata.nd.gov/\",\n \"Contains data + made available by New Hampshire Department of Transportation.\",\n \"This + product contains traffic incident data made available by NY State 511 licensed + under this page: https://511ny.org/\",\n \"This product contains + traffic incident data made available by NY State 511 licensed under this page: + https://www.511pa.com/\",\n \"Contains data made available by the + Rhode Island Geographic Information System (RIGIS) consortium, the State of + Rhode Island, and the University of Rhode Island. For specifics, please reference: + http://www.rigis.org/\",\n \"Contains data made available by the + State of Utah Automated Geographic Reference Center (AGRC), licensed under + CC-BY 4.0. For specifics, please reference: https://gis.utah.gov/\",\n \"Contains + data made available by the City of Charlottesville, VA licensed under CC-BY + 4.0. For specifics, please reference: https://opendata.charlottesville.org/\",\n + \ \"Contains data made available by Vermont Department of Transportation.\",\n + \ \"Contains data made available by City of Everett, WA with the + following disclaimer:\",\n \"\\\"The data made available here has + been modified for use from its original source, which is the City of Everett. + Neither the City of Everett nor the Information Technology Department makes + any claims as to the completeness, timeliness, accuracy or content of any + data contained in this application; makes any representation of any kind, + including, but not limited to, warranty of the accuracy or fitness for a particular + use; nor are any such warranties to be implied or inferred with respect to + the information or data furnished herein. The data is subject to change as + modifications and updates are complete. It is understood that the information + contained in the web feed is being used at one's own risk.\\\" For specifics, + please reference: https://data.everettwa.gov/\",\n \"Contains data + made available by the Dane County Land Information Office.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make TomTom Traffic Licensed + Product available except to authorized End Users; and (iii) use the feed or + information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"You specifically + agrees that it shall not: (i) store the data for more than twenty-four (24) + hours on Your servers; (ii) broadcast or make TomTom Traffic Licensed Product + available except to authorized End Users; and (iii) use the feed or information + received via the feed for historical data purposes (including but not limited + to collection or analysis).\",\n \"The following copyright notice + applies to the use of Post- FSA layer and 6-digit layer: \xA9 1992 \u2013 + 2020 TomTom. All rights reserved. This material is proprietary and the subject + of copyright protection and other intellectual property rights owned or licensed + to TomTom. The product includes information copied with permission from Canadian + authorities, including \xA9 Canada Post Corporation, All rights reserved. + The use of this material is subject to the terms of a License Agreement. You + will be held liable for any unauthorized copying or disclosure of this material + \ The following copyright notice applies to the use of Points of Interest: + \ \xA9 1992 \u2013 2020 TomTom. All rights reserved. Portions of the POI database + contained in Points of Interest North America have been provided by Neustar + Localeze\",\n \"The following copyright notice applies to the use + of Telecommunications: \xA9 2019 Pitney Bowes Software Inc. All rights reserved. + This product contains information and/or data of iconectiv, licensed to be + included herein. Copyright \xA9 2019 iconectiv. All rights reserved\",\n \"The + following copyright notice applies to the use of Logistics: \xA9 1992 \u2013 + 2020 TomTom. Truck Attribute Data \xA9 2004 - 2019 ProMiles Software Development + Corporation. All rights reserved. This material is proprietary and the subject + of copyright protection and other intellectual property rights owned or licensed + to TomTom.\",\n \"\xA9 United States Postal Service 2020\"\n ]\n + \ },\n {\n \"country\": {\n \"ISO3\": \"UZB\",\n + \ \"label\": \"Uzbekistan\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"VAT\",\n \"label\": \"Vatican City\"\n + \ },\n \"copyrights\": [\n \"You agree to include + as soon as practically possible, but no later than the first new release of + the Authorized Application following Your receipt of any 3D Landmarks, any + copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"VCT\",\n \"label\": + \"Saint Vincent and the Grenadines\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"VEN\",\n \"label\": \"Venezuela\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"VGB\",\n \"label\": + \"British Virgin Islands\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"VIR\",\n \"label\": + \"United States Virgin Islands\"\n },\n \"copyrights\": [\n + \ \"You agree to include as soon as practically possible, but no + later than the first new release of the Authorized Application following Your + receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\",\n \"The following copyright notice applies to + the use of Post- FSA layer and 6-digit layer: \xA9 1992 \u2013 2021 TomTom. + All rights reserved. This material is proprietary and the subject of copyright + protection and other intellectual property rights owned or licensed to TomTom. + The product includes information copied with permission from Canadian authorities, + including \xA9 Canada Post Corporation, All rights reserved. The use of this + material is subject to the terms of a License Agreement. You will be held + liable for any unauthorized copying or disclosure of this material. The following + copyright notice applies to the use of Points of Interest: \xA9 1992 \u2013 + 2021 TomTom. All rights reserved. Portions of the POI database contained in + Points of Interest North America have been provided by Neustar Localeze The + following copyright notice applies to the use of Telecommunications: \xA9 + 2021 Pitney Bowes Software Inc. All rights reserved. This product contains + information and/or data of iconectiv, licensed to be included herein. Copyright + \xA9 2021 iconectiv. All rights reserved. The following copyright notice + applies to the use of Logistics: \xA9 1992 \u2013 2021 TomTom. Truck Attribute + Data \xA9 2004 - 2021 ProMiles Software Development Corporation. All rights + reserved. This material is proprietary and the subject of copyright protection + and other intellectual property rights owned or licensed to TomTom.\",\n \"\xA9 + United States Postal Service 2021\",\n \"You shall not use the + Municipal Boundary layer of the Administrative Areas product to create or + derive applications which are used by third parties for the purpose of tariff, + tax jurisdiction, or tax rate determination for a particular address or range + of addresses.\",\n \"This product is built on basis on the following + elevation data: SRTM, GTOPO, NED data available from the US Geological Survey: + https://lta.cr.usgs.gov/products_overview\",\n \"This product is + built on basis on the following elevation data: 2-minute Gridded Global Relief + Data (ETOPO2v2) available from U.S. Department of Commerce, National Oceanic + and Atmospheric Administration, National Geophysical Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"VNM\",\n \"label\": \"Vietnam\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"VUT\",\n \"label\": \"Vanuatu\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"WLF\",\n \"label\": + \"Wallis and Futuna\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"WSM\",\n \"label\": + \"Samoa\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"XAM\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + from Dubai Municipality.\"\n ]\n },\n {\n \"country\": + {\n \"ISO3\": \"XAN\",\n \"label\": \"Abyei\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"XCP\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"XES\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"XHT\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"XKS\",\n \"label\": + \"Kosovo\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"XKX\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"You agree that + any Licensed Product which contains data of India may be subject to additional + terms and conditions which shall be provided to You when available to TomTom. + India data shall not be altered or changed during Your product creation / + publication process. India data may not be exported from India.\"\n ]\n + \ },\n {\n \"country\": {\n \"ISO3\": \"XPX\",\n + \ \"label\": \"\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"You agree that + any Licensed Product which contains data of India may be subject to additional + terms and conditions which shall be provided to You when available to TomTom. + India data shall not be altered or changed during Your product creation / + publication process. India data may not be exported from India.\"\n ]\n + \ },\n {\n \"country\": {\n \"ISO3\": \"XSV\",\n + \ \"label\": \"\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + under CC BY3.0 as distributed by Nobil https://creativecommons.org/licenses/by/3.0/\",\n + \ \"Contains data made available by Statens Kartverk licensed under + CC-BY 4.0. For more information visit https://creativecommons.org/licenses/by/4.0/\",\n + \ \"Contains data made available by Statens Vegvesen licensed under + the Norwegian licence for Open Government data (NLOD). For more information + visit https://data.norge.no/nlod/en/2.0 .\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"XSX\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"You agree that + any Licensed Product which contains data of India may be subject to additional + terms and conditions which shall be provided to You when available to TomTom. + India data shall not be altered or changed during Your product creation / + publication process. India data may not be exported from India.\"\n ]\n + \ },\n {\n \"country\": {\n \"ISO3\": \"XTU\",\n + \ \"label\": \"\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + from Dubai Municipality.\"\n ]\n },\n {\n \"country\": + {\n \"ISO3\": \"XXG\",\n \"label\": \"\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"XXH\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"XXJ\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + under CC BY3.0 as distributed by Nobil https://creativecommons.org/licenses/by/3.0/\",\n + \ \"Contains data made available by Statens Kartverk licensed under + CC-BY 4.0. For more information visit https://creativecommons.org/licenses/by/4.0/\",\n + \ \"Contains data made available by Statens Vegvesen licensed under + the Norwegian licence for Open Government data (NLOD). For more information + visit https://data.norge.no/nlod/en/2.0 .\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"XXK\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 ROSREESTR\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"XXW\",\n \"label\": \"\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"YEM\",\n \"label\": \"Yemen\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ZAF\",\n \"label\": + \"South Africa\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ZMB\",\n \"label\": + \"Zambia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ZWE\",\n \"label\": + \"Zimbabwe\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n }\n ]\n}" + headers: + cache-control: + - max-age=86400 + content-length: + - '887956' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Jul 2022 06:40:16 GMT + etag: + - W/"9c2ad45a381cb92a3a99cfa5bbcb3cf1" + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-azuremaps-region: + - West US 2 + x-msedge-ref: + - 'Ref A: CC441F1970CF412BA7320257A51A19C0 Ref B: TPE30EDGE0618 Ref C: 2022-07-22T06:40:16Z' + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_from_bounding_box.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_from_bounding_box.yaml new file mode 100644 index 000000000000..d3516ff52d7f --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_from_bounding_box.yaml @@ -0,0 +1,138 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) + subscription-key: + - + x-ms-client-id: + - + method: GET + uri: https://atlas.microsoft.com/map/copyright/bounding/json?api-version=2.1&mincoordinates=52.41064,4.84228&maxcoordinates=52.41072,4.84239&text=yes + response: + body: + string: "{\n \"formatVersion\": \"0.0.1\",\n \"generalCopyrights\": [\n + \ \"\xA9 1992 - 2022 TomTom. All rights reserved. This material is proprietary + and the subject of copyright protection, database right protection and other + intellectual property rights owned by TomTom or its suppliers. The use of + this material is subject to the terms of a license agreement. Any unauthorized + copying or disclosure of this material will lead to criminal and civil liabilities.\",\n + \ \"Data Source \xA9 2022 TomTom\",\n \"based on\"\n ],\n \"regions\": + [\n {\n \"country\": {\n \"ISO3\": \"NLD\",\n \"label\": + \"Netherlands\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + licensed under CC-BY 4.0. For more information visit: * Kadaster Top10NL + http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/29d5310f-dd0d-45ba-abad-b4ffc6b8785f?tab=general + \ * Kadaster BGT http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2cb4769c-b56e-48fa-8685-c48f61b9a319?tab=general + \ * CBS Bestand Bodemgebruik http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2d3dd6d2-2d2b-4b5f-9e30-86e19ed77a56?tab=general\",\n + \ \"Contains data licensed under CC-BY 2.0. For more information + visit: * Municipality of Amsterdam Datasets Parkeergarages https://data.amsterdam.nl/index.html#?dte=https:%2F%2Fapi.datapunt.amsterdam.nl%2Fcatalogus%2Fapi%2F3%2Faction%2Fpackage_show%3Fid%3Df06f5a77-04f6-432f-9fd9-ce9d740631aa&dtfs=T&mpb=topografie&mpz=9&mpv=52.3719:4.9012\",\n + \ \"Contains data licensed under CC-BY 3.0. For more information + visit: * Municipality of Amsterdam Multiple cat POI's https://data.amsterdam.nl/index.html#?dsd=dcatd&dsp=1&dsq=open%2520data&dsv=CATALOG&mpb=topografie&mpz=11&mpv=52.3731081:4.8932945\",\n + \ \"This product contains public transport stops data made available + under 9292 Open Data framework as documented on March 2013. This is specified + in their terms available here: http://9292opendata.org/sla\",\n \"This + product contains traffic incident information made available by NDW under + open source data policy:\_https://www.ndw.nu/pagina/nl/103/datalevering/120/open_data/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"ONL\",\n \"label\": \"\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n }\n ]\n}" + headers: + cache-control: + - max-age=86400 + content-length: + - '7582' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Jul 2022 06:40:17 GMT + etag: + - W/"d6959e64c4fed1e434c1f802c0669fbe" + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-azuremaps-region: + - West US 2 + x-msedge-ref: + - 'Ref A: 0F6F070262BD4FBFA1E859B1AE572056 Ref B: TPE30EDGE0713 Ref C: 2022-07-22T06:40:18Z' + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_attribution.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_attribution.yaml new file mode 100644 index 000000000000..2d8fd6b109c1 --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_attribution.yaml @@ -0,0 +1,43 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) + subscription-key: + - + x-ms-client-id: + - + method: GET + uri: https://atlas.microsoft.com/map/attribution?api-version=2.1&tilesetId=microsoft.base&zoom=6&bounds=42.982261,24.980233,56.526017,1.355233 + response: + body: + string: '{"copyrights":["
©2022 + TomTom"]}' + headers: + content-length: + - '98' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Jul 2022 06:40:18 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-azuremaps-region: + - West US 2 + x-msedge-ref: + - 'Ref A: AD49C74B5E2B4B0794172486552E3DF8 Ref B: TPE30EDGE0619 Ref C: 2022-07-22T06:40:18Z' + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tile.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tile.yaml new file mode 100644 index 000000000000..f734115296d1 --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tile.yaml @@ -0,0 +1,266 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json, image/jpeg, image/png, image/pbf, application/vnd.mapbox-vector-tile + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) + subscription-key: + - + x-ms-client-id: + - + method: GET + uri: https://atlas.microsoft.com/map/tile?api-version=2.1&tilesetId=microsoft.base&zoom=6&x=9&y=22&tileSize=512 + response: + body: + string: !!binary | + Gq8TCg1OYXRpb25hbCBwYXJrEpYBGAMikQEJ+C/gAaIEAAYDCDICDg4mAiITtAFuDUZgLB4BDgYq + LSAmChADEhcWCQUJCgUFEQYDDAQgAwAXDR8ADQsLABUVJxMbARkLEQATDRMDKw8ZAw0KEQUVFwEP + CQULHwYAAyEWIQEJDwsTGAAMDwwBDA8NAgkNCxMCDwwDCwkKCRMQAAkJCgUSAg4JAw8ICxABCAsP + EpQBGAMijwEJyCi/AhIJCAkHDwk8ACIFCAIKBQsNBQ8JygEAwgMSFFpEEjQTGgAaGAABDgICDA4c + BAQoBgYFAwMDAwsRCxMdAQMBCQ8IBRIaEgoKDwYUChABBQYKAxweCQoUDhkGBR8JCgEPHQURDwMR + BwAGARUDAx0PBwoXIyETBRMIAwwNDwgCDREIFRkjHRUdHxEPDxKTARgDIo4BCYo20AKaBAICDiYJ + GAQMBxYGDAkMBxoaAgILHAQIBQAeJAABIg0gGxIdAwUOChQIAAYWFhACHQwABhYQBBoNDgIUEwoE + CBQNHBsmGwgJDh8SCxRBFx8AAAkfAAARHwIBBw8ACRMGHQsAAQ0UEwgPAR8NDQYdFAUKCxwREiEC + EQ8TEhsFCQQZGgUIDRQFDxJMGAMiSAn8PNIBggICAhQKCgwEHAkCPjIIAxIKLgAEBxQABBgHCBgC + EgsBChgMBgMFDh0NCQEXBQ8BCQQJDzEAOx0VGQATDAkJBQ0ZDxIXGAMiEwm0Mb8CMgACDyoNAhkP + Bw8ADQ8SOhICAAAYAyIyCeA9vkKqAQAVPAAAG1cAAD0eAAAbDgEADQ4CAA4gAgEOHgACDjoAAEoa + AAAQCQABFA8SPBICAAAYAyI0Cdw/3juyAQAORAEMBgVIFgAALgsAAA8XAgARDQIAHjsAACsdAAAO + HQABOyAAAR8QAAINDxK0AhICAAAYAyKrAgngPro8igkWAAAcEAIBDicAADw2AAALHgEADRABAB5K + AAAdDgACHgoAAA0YAQAQHgAAHSABABsfAAAdPAI6AwI8GAICHg0AAAwOAgA8DQAAEA0CAFRnAEkB + AJYBEQAAHBwAASRfAAAWFQAAHh0BABsbAQA5GwACKgwAABANAAAeGgICHjkBAB49AAIrDwEACSUB + AhoWAgEuGQEBDR0AAA8jAAorBggSCgQUFAUECgEJFQMDDRMRFQMGBwEXCgkDCQYRDAlMAAANPAEC + Kw8CAA8NAAEOHQICLw4AABAuAgAPDgACLg4AAEseAAANLQEAEBsAAA8PAAANHgAAJToAAjsaAQA5 + FwABHh0AAQ4rAAAQRwACVxoAAB0QAgAPDgAADx4AACsgAAEOHgAPErIBEgIAABgDIqkBCdY5/gzy + BAACIgQAHkAAAB7MAwoBRMABBEwBACADAwAZXwAANjcBIw8XAiUHGwERCQEoCwUJBhcAHwwCGh4U + DgMcEBIYEg4CWgUICSIPCgAQEQUVEA0JEwIDCCEKJwQRAyMWGRErEB0GBwsRAAsJDQILDR8DGQ8L + BACYAQECAQFZAgS/AR8AAB8dAAFdDAUyBAAxyAEEAUE/AAIfXQAAHxkABVsdAAAfDxJbEgIAABgD + IlMJvkKQG6ICNwATA0cAABlbAgBgGwIABTkBAjNLBW8DABunAQMoJ6ABzwEeGQ4NDQ8KExIEBg0Y + Ah4leAAAMhwAHAcMBAwHJCIgFwwdGAseAxwADxLYAxgDItMDCb5CgBiqDhsAIQYTCgseHxYjHwsI + DQMZCBsAAEsJBAMLGQAPBhMFDQ4VAwcaHyYVAwMMEwERDAUNFwwRFBsIFRQRBQAjDgsKFR4JDgAc + EToCAF0OAAwLAxMQHQULAB0TAw0JLQcTBAkHEQQvEx0MAAoPAh0LFQwHBQ0ECwUHEAAUJwQACB8A + BxAdAAAYBwAAFjUAAAgfAA8IABAdEBcAAAgVAAAINxEYFQ4GDgAIAQwIAgIMAgQBFA8CAQgNAgAc + DRoCCAkIBAYEAwUFAwMCGQQHBBsMAQIHDAECExARAAkJAQARBBEHGRgNAwALDQYACyoABAUYAQAI + NgAQDRAXDgAQDyYAAB8gBxAPHgcABSAAIicQAAAtEAMgFxYCEA0SJRQDCA0eFQMLCB8LBw0fGwcJ + CAcRAm0fAAAPXQENEAcHFhEAIz0AAA19AAIPTQAADS8BAMkBHgIICiAECg4SAAoIEgAIDB4FLA8a + EiQVIgQ6CwQJFAEOChYPEgYADw4HDCMGBwFZDw0TFQcACw8VAhkNBR8gCxgACAUOCAIpDggcAiwK + FgEkEB4BGgQANV4AAhoIFAcAADAkBDgWCgccARoCCAggBB4AFBEWABAIEhYGAQ8SmQIYAyKUAgnE + NZILqggEAAMCAQADAgIuDwgBkAEHAAAgHggAEBAIDwYIHBQaDgQBFgsCCxEFIAIoCBYJJAoJChYC + AA4QBgUKHAYGBwEHFwsABw8JAAEPCQQBAAGEAQgWCAAALgYQGB4AHgYQIAIACBgCAEQkAgYQAxAg + DgAgFgAAGBAIMAAAGAgAABgIEBAAAB4OEAIYBgACIBIOGgABDhsDDQkNFyMDDgcPJwATDSkTCw0C + Bw0fCQQNEQkJEQAVEwULEREHGRAEDxcTCREcAgEfFwcLCwUZDx0LAwUnDwMIIQ0nBA0FHQAdAx0L + FQMXAiUKDwsxFREGDQ0VCx8LCwQFLgAAGR0AEAcKDxA1AA8JDQkfBgsWEQgrDxJWGAMiUgmSPpAq + qgIGAgYABQgBFg0BAA4PAgEeEwIBKggCAE4DAgkHCykLAQcPAA0ZBgEYMQQDCAQjLAMYFSQJACAI + GwEjEgEEExYRBAkCAwEEAgEEBQ8SRBgDIkAJujiSFOIBAAIEEhAOEAIALg8AACgQAgAmCAAAHggI + ACYQEgAeBggYAgBoAQATAwk7CycHMRVJFTUPVw4BABkPEl0SAgAAGAMiVQmOPo4WsgICACgWEgMM + CBIDMggMChQEAB4GDA8eBBYLCg0AAF49ARcSDQAbCAsYDQwAJE8dDw1NGQA1AZEBBgkoAwATDA8I + Bg4DCAYYDRYMFgAACQ8SZhgDImIJrj2AKeoCBBAKCgMSBQMBAAIAAwAFCQAIBAQIBA0IAAQCCgAJ + DBACFQYFCgwHDggNAgEgEgAMERIDBwMCDQQOAQYMDgsAKhAWCxYfBAUdBhMJDxUJFSEODgQXBQcC + KQwTDxI5EgIAABgDIjEJvkKYD6IBAwITFQ8HFQATEh8AHQMfCR0CCQg3FSMDAi8CAAAMQAA2BwoE + IgCOAQIPGghjYXRlZ29yeSIICgZmb3Jlc3QogCB4AhrbLAoMT2NlYW4gb3Igc2VhEt0CGAMi2AIJ + 5jS0BZoKAgIIDAAMDgoeDAYFGhIUBBoSPhQwDBICOBQFACQKHhcQDyAJEAsYCQEJDAEDBQYEAgIA + AQMDAAEBAAABAQUCBgACAAMABAADAAICAAABAAIAAgIAAAICAAEAAAEAAgABAAICAAYCAwYNCA4Q + AhYUEQoICwEDCBsMAQACAAEAAgEBABEGAwgZDg8SAAgQDhACBgQUABIKCAUECBoMKApACA4MChAA + DhwKIBQOBjIWPhIUCjIODhAQBw4OGA4kBgQBEggKAhIMGgoICgAOEgYYBw4CChQYEg4CBgUeBSgI + Fg4SBhQcJA8QABAJAAYSAA4OBQYYDAoCGAsFEgoWEAMUCggBBg4QCgEGGhIWAwQRCgMHAQQPGgMI + BAgHDAAKCQUgDxICCBAAAhIUrgGdARthF7UBL7sBLw8FkQE9DQPrApcBswFJtwFLrwFHARUENQpl + DxKIBRgDIoMFCYhBvwKCCwAYEiIUBAgOFh4MDg4LDSkhOQUHjgEAAMoBGR0jNwUICQMAEAUKDBgE + Ag4WAgABAAACEBgeIAgEAFAVBx8bDQ8XDQEAAgIDCAASECAHDAYaAwoYFgsDEhQDAiYaFxQCBg0Q + AiQBFhIMEhQSEAQEABAFAQ0ACwoIBgYMBw4TDgAMFBYBBhwYAIYBAAsHHRkTABcREwsFEQ8hDREA + Iw0OCwQCEggRCQMLBgEODwoEEhIIBQIVEiQKAQQQCggADw0bAQsYGwoBCw0EGQ0DFQ8JCgUUDykC + BxALEAICDQcPBAcFEx8LBw8bBQcVAgkJDQMIDQAFCx0lCQUFCwEDAgQAAwshBBYJAgcXHxEPIQsN + GQsRDwkDFSMCDQ0DAgEEAQMCFxcTDwAFDQQFBwwRAAgsIAQBICIUCBQaAREKBAgPBx8REQ8BBQcA + DRIDFAQOEwwBAAcNBwALBwkBAQICAQAHBwIFCQsPCaQC9AGqAQACGhgAAgEBAgIKCAsHCgoGBAIC + AQECAgICBAIDAQICBAIGBgUFCAIVFw8JnwFXkgEBAAAICwESHgcGBgoFBg4cFgoDBAwKBg0BHwMh + BxEECQkCBAgPCTIQKgECFBgUCgIFJRsPCXtxkgEAEAkGBQkPBwYOBiIQJBICBhoKAwsbCgIYDwEL + CxMLBwkVDQcPCeIB3gZCExsHAwUVBQIIBxQKCAsEEw8JAIwCmgEHAgEeBhIBFhEiAxQECgcHABcI + EQEJCgsDEQ0RBRECDQwRFAMGAw8JAOQDIgcCCSEKBwgRDwkAtAKiAQ0EMQcTtQEIAggJFAQACBgR + CgMCCxMTCRMPBwkDCgIBAwQCFAweDgYFDxI+GAMiOgnMQKIJygEAAggMEQIdFhgQAQQHCgEMCAwB + DA0XBhETCg0AFQsEAxwMDgMUBwcBDQYHDwgPHhcKAw8S5QIYAyLgAgmwKL8CqgoECgoBBAcYAAgE + BgYECAEHBAk2ABIQHiAeFhgiABYGFAUADg4KAgQPCgUUBgwOGBQCCAsQDAYKFAcBChASAAUEBgAI + Eg4ICAwYAgIQCgkIDgcQFgEOIMoC0gFeMhwODAUCDBALBggABxABDgwGFAgEAAsKAAoPAwUWGRQO + AQgTHgMACCQFAgIUEhQADhoaCAMICA4JGgQSCC4MEAwWAhwMHAIcEgoEFhQOABYMGAAQDgwDBRkA + AwYLEAMGBgoJBgYcFQQbEBsMBwgNDAAQGQwHDAIDDQARDhkaFRwpDAsGEwQGCgsKBAAOBgAREAMK + AhYRDgkEBQoRChckBhQLFg0SEQEPDhUwAgYJDhMMBRAVAgUFBwgTCQsIBBoCCAoCEhAUBRAUBBAK + DBYKBgwMCAgaBgEMDAoFDggFQAt2ADyrA60B0QTzAYEDnwHfBPkB8wKZAbME5wFfJw8SbBgDImgJ + 0jO/AoIDAxYCHAcGBRoHCgUUARYJDBMMEQ4DEhESOwcfDBEQAAoJBhIIDQQAFgQMFQcJDQQDBQIR + CAUMDSUIAwQPDgQUCQQRJBkEBiQFDggiAxoXAg8cEQwfABUGCwAfFwkBCRgFDxIjGAMiHwmQMMMB + YgIMCQgOAhAMAwoKBgEUMQsEGQYBBwsODw8SRhgDIkIJijC/AuoBBBAOHAkICAgHBgkYABATEB0i + AA4aAgIGGxANCQETBAsBDwwNBAgMFwoKDA8ECwIVCwsDDx4FCRsDAw8S9QIYAyLwAgnyL4sBogQC + ACYMHgIABhoKDhAuEiYEDCYLCggIChQGAwYMCAUEDgkMAw4IBg0GERIDChcABAoJBgYPJQEEBgsE + JSQHGgAEAAMXCgcSCQATIA0KBQ4RAgUKCAgREg0DDQoKCg0DAhB1Pd8BjwHAAcEBFgUYAhYSEAIM + CgAMCggOCRAFCAcDBRgJCBUCAQQHCAAMCw8JMcICSgEADxgIDgoHAgkMAQoLBwIPBQ8JFCFCAQIJ + CAgBAQwQEAQMDCUXBw8JnwFFSgACBhATAQEEAgwMCB4HDxsJAQ8JgAIlggEBAgMGBgMDBAcGAxIJ + AQ0GBQoECg4FEA0EAhQHDhELCQ8JVn3KAQEABw4PAg0YFxYIEAkABwoGAQYMBQgPBAYSCAYOBxYA + CBcUAwYRBgMCAwMCCCUMCwUVDwnHAjw6BAgXCgEGGgkDCBIDDxEPCRQbOg8SFgMKCgUIGgkTDw0F + DwlgTTIBAgEMCxoOBgAJCBkPEh0YAyIZCZwwuAFKAAICIgsOEQQBBgcFCgECARQRDxJNGAMiSQma + K3uKAgIADBwGAAgQEAwYHgYMCgAIBgcIDAIEDAYBAwQBABUBAgURDwoBHR8RBwEGEwcQBQcJFwsB + AAACAAEBAAoRAwUKBw8SUhgDIk4J1C3DAZICFAYoBhgODAAELgQGDQEhEA4CAQi/AcIBaUELJQYG + JAAFCQgGEgYMCQ4DAAkGBQQNFAMCDxILDBMMACQfAQ0QDxQNAwsOBw8SMhgDIi4JvDHpAZoBBgYN + FAgCGBQUCh4gDQYCCA0IBQUFFQ0NAQcnEQkHAwkMCQoEChMPEi4YAyIqCeotgwKKAQIADAQIEBAJ + CgQEJhEIAAgMBgUCFQEnCQYTBw8KDQEJDAMPEmgYAyJkCaAxqQG6AQASFgcIBg0IDAYIAwwGBAoP + AQMGCgoNFAcWEQATAy0RDQ8NAQgFDAYSCRodGhEPCQgYogEJBhUADQoBCA8MCgQFCBgKDg0QAwIT + CAQMDQkUDAADCQYECAcLBw0HDxIwGAMiLAnAL4MCkgEDCC8SDwAfDA0CAQwRBxMMBwMDHwYEHAwo + BxYJCAAaDQQIHgsPEkIYAyI+CaJBngnaAQYCARoCAhAEDwMADhkEAQoLAwwDBQkFChcHBRMLBA0B + CQYNFBICBQwABQsFCwceFzgBFgQMDQ8SJxgDIiMJikGMCXICAAgSDgcIAgcGERYVAyMCCBMMBRYA + AgYICQkEDxIfGAMiGwmgMLgBUhAUDhEKAg8SCAAHBA8BAAcJDQEBDxJNGAMiSQnsHL8CmgFgKMIC + hAHmBP4B4AT6AYIDoAHSBPQBqAOsARMA2QFHVR27AT+HA4MBuwE/zQXzAa8DkQHLA5sBvwTDAcEd + AACTAQ8SGxgDIhcJvwK4QTrUPgADLgAYBx4FHgIEwz4ADxL+AxgDIvkDCb8CqwGCD8IdAMAExAHM + A5wBsAOSAc4F9AG8AUCIA4QBvAFAVh7aAUgHCgMWABoKHgYKFhYbCCEWGyAHDgUcABwKIgoQAAwK + HA4cGBIBEAYYChQXHA0YAQwDJgIMDiIjCCEYGSoDDgAeCCIQGAwoDBASEgwkDhYDKgQODxoFGgYs + CSYAHAYgDBgUFBwSAyQKJBAYIBgOHggcGiYUEhIOIAoMIggOAAEOEh4UCBQODgooDhYOEA4IEBoN + EhUoCSACJAgYEBgSEBgMGAgeAiIHCBoAFAIaCBQKDhqkAQYmBRwCHBQ8ER4DEAAcDDYUPAwYLiwA + IgwkFiAsHBBOFlAMHgEcDCoURAQ2BhoAVgQoARYJSAAUBD4EEg4mJCIWQgoyCjoMUBpuFFwMegHa + AQQQAS4CEABcBBQBUhFaBQwHIgEaBxIDJhZSDhwUHBIOIBIgCBgqKGQUSAY0BD4HJA8OHSYPBh0S + Ex4HFAEiCCQKEhQUHhACCAIeARoCGAYQER4HFgQoCxAHFgMiAhoMFhgaHA4IEAwKAUIFIAA8AwwN + HgEoBxoAJAwkAhATEBMiAxgCHA0sACIIFBYgDAoBEgk8FxIRKAUeABgEGhIcFhYGFgQcBTYPGgce + AhQMKAgOAB4HNAcgDSQJEAseEUADHAEcCCAIEgEG0z4ADxKTAxgDIo4DCYQ8vkKaDAEDBh0IHQAV + BjUHEQcfAhsEGxI/DB0KDw4jCB8IMwAdBw0LJwETCB0QGQY1AxsFFRUVERsDGQAXBh0SJxgRCjsC + EQsJFR8HEwAhDisBGwQXFCEUDwEPCyMAIwgZAicSKQA7Bh8CQQsJBw8bDRcZCxUBGQQhCBUMDwMn + CBUSHQUPARcCHQMfHRETEwkRByMCIQgTFB0eERAFHiUQDQgjAz0FMxNHJ2MXKR8HHxERDRMbDRsR + QRgBeAMeAQQSBAwUKAEGEAgCBh4+GDgMKBAgDjQCHg48CGoFLgkgEwINBA8MAxgZFAASDggIEAAS + CAIIEgIuBCIBHAQoAy4FIAEqExoCDA4DCAwBDAYQFhIGCgQYABoECABWBA4FCglcBRgAGAUcCggH + BAYgBSQAEgMaDSQFAQsQCgQEGAcSCg4MHA4SDQwFVgtEERIhDgYGJgMIBgwmAhQAOAdIBQwBIgkO + DgQEHAEcATwDCAlCCzoPDhEYBg4JDAIWAwoQAAISCQ4CNAtQByoDHA8SbBgDImgJ1D2cOIIDEgQO + EBIGGAQACw4BBxQJCgoSBBoQEgESCggBCBABBgEFAgMYBxIPAgQQHg4CBgsFBQEEBgAEARgCFwMB + AQMBAAQEAQoBCwEBBwkPCwUNFRMPCRMTBycADQoFAA0MFxETDxInGAMiIwncPbQ6cgACAgoOBgwu + BxQLEA0KBxgFEQIdDi8IAQsXBgkPEiUYAyIhCe494DxqAwoNAAEGAQ4KBgsSBQADEQAJDAkACRIA + AgUPEuoBGAMi5QEJvkKyDdIGAwUXCw8DEwYHChMABwQVAR8JEw8fCw0AJwkGBhEMDwUCBw8KCwEX + BBMKOQENCwUIEwYdAgkLCwMVBB0AHwMHCycGDQEVBQMJEwIRBw8AFQULBQMLLxcNCwETBgkNCRkA + BQUfEx0NFQ0nDxsVEwBFCRUJJQkLDQ0JHwYTBR0dIQ0NEwkBKx0HAQcJKRkPAA8LGR0LBAUJDQAJ + BwkXJQUhAQ0DCwYNBRUCFQgNBxMQBRcFAQlvAXEAAwwGpAFCuAFMtAFK7AKYAQ4EkgE+EAa8ATC2 + ATBiGMQBIgwCDgMPEvAEGAMi6wQJ1jScCIITAAIKbgYCBiYEChQMChACDA4KAAoMDApaAAoJDgwa + ARYDFhUSCRAUIAIaDzYJEAcBERYHBAEQEBQIFg4aBQ4UDggQARAKEAsUASYGCgEODBQEIAAgBhwD + Dg4mByIGCAoABiYKBA4UCCYBDgcABA4GAxIUBwYKEBoSAxIyAgYICgEKDgASCgQADAwCBgoDDhAA + EAYKEhYADAwIFgYwDhwNCBAACgYIAxAaFhIIEggcAhYKNBg4CCAEFggSCDIMKAgsBjAIKg5sACYI + SAIwCg4GJAIeCBYDBB4MChYKHAwwIAAUFAoQFlIEFgwmCCQMQgo8CB4ADgxKAigGdAJEAzgDJgAe + BwI8LgYCDC4IEBBKDEAIUAIkAxgEEAoGHI4BAhgHIgQiAjAEFAI0BBoCYAJoAUQAPAEmBAYFVgUq + BR4JDAQGBR4BHiAbCgwOAQYUAQRVBFcCAxUEHQgRAhkIIQYLElkCUQMTAFsBDwItAw8C2QELeRNb + GW0LTwk5CTEVQSMhDSUDEQM9ABMMXQMnAFUFGQM1E0MLKQIbCx0VTw9NKxsVHwsjACEtKwsXEzsL + NQAbBA8SHRM7ARsGGwk3FZEBCQ0HEwEZABMHGSEIHQEVBRkNEQ8PFwcXASMKHxYnDhEPFw0JDQ8N + FQklDQ8HEx0TDREAAgsXBxcfCRENExEZJQcbDR0bExMbCSMEIxsRExMLFwUfABsKJQUrBhkQGQMN + BCkNFQsjERELDwsnCQsLHwEdBBsaKSIXJAcNIQELBCUCCw4XGBsJEwUXAg8XEQ0bCRsACwkPCSEA + GwYbCA0cHyIVFAUPEpMEGAMijgQJrj60JPoMBAAJAgECCRQMDAQCBAQDAwEDAAkCDAoKBg4SBBMB + Bw4IAQ4WIgwIDgwCCwQMBgAICQ4XBiseEQ4LAQ8QBQMMDAMqDQYLChkIAiQBDgQWGA4ODgocAhQO + EgYOEgQEGgcGAhwEEAgABQIJAgIQDwUFDQ0IAhAFEhcOARwIEgYAGhAOFAMUCg4QARQIGAITAhYO + DgQKGAYsDgECAAECAwgCDAQCCgIFDAQLBwEDAAMDAAcCAQQHDQABAAUZESMXCwEKAQsJCQsABBIC + EAEPCxMZAQECAwYCBwkHABUBEw0JAxAKGAMMDAwGDhUSAxQRBAAOCRAPCgMICQERCB0ABQ0AEwEG + ABsDRwURARUAHQUjARkCAAgBBwACEQgHAxkANQQdACUJFwsHAxEPHQERCBMLIQkCCQ4EEwEXG40B + KBAeEh4YCgEJAw0NCwMACQsDEAIAChQAGA4AEgcHBggEBAIPLg4CBxEFDQ8UCAIHEw0OAQYPAw0G + DQAKAQYQBhgWHAAUAwIHAw0BBQIGAAkKCxYFCAQBCwMBDwkFCQAHCg0CAQ8Jd8wEggMBAAcCByIA + HAYGAxgNDRYiFgoKEAUSBhYBChIDEgAKFQ8XACcJBAEOAw8RABIFBggOEQILDw0PAwACBwwGDQcJ + BwQAGAcHBAsJBAAKAQkAAwoBAgcJAwAJEAwEDwkJAQ8PEiEYAyIdCcI1+AlaBgQLABIQCBgLDAYU + BRgPCgUFCVkOCw8SbhgDImoJiDymIooDAgIYCi4GAwYHLA8QBgISAxIPBAMGARIICwAJAQQKEQYO + EgwEChIOBgsEBAAJAAUMAQkdIxEBAg4KAhMGCRAEDQkEBxEEBQQFAwYCBwoFDQAFBgQFBQYBDQcE + DSUMBQQXBQsPEjkYAyI1Cbw8+B+yAQICFBIaChAgAQwWDBcaAgaDAWIFCQsGCQEHJQcXARcEHQsR + Bx0GEyQTFgMuBA8SggEYAyJ+Cfo87iDaAwIAFg5AABABKAQDCAsBBQoRAgMIJgUiAAwGCgUkCAoD + BQgKAwUEDgoMAhIJFhEEBg8MDRIpDB0WEwQ3EikUJwENDgkYCwEXCB0QLQUfDwIBCQINDQgBCwAH + EhUDOy0eBRwVEAAEAyECCQgICRYJBQgaARQCeFcPEhsYAyIXCeA5ogtCDAA6CgACBQYXCg0FFwUB + CQ8SIRgDIh0J9DWaCVoQACQIEBoVDAsCCQENEQoDCwALEQQDDxInGAMiIwmSQpwNcgQEFRgRDAkA + GwcTAAkFCw0GAyAKFgIIAxQAEg0PEh0YAyIZCbw0pAdKEgAGAgJ2FRUFCQkdAQ0GIQgHDyiAIHgC + GvQCCgtPdGhlciB3YXRlchLPARgDIsoBCb5Cqi2KBgcAAwQNCg4JAxAdEh8gAR4PCAsFGworGA0B + CwkVDjUAExcDBAUECQgAFAwBAgIGDAgDDAMIAgUQAwUEBwYBBQIVBAUCAA0NAAATCAkDCQoGBxUH + Ag0ZChULBAMOEwoGBg8CCQAKAQkCLQwbBREKGQIPECEFCwoHGycVAgchDQcKDwMRHRIAFyETEhMn + BxsEAQQbBQsEGw4FAgAAAg4MFCgkCBwUEBYYGFQIVB82BzQfQCAfCggGIAsGBDoRWgZGCQoDDxKN + ARgDIogBCb5C8iyCBAkERQpZBTkSTSczIDUIUyBTByctGxMjBxMnDQsPBAMcBgwABAEYBREGBRcL + ARUQGwgGGBsCACIGHBQgBwMGEwQCFhAODh4iHgIKFAwgChgACA0KAQwVEAUMDRYBCBUYByQWEAMO + ISAEBhcyBwQOCgYEFAEeDgowBBQKUgEIByoDDyiAIHgCGkgKDVJlZ2lvbmFsIHBhcmsSMhgDIi4J + zEDoF5oBAEggAA4MFQYfFAkUERINAhMSExUXAB0ZFQ8cIRwPEhUkExgBHgkPKIAgeAIapQUKFlN0 + YXRlIG9yIHByb3ZpbmNlIHBhcmsSGxgDIhcJvkKSB0IFCAIKEQAQHwITBRUCGwgBDxJOGAMiSgna + OY4HigIKAAAeCAoCAhYAHA0ZGAIMMBgOBwUMKBQ6DiYQLAgIBiYCCB4AAiEZDQgPDzENEwkbBR8L + QRsfExsJAA0HCQkLABMPEskBGAMixAEJvkLwNSoRBAsLDwcSFRwADwkAlgPyAQ0ACwYdBxsACw8e + Cx8MBRkQAAwJFAUOEwEdFwsJIQgPDQENBgcNGQAADwsACAMgCB4DDgkeCAwWDAUGBQ8JAPABggED + AQsQAw0PAxUREQgDDRUZAQ8SEhwAIAoOEg0RDgUMAA8JAKoDigIxAAcXEAkJCwMIDxMCIxYGAwMJ + BQkTFxUBIQkZAgkCCiIECx0cGQISDAsFDQgXCg0XDAYHEQEiGQ4FCA0HCwoEBgEPEi4YAyIqCdI9 + ujqKAQYUCSQBDgMwCBANGAYSABgFAAEHLwYHBSoPDBEMVwINAicPEkIYAyI+CYg9pC3aAQgEBgwO + CAAIAQERAhYgCgQKCx4KBRINAA4KAAoBBQAIDCYBDgsECRkLBg0bDgANBSVPDwUUEw8SMBgDIiwJ + zD3SMZIBAAQIDg0ABxgNDgAWCAACFAoQCgADDgkACwsAExMVAREaEwYZDxIuGAMiKgnEPbY0igEC + ABAEAyYSDgoAABAVDAAiIAAIDwAeKQANBwspDQQBDRQXDxJUGAMiUAnoQMAxogIEAgoODgAAEBAB + AB5LAgcRCQwDEgYAAAYPAgcYBBIAAgsYDQYODQINCAMFFQwTAgMMAQUAAAEEFQwHAAEICAATDwAA + DRAAAA8PEiEYAyIdCb48tCZaAgAOJgcSAhIQHgQSEBA3AAlpBhEKCw8ogCB4AhqGCAoLRWFydGgg + Q292ZXISIBICAAAYAyIYCeA8vkI6AEkiAACRASEAAGGgAwAAvgIPEhgSAgAAGAMiEAmAQL5CGgC9 + Ar4CAAC+Ag8SIRICAAAYAyIZCbhBvwI6aJwBHhgAjAHRAQAjNSOjASJlDxI0EgIAABgDIiwJiCu/ + AnoAVpoBOTcblhQAAMAC6w8AADlNAAA6vQQAlwFzAHVNOb0BAAkbDxI4EgIAABgDIjAJvkKAIFq9 + AgAA5wskNW4AAGttACM3AMUFtgEAADiIAQAPCWHYBBoA2gEkbADFAg8SIRICAAAYAyIZCb5C5go6 + zwEAbW0A4QckACM3AN0BvgIADxIsEgIAABgDIiQJvkLmIGJtAAAybgAA6B69AgAAmRJoAABjIQBF + MQDPDL4CAA8SlwESAgAAGAMijgEJ7jSKCaID3AEAADhsAJQBpAGSATa2AQBuOCRukgE2ygIAAKQB + SQAAOEoAAKwR7QQAAKEBIwAA1QEjAABrJQAANUcAJWsAayMAAMMCIwAAoQEjAABrJQAAowFHACWh + AUcAIzcANUkAIzUAbSUAAKMBIwAjjwIjACU3ADVuAADJAiMADwluuAMSANoBSG0PEokBEgIAABgD + IoABCeA8gCCqA6ADAACCDYkBAAAyiwEAAJUBZwAhZCMAITEAlQEiAADFAyEAAJUBIjMkAABmIgAA + ygFGAABkRDEhZQBjIQAAlwEiMSIAQzEAMWcAADIjAAAxIQAhMwCXASIxRQAAlwEkAABmRAAAZWgA + ADHSAQAiMyEAaTEAMqsBAA8STRICAAAYAyJFCYAwAMIB7ggAJHCSAQBtb8oGAAD4CbUBAAA1twEA + R2+lAjVHbbcBAJEBbbUBALcBbyNtbQBtbdkBACVvkQE1I6cBbjUPEoMBEgIAABgDInsJgj2CLaID + IgAAZEYAAGRGMmgAAGMhAAAxRABGMQC4DIkBAABhaQAkMAAyIgAAYiQyRAAAMUYAALIF/QIAIjEA + pQIkAACTAUUAIjEALyQAAJMBIwAAYyQAAPUBIgAA9wFFAACNAyEAAGMiMWgAAKsCQzIAYyMAADEh + AA8SFxICAAAYAyIPCbYtABqAAgBrpgGTAQAPEhsSAgABGAMiEwmMPvwuKgD6ASEAAJUBIQAAMQ8S + FRICAAEYAyINCb5CmCEabQAAMW4ADxIeEgIAABgDIhYJkDuAIDpoAAAyIwAAmgEhAAAzIQAPEhoS + AgABGAMiEgnqPeYtKiIyjAEAAGRnAEUxDxIkEgIAARgDIhwJsD6KOVJGAABiigEAAGJFAAAyQwAj + MQBhIQAPGghjYXRlZ29yeSISChB3b29keSB2ZWdldGF0aW9uIgoKCGNyb3BsYW5kKIAgeAIaqgEK + EkludGVybmF0aW9uYWwgcm9hZBJfEgQAAAEBGAIiVQmgQuwHQhwcAgABABsTBYcBFz86IwICCQ0E + Gi0YIKoBAgAJGu0BmgE3ywG7Ab0BGUUJcyBHQ0tZnQFFPRtDACkccHB6MGBCSB1QCnAaRsIBxgEu + rAEaDGNvdW50cnlfY29kZRoTY291bnRyeV9zdWJkaXZpc2lvbiIFCgNDQU4iBAoCQkMogCB4Ahou + CgxTdGF0ZSBib3JkZXISGRgCIhUJ2DzuLDIQSZABflAIwgFFSCTsARcogCB4AhpKCgxJc2xhbmQg + bGFiZWwSEQgAEgQAAAEBGAEiBQnKN4UCGgRpY29uGgRuYW1lIgIgASISChBWYW5jb3V2ZXIgSXNs + YW5kKIAgeAIa0AMKE05hdGlvbmFsIHBhcmsgbGFiZWwSERIGAAABAQICGAEiBQnaP7MCEhESBgAA + AQMCBBgBIgUJ9Dq8ARIREgYAAAEFAgYYASIFCeg9jgkSERIGAAABBwIIGAEiBQn6KpkBEhESBgAA + AQkCChgBIgUJpkLQBxIREgYAAAELAgwYASIFCf5AkBAaBGljb24aAmlkGgRuYW1lIgMgqQEiEQoP + MTI0NTk4MDAwMDI5MDUyIiIKIFJvYmVydHMgTWVtb3JpYWwgUHJvdmluY2lhbCBQYXJrIhEKDzEy + NDU5NzAwMDAwMTgwMCIcChpHb3Jkb24gQmF5IFByb3ZpbmNpYWwgUGFyayIRCg8xMjQ1OTgwMDAw + MjkwNDIiEwoRRnJlbmNoIEJlYWNoIFBhcmsiEQoPMTI0NTk5MDAwNTQ1NzUzIi0KK1BhY2lmaWMg + UmltIE5hdGlvbmFsIFBhcmsgUmVzZXJ2ZSBvZiBDYW5hZGEiEQoPMTI0NTk5MDAyNjc3MzY1IhwK + GkdvbGRzdHJlYW0gUHJvdmluY2lhbCBQYXJrIhEKDzg0MDUzOTAwMDUyMTEwMSIXChVPbHltcGlj + IE5hdGlvbmFsIFBhcmsogCB4AhrPAwoSTmF0aW9uYWwgcGFyayBuYW1lEhESBgAAAQECAhgBIgUJ + 2j+zAhIREgYAAAEDAgQYASIFCfQ6vAESERIGAAABBQIGGAEiBQnoPY4JEhESBgAAAQcCCBgBIgUJ + +iqZARIREgYAAAEJAgoYASIFCaZC0AcSERIGAAABCwIMGAEiBQn+QJAQGgRpY29uGgJpZBoEbmFt + ZSIDIKkBIhEKDzEyNDU5ODAwMDAyOTA1MiIiCiBSb2JlcnRzIE1lbW9yaWFsIFByb3ZpbmNpYWwg + UGFyayIRCg8xMjQ1OTcwMDAwMDE4MDAiHAoaR29yZG9uIEJheSBQcm92aW5jaWFsIFBhcmsiEQoP + MTI0NTk4MDAwMDI5MDQyIhMKEUZyZW5jaCBCZWFjaCBQYXJrIhEKDzEyNDU5OTAwMDU0NTc1MyIt + CitQYWNpZmljIFJpbSBOYXRpb25hbCBQYXJrIFJlc2VydmUgb2YgQ2FuYWRhIhEKDzEyNDU5OTAw + MjY3NzM2NSIcChpHb2xkc3RyZWFtIFByb3ZpbmNpYWwgUGFyayIRCg84NDA1MzkwMDA1MjExMDEi + FwoVT2x5bXBpYyBOYXRpb25hbCBQYXJrKIAgeAIakwUKEVBvaW50IG9mIEludGVyZXN0EiEI/Jqg + 3KOqHBIOAAABAQICAwMEBAUFBgYYASIFCdo/swISIQiIsrP/n6ocEg4AAAEBAgIDBwQIBQUGBhgB + IgUJ9Dq8ARIhCPKaoNyjqhwSDgAAAQECAgMJBAoFBQYGGAEiBQnoPY4JEiEI2fOquaeqHBIOAAAB + AQICAwsEDAUFBgYYASIFCfoqmQESIQj1gK26p6ocEg4AAAEBAgIDDQQOBQUGBhgBIgUJpkLQBxIi + CI2Dr+Tzjr8BEg4AAAEBAgIDDwQQBQUGBhgBIgUJ/kCQEBoIY2F0ZWdvcnkaC2NhdGVnb3J5X2lk + GgRpY29uGgJpZBoEbmFtZRoIcHJpb3JpdHkaC3N1YmNhdGVnb3J5IhgKFlBhcmsgJiBSZWNyZWF0 + aW9uIEFyZWEiBSDYtLsEIgMgqQEiEQoPMTI0NTk4MDAwMDI5MDUyIiIKIFJvYmVydHMgTWVtb3Jp + YWwgUHJvdmluY2lhbCBQYXJrIgIgPCIPCg1OYXRpb25hbCBQYXJrIhEKDzEyNDU5NzAwMDAwMTgw + MCIcChpHb3Jkb24gQmF5IFByb3ZpbmNpYWwgUGFyayIRCg8xMjQ1OTgwMDAwMjkwNDIiEwoRRnJl + bmNoIEJlYWNoIFBhcmsiEQoPMTI0NTk5MDAwNTQ1NzUzIi0KK1BhY2lmaWMgUmltIE5hdGlvbmFs + IFBhcmsgUmVzZXJ2ZSBvZiBDYW5hZGEiEQoPMTI0NTk5MDAyNjc3MzY1IhwKGkdvbGRzdHJlYW0g + UHJvdmluY2lhbCBQYXJrIhEKDzg0MDUzOTAwMDUyMTEwMSIXChVPbHltcGljIE5hdGlvbmFsIFBh + cmsogCB4Ag== + headers: + cache-control: + - max-age=86400 + content-length: + - '12262' + content-type: + - application/vnd.mapbox-vector-tile + copyright: + - 2022 TomTom + date: + - Fri, 22 Jul 2022 06:40:18 GMT + etag: + - W/"8965532552c70374d66b13cefe06beb809bf7ce411d3bff917e723f7ba01e0f356d045f05b565b0341e57d4373f10a6d" + expires: + - Sat, 23 Jul 2022 06:40:18 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-azuremaps-region: + - West US 2 + x-msedge-ref: + - 'Ref A: F4013D3EF1CD469883426CAB05497665 Ref B: TPE30EDGE0708 Ref C: 2022-07-22T06:40:18Z' + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tileset.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tileset.yaml new file mode 100644 index 000000000000..2ab48c82415b --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tileset.yaml @@ -0,0 +1,45 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) + subscription-key: + - + x-ms-client-id: + - + method: GET + uri: https://atlas.microsoft.com/map/tileset?api-version=2.1&tilesetId=microsoft.base + response: + body: + string: '{"tilejson":"2.2.0","name":"microsoft.base","version":"1.0.0","attribution":"©2022 TomTom","scheme":"xyz","tiles":["https://atlas.microsoft.com/map/tile?api-version=2.1&tilesetId=microsoft.base&zoom={z}&x={x}&y={y}"],"grids":[],"data":[],"minzoom":0,"maxzoom":22,"bounds":[-180.0,-90.0,180.0,90.0]}' + headers: + content-length: + - '365' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 22 Jul 2022 06:40:18 GMT + expires: + - Fri, 29 Jul 2022 06:40:19 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-azuremaps-region: + - West US 2 + x-msedge-ref: + - 'Ref A: 31F23EFA999C49A4B64A7CAEF7916397 Ref B: TPE30EDGE0908 Ref C: 2022-07-22T06:40:19Z' + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/maps/azure-maps-render/tests/test_client_e2e.py b/sdk/maps/azure-maps-render/tests/test_client_e2e.py index dd4e852705d0..03bb49d83f23 100644 --- a/sdk/maps/azure-maps-render/tests/test_client_e2e.py +++ b/sdk/maps/azure-maps-render/tests/test_client_e2e.py @@ -1,4 +1,3 @@ -import os import sys import pytest @@ -45,11 +44,68 @@ def setUp(self): @pytest.mark.live_test_only def test_get_map_tile(self): - result = self.client.get_map_tile(tileset_id=TilesetID.MICROSOFT_BASE, tile_index_z=6, tile_index_x=9, tile_index_y=22, tile_size="512") + result = self.client.get_map_tile( + tileset_id=TilesetID.MICROSOFT_BASE, + tile_index_z=6, + tile_index_x=9, + tile_index_y=22, + tile_size="512" + ) + import types + assert isinstance(result, types.GeneratorType) + + + @pytest.mark.live_test_only + def test_get_map_tileset(self): + result = self.client.get_map_tileset(tileset_id=TilesetID.MICROSOFT_BASE) + assert result.name == "microsoft.base" + assert "TomTom" in result.attribution + assert len(result.tiles) > 0 + + + @pytest.mark.live_test_only + def test_get_map_attribution(self): + result = self.client.get_map_attribution( + tileset_id=TilesetID.MICROSOFT_BASE, + zoom=6, + bounds=BoundingBox(bottom_left=(LatLon(42.982261, 24.980233)), top_right=(LatLon(56.526017, 1.355233))) + ) + assert len(result.copyrights) > 0 - assert len(result.results) > 0 - top_answer = result.results[0] + @pytest.mark.live_test_only + def test_get_copyright_from_bounding_box(self): + result = self.client.get_copyright_from_bounding_box( + bounding_box=BoundingBox(bottom_left=LatLon(52.41064,4.84228), top_right=LatLon(52.41072,4.84239)) + ) + assert len(result.general_copyrights) > 0 + copyrights = result.general_copyrights[0] + assert "TomTom" in copyrights + assert len(result.regions) > 0 + + + @pytest.mark.live_test_only + def test_get_copyright_for_tile(self): + result = self.client.get_copyright_for_tile(tile_index_z=6, tile_index_x=9, tile_index_y=22) + assert len(result.general_copyrights) > 0 + copyrights = result.general_copyrights[0] + assert "TomTom" in copyrights + + + @pytest.mark.live_test_only + def test_get_copyright_caption(self): + result = self.client.get_copyright_caption() + assert result.copyrights_caption is not None + assert "TomTom" in result.copyrights_caption + + + @pytest.mark.live_test_only + def test_get_copyright_for_world(self): + result = self.client.get_copyright_for_world() + assert len(result.general_copyrights) > 0 + copyrights = result.general_copyrights[0] + assert "TomTom" in copyrights + assert len(result.regions) > 0 if __name__ == "__main__" : diff --git a/sdk/maps/azure-maps-render/tests/test_client_unit.py b/sdk/maps/azure-maps-render/tests/test_client_unit.py index 6e6900b1c106..3a0a9cce6bdc 100644 --- a/sdk/maps/azure-maps-render/tests/test_client_unit.py +++ b/sdk/maps/azure-maps-render/tests/test_client_unit.py @@ -1,4 +1,3 @@ -import os import sys import pytest try: @@ -8,10 +7,9 @@ from devtools_testutils import AzureTestCase from azure.core.pipeline.transport import HttpTransport, HttpResponse -from azure.core.exceptions import HttpResponseError -from azure.core.pipeline.policies import AzureKeyCredentialPolicy +from azure.core.credentials import AzureKeyCredential from azure.maps.render import MapsRenderClient -from azure.maps.render.models import LatLon +from azure.maps.render.models import LatLon, TilesetID, BoundingBox # cSpell:disable @@ -36,8 +34,7 @@ def send(self, request, **kwargs): # type: (PipelineRequest, Any) -> PipelineRe return response def create_mock_client(status_code=0, body=None, **kwargs): - return RenderClient(credential="NotUsed", - authentication_policy = Mock(AzureKeyCredentialPolicy), + return MapsRenderClient(credential= Mock(AzureKeyCredential), transport=MockTransport(status_code, body, **kwargs)) class AzureMapsRenderClientUnitTest(AzureTestCase): @@ -47,9 +44,46 @@ def __init__(self, *args, **kwargs): def setUp(self): super(AzureMapsRenderClientUnitTest, self).setUp() + def test_get_map_tile_invalid_index_y(self): + client = create_mock_client() + with pytest.raises(TypeError): + client.get_map_tile( + tileset_id=TilesetID.MICROSOFT_BASE, + tile_index_z=6, + tile_index_x=9, + tile_index_y="two", + tile_size="512" + ) + def test_get_map_tileset_invalid_tileset_id(self): + client = create_mock_client() + with pytest.raises(TypeError): + client.get_map_tileset() + def test_get_map_attribution_invalid_zoom(self): + client = create_mock_client() + with pytest.raises(TypeError): + client.get_map_attribution( + tileset_id=TilesetID.MICROSOFT_BASE, + zoom="six", + bounds=BoundingBox(bottom_left=(LatLon(42.982261, 24.980233)), top_right=(LatLon(56.526017, 1.355233))) + ) + def test_get_copyright_from_bounding_box_invalid_LatLon(self): + client = create_mock_client() + with pytest.raises(TypeError): + client.get_copyright_from_bounding_box( + bounding_box=BoundingBox(bottom_left=LatLon("random"), top_right=LatLon(52.41072,4.84239)) + ) + + def test_get_copyright_for_tile_invalid_index_x(self): + client = create_mock_client() + with pytest.raises(TypeError): + client.get_copyright_for_tile( + tile_index_z=6, + tile_index_x="nine", + tile_index_y="two" + ) if __name__ == "__main__" : testArgs = [ "-v" , "-s" ] if len(sys.argv) == 1 else sys.argv[1:] diff --git a/sdk/maps/test-resources.json b/sdk/maps/test-resources.json index c0693fc30cf6..cf31c5e5a822 100644 --- a/sdk/maps/test-resources.json +++ b/sdk/maps/test-resources.json @@ -101,4 +101,4 @@ "value": "[resourceGroup().Name]" } } -} +} \ No newline at end of file diff --git a/shared_requirements.txt b/shared_requirements.txt index b24384a29580..099e10d39e2c 100644 --- a/shared_requirements.txt +++ b/shared_requirements.txt @@ -24,7 +24,6 @@ azure-keyvault==4.0.0b5 azure-keyvault-secrets~=4.0 azure-keyvault-keys~=4.0 azure-loganalytics~=0.1.0 -azure-maps-nspkg~=3.0.2 azure-mgmt~=4.0 azure-mgmt-advisor~=1.0 azure-mgmt-applicationinsights~=0.1.1 @@ -131,10 +130,13 @@ avro>=1.11.0 pyjwt>=1.7.1 chardet<5,>=3.0.2 <<<<<<< HEAD +<<<<<<< HEAD yarl<2.0,>=1.0 ======= azure-maps-nspkg~=3.0.2 >>>>>>> 3cb788f927 (init PR) +======= +>>>>>>> 658596fc2d (Add Unit/Live test) #override azure-core typing-extensions>=4.0.1 #override azure-search-documents typing-extensions>=3.7.4.3 #override azure azure-keyvault~=1.0 From 15ec96462df7752a2fa54e121f2a0101c71fc8df Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Mon, 5 Sep 2022 16:50:21 +0800 Subject: [PATCH 04/14] Update according to feedback --- sdk/maps/azure-maps-render/README.md | 11 +- .../azure/maps/render/_base_client.py | 13 +- .../azure/maps/render/_render_client.py | 152 +- .../maps/render/aio/_base_client_async.py | 12 +- .../maps/render/aio/_render_client_async.py | 140 +- .../azure/maps/render/models/__init__.py | 2 + .../azure/maps/render/models/_models.py | 80 +- .../sample_get_copyright_caption_async.py | 12 - .../sample_get_copyright_for_tile_async.py | 12 - .../sample_get_copyright_for_world_async.py | 12 - ...e_get_copyright_from_bounding_box_async.py | 23 +- .../sample_get_map_attribution_async.py | 25 +- .../sample_get_map_static_image_async.py | 4 + .../sample_get_map_tileset_async.py | 12 - .../samples/sample_get_copyright_caption.py | 12 - .../samples/sample_get_copyright_for_tile.py | 12 - .../samples/sample_get_copyright_for_world.py | 12 - .../sample_get_copyright_from_bounding_box.py | 21 +- .../samples/sample_get_map_attribution.py | 21 +- .../samples/sample_get_map_static_image.py | 6 +- .../samples/sample_get_map_tileset.py | 12 - ....test_get_copyright_from_bounding_box.yaml | 1705 ++++++++++++++++- ...t_client_e2e.test_get_map_attribution.yaml | 4 +- .../tests/test_client_e2e.py | 6 +- .../tests/test_client_unit.py | 32 +- 25 files changed, 1933 insertions(+), 420 deletions(-) diff --git a/sdk/maps/azure-maps-render/README.md b/sdk/maps/azure-maps-render/README.md index 3ac49ea47f57..843460abdb05 100644 --- a/sdk/maps/azure-maps-render/README.md +++ b/sdk/maps/azure-maps-render/README.md @@ -117,8 +117,10 @@ result = maps_render_client.get_map_attribution( tileset_id=TilesetID.MICROSOFT_BASE, zoom=6, bounds=BoundingBox( - bottom_left=(LatLon(42.982261, 24.980233)), - top_right=(LatLon(56.526017, 1.355233)) + south=42.982261, + west=24.980233, + north=56.526017, + east=1.355233 ) ) ``` @@ -158,11 +160,16 @@ This request will provide the static image service renders a user-defined, recta using a zoom level from 0 to 20. The static image service renders a user-defined, rectangular image containing a map section using a zoom level from 0 to 20. +And also save the result to file as png. ```python from azure.maps.render import MapsRenderClient result = maps_render_client.get_map_static_image(img_format="png", center=(52.41064,4.84228)) +# Save result to file as png +file = open('result.png', 'wb') +file.write(next(result)) +file.close() ``` ### Get Maps Copyright for World diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py index cf5d023d0dd5..8570e849014b 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py @@ -3,13 +3,11 @@ # Licensed under the MIT License. # ------------------------------------ -from typing import Union, TYPE_CHECKING +from typing import Union, Any from azure.core.pipeline.policies import AzureKeyCredentialPolicy -from azure.core.credentials import AzureKeyCredential +from azure.core.credentials import AzureKeyCredential, TokenCredential from ._generated import RenderClient as _MapsRenderClient from ._version import API_VERSION -if TYPE_CHECKING: - from azure.core.credentials import TokenCredential # To check the credential is either AzureKeyCredential or TokenCredential def _authentication_policy(credential): @@ -30,10 +28,9 @@ def _authentication_policy(credential): class MapsRenderClientBase: def __init__( self, - credential, #type: Union[AzureKeyCredential, TokenCredential] - **kwargs #type Any - ): - # type: (...) -> None + credential: Union[AzureKeyCredential, TokenCredential], + **kwargs: Any + ) -> None: self._maps_client = _MapsRenderClient( credential=credential, # type: ignore diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py index acd213956c71..710662bc88e2 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py @@ -7,22 +7,20 @@ from typing import TYPE_CHECKING, overload, Union, Any, List, Optional, Iterator from azure.core.tracing.decorator import distributed_trace from azure.core.exceptions import HttpResponseError -from azure.core.credentials import AzureKeyCredential - +from azure.core.credentials import AzureKeyCredential, TokenCredential +from azure.core.polling import LROPoller from ._base_client import MapsRenderClientBase -from ._generated.models import ( - TilesetID -) + from .models import ( LatLon, - BoundingBox + BoundingBox, + TilesetID, + Copyright, + MapTileset, + MapAttribution, + CopyrightCaption, + RasterTileFormat ) -if TYPE_CHECKING: - from azure.core.credentials import TokenCredential - from azure.core.polling import LROPoller - -if TYPE_CHECKING: - from azure.core.credentials import TokenCredential class MapsRenderClient(MapsRenderClientBase): """Azure Maps Render REST APIs. @@ -36,11 +34,9 @@ class MapsRenderClient(MapsRenderClientBase): """ def __init__( self, - credential, # type: Union[AzureKeyCredential, TokenCredential] - **kwargs # type: Any - ): - # type: (...) -> None - + credential: Union[AzureKeyCredential, TokenCredential], + **kwargs: Any + ) -> None: super().__init__( credential=credential, **kwargs ) @@ -48,13 +44,12 @@ def __init__( @distributed_trace def get_map_tile( self, - tileset_id, # type: Union[str, TilesetID] - tile_index_z, # type: int - tile_index_x, # type: int - tile_index_y, # type: int - **kwargs # type: Any - ): - # type: (...) -> Iterator[bytes] + tileset_id: Union[str, TilesetID], + tile_index_z: int, + tile_index_x: int, + tile_index_y: int, + **kwargs: Any + ) -> Iterator[bytes]: """The Get Map Tiles API allows users to request map tiles in vector or raster formats typically to be integrated into a map control or SDK. Some example tiles that can be requested are Azure Maps road tiles, real-time Weather Radar tiles. By default, Azure Maps uses vector tiles for its web map @@ -107,10 +102,9 @@ def get_map_tile( @distributed_trace def get_map_tileset( self, - tileset_id, # type: Union[str, TilesetID] - **kwargs # type: Any - ): - # type: (...) -> models.MapTileset + tileset_id: Union[str, TilesetID], + **kwargs: Any + ) -> MapTileset: """The Get Map Tileset API allows users to request metadata for a tileset. :param tileset_id: @@ -132,12 +126,11 @@ def get_map_tileset( @distributed_trace def get_map_attribution( self, - tileset_id, # type: Union[str, "models.TilesetID"] - zoom, #type: int - bounds, # type: BoundingBox - **kwargs # type: Any - ): - # type: (...) -> models.MapAttribution + tileset_id: Union[str, TilesetID], + zoom: int, + bounds: BoundingBox, + **kwargs: Any + ) -> MapAttribution: """The Get Map Attribution API allows users to request map copyright attribution information for a section of a tileset. @@ -150,20 +143,19 @@ def get_map_attribution( Zoom level for the desired map attribution. :type zoom: int :param bounds: - The string that represents the rectangular area of a bounding box. The bounds - parameter is defined by the 4 bounding box coordinates, with WGS84 longitude and latitude of - the southwest corner which is "bottom_left" followed by - WGS84 longitude and latitude of the northeast corner which is "top_right". + north(top), west(left), south(bottom), east(right) + position of the bounding box as float. + E.g. BoundingBox(west=37.553, south=-122.453, east=33.2, north=57) :type bounds: BoundingBox :return: MapAttribution :rtype: ~azure.maps.render.models.MapAttribution :raises ~azure.core.exceptions.HttpResponseError: """ bounds=[ - bounds.bottom_left.lat, - bounds.bottom_left.lon, - bounds.top_right.lat, - bounds.top_right.lon + bounds.south, + bounds.west, + bounds.north, + bounds.east ] return self._render_client.get_map_attribution( @@ -176,13 +168,12 @@ def get_map_attribution( @distributed_trace def get_map_state_tile( self, - stateset_id, # type: str - tile_index_z, # type: int - tile_index_x, # type: int - tile_index_y, # type: int - **kwargs # type: Any - ): - # type: (...) -> Iterator[bytes] + stateset_id: str, + tile_index_z: int, + tile_index_x: int, + tile_index_y: int, + **kwargs: Any + ) -> Iterator[bytes]: """Fetches state tiles in vector format typically to be integrated into indoor maps module of map control or SDK. @@ -215,9 +206,8 @@ def get_map_state_tile( @distributed_trace def get_copyright_caption( self, - **kwargs # type: Any - ): - # type: (...) -> "models.CopyrightCaption" + **kwargs: Any + ) -> CopyrightCaption: """Copyrights API is designed to serve copyright information for Render Tile service. In addition to basic copyright for the whole map, API is serving specific groups of copyrights for some countries. @@ -237,10 +227,9 @@ def get_copyright_caption( @distributed_trace def get_map_static_image( self, - img_format, # type Union[str, "models.RasterTileFormat"] - **kwargs # type: Any - ): - # type: (...) -> Iterator[bytes] + img_format: Union[str, RasterTileFormat], + **kwargs: Any + ) -> Iterator[bytes]: """ The static image service renders a user-defined, rectangular image containing a map section using a zoom level from 0 to 20. The static image service renders a user-defined, rectangular image containing a map section using a zoom level from 0 to 20. The supported resolution range @@ -264,10 +253,11 @@ def get_map_static_image( :paramtype zoom: int :keyword center: Coordinates of the center point. - :paramtype center: BoundingBox - :keyword bounding_box_private: - Bounding box. - :paramtype bounding_box_private: BoundingBox + :paramtype center: LatLon + :keyword BoundingBox bounding_box_private: + north(top), west(left), south(bottom), east(right) + position of the bounding box as float. + E.g. BoundingBox(west=37.553, south=-122.453, east=33.2, north=57) :keyword height: Height of the resulting image in pixels. Range is 1 to 8192. :paramtype height: int @@ -293,23 +283,35 @@ def get_map_static_image( :rtype: Iterator[bytes] :raises ~azure.core.exceptions.HttpResponseError: """ + + _center=kwargs.pop("center", None) + if _center is not None: + _center = [_center[0], _center[1]] + + _bbox = kwargs.pop("bounding_box_private", None) + if _bbox is not None: + _bbox = f"{_bbox.south}, {_bbox.west}, {_bbox.north}, {_bbox.east}" + return self._render_client.get_map_static_image( format=img_format, + center=_center, + bounding_box_private=_bbox, **kwargs ) @distributed_trace def get_copyright_from_bounding_box( self, - bounding_box, #type: BoundingBox - **kwargs # type: Any - ): - # type: (...) -> "models.Copyright" + bounding_box: BoundingBox, + **kwargs: Any + ) -> Copyright: """Returns copyright information for a given bounding box. Bounding-box requests should specify the minimum and maximum longitude and latitude (EPSG-3857) coordinates. :param bounding_box: - Position of the south_west and north_east as boundingbox type. + north(top), west(left), south(bottom), east(right) + position of the bounding box as float. + E.g. BoundingBox(west=37.553, south=-122.453, east=33.2, north=57) :type: BoundingBox :keyword include_text: True or False to exclude textual data from response. Only images and @@ -323,8 +325,8 @@ def get_copyright_from_bounding_box( _include_text=kwargs.pop("include_text", True) return self._render_client.get_copyright_from_bounding_box( - south_west=(bounding_box.bottom_left.lat,bounding_box.bottom_left.lon), - north_east=(bounding_box.top_right.lat,bounding_box.top_right.lon), + south_west=(bounding_box.south,bounding_box.west), + north_east=(bounding_box.north,bounding_box.east), include_text= "yes" if _include_text else "no", **kwargs ) @@ -332,12 +334,11 @@ def get_copyright_from_bounding_box( @distributed_trace def get_copyright_for_tile( self, - tile_index_z, # type: int - tile_index_x, # type: int - tile_index_y, # type: int - **kwargs # type: Any - ): - # type: (...) -> "models.Copyright" + tile_index_z: int, + tile_index_x: int, + tile_index_y: int, + **kwargs: Any + ) -> Copyright: """Copyrights API is designed to serve copyright information for Render Tile service. In addition to basic copyright for the whole map, API is serving specific groups of copyrights for some countries. @@ -376,9 +377,8 @@ def get_copyright_for_tile( @distributed_trace def get_copyright_for_world( self, - **kwargs # type: Any - ): - # type: (...) -> "models.Copyright" + **kwargs: Any + ) -> Copyright: """Copyrights API is designed to serve copyright information for Render Tile service. In addition to basic copyright for the whole map, API is serving specific groups of copyrights for some countries. diff --git a/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py b/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py index c8959c9e1dbd..7eb033e35437 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py @@ -3,13 +3,12 @@ # Licensed under the MIT License. # ------------------------------------ -from typing import Union, TYPE_CHECKING +from typing import Union, Any from azure.core.pipeline.policies import AzureKeyCredentialPolicy from azure.core.credentials import AzureKeyCredential +from azure.core.credentials_async import AsyncTokenCredential from .._generated.aio import RenderClient as _MapsRenderClient from .._version import API_VERSION -if TYPE_CHECKING: - from azure.core.credentials_async import AsyncTokenCredential def _authentication_policy(credential): authentication_policy = None @@ -29,10 +28,9 @@ def _authentication_policy(credential): class AsyncMapsRenderClientBase: def __init__( self, - credential, #type: Union[AzureKeyCredential, AsyncTokenCredential] - **kwargs #type: Any - ): - # type: (...) -> None + credential: Union[AzureKeyCredential, AsyncTokenCredential], + **kwargs: Any + ) -> None: self._maps_client = _MapsRenderClient( credential=credential, # type: ignore diff --git a/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py index b7796009e3db..6dbbf17ad599 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py @@ -5,22 +5,25 @@ # --------------------------------------------------------------------- # pylint: disable=unused-import,ungrouped-imports, R0904, C0302 -from typing import TYPE_CHECKING, overload, Iterator +from typing import Iterator, Any, Union from azure.core.tracing.decorator_async import distributed_trace_async from azure.core.exceptions import HttpResponseError from azure.core.credentials import AzureKeyCredential +from azure.core.credentials_async import AsyncTokenCredential from ._base_client_async import AsyncMapsRenderClientBase from ..models import ( LatLon, - BoundingBox + BoundingBox, + TilesetID, + Copyright, + MapTileset, + MapAttribution, + CopyrightCaption, + RasterTileFormat ) -if TYPE_CHECKING: - from typing import Any, List, Union, Optional - from azure.core.credentials_async import AsyncTokenCredential - # By default, use the latest supported API version class MapsRenderClient(AsyncMapsRenderClientBase): @@ -35,10 +38,9 @@ class MapsRenderClient(AsyncMapsRenderClientBase): """ def __init__( self, - credential, # type: Union[AzureKeyCredential, AsyncTokenCredential] - **kwargs # type: Any - ): - # type: (...) -> None + credential: Union[AzureKeyCredential, AsyncTokenCredential], + **kwargs: Any + ) -> None: super().__init__( credential=credential, **kwargs ) @@ -46,13 +48,12 @@ def __init__( @distributed_trace_async async def get_map_tile( self, - tileset_id, # type: Union[str, TilesetID] - tile_index_z, # type: int - tile_index_x, # type: int - tile_index_y, # type: int - **kwargs # type: Any - ): - # type: (...) -> Iterator[bytes] + tileset_id: Union[str, TilesetID], + tile_index_z: int, + tile_index_x: int, + tile_index_y: int, + **kwargs: Any + ) -> Iterator[bytes]: """The Get Map Tiles API allows users to request map tiles in vector or raster formats typically to be integrated into a map control or SDK. Some example tiles that can be requested are Azure Maps road tiles, real-time Weather Radar tiles. By default, Azure Maps uses vector tiles for its web map @@ -105,10 +106,9 @@ async def get_map_tile( @distributed_trace_async async def get_map_tileset( self, - tileset_id, # type: Union[str, TilesetID] - **kwargs # type: Any - ): - # type: (...) -> models.MapTileset + tileset_id: Union[str, TilesetID], + **kwargs: Any + ) -> MapTileset: """The Get Map Tileset API allows users to request metadata for a tileset. :param tileset_id: @@ -130,12 +130,11 @@ async def get_map_tileset( @distributed_trace_async async def get_map_attribution( self, - tileset_id, # type: Union[str, TilesetID] - zoom, #type: int - bounds, # type: BoundingBox - **kwargs # type: Any - ): - # type: (...) -> models.MapAttribution + tileset_id: Union[str, TilesetID], + zoom: int, + bounds: BoundingBox, + **kwargs: Any + ) -> MapAttribution: """The Get Map Attribution API allows users to request map copyright attribution information for a section of a tileset. @@ -148,19 +147,19 @@ async def get_map_attribution( Zoom level for the desired map attribution. :type zoom: int :param bounds: - The string that represents the rectangular area of a bounding box. The bounds - parameter is defined by the 4 bounding box coordinates, with WGS84 longitude and latitude of - the southwest corner followed by WGS84 longitude and latitude of the northeast corner. + north(top), west(left), south(bottom), east(right) + position of the bounding box as float. + E.g. BoundingBox(west=37.553, south=-122.453, east=33.2, north=57) :type bounds: BoundingBox :return: MapAttribution :rtype: ~azure.maps.render.models.MapAttribution :raises ~azure.core.exceptions.HttpResponseError: """ bounds=[ - bounds.bottom_left.lat, - bounds.bottom_left.lon, - bounds.top_right.lat, - bounds.top_right.lon + bounds.south, + bounds.west, + bounds.north, + bounds.east ] return await self._render_client.get_map_attribution( @@ -173,13 +172,12 @@ async def get_map_attribution( @distributed_trace_async async def get_map_state_tile( self, - stateset_id, # type: str - tile_index_z, # type: int - tile_index_x, # type: int - tile_index_y, # type: int - **kwargs # type: Any - ): - # type: (...) -> Iterator[bytes] + stateset_id: str, + tile_index_z: int, + tile_index_x: int, + tile_index_y: int, + **kwargs: Any + ) -> Iterator[bytes]: """Fetches state tiles in vector format typically to be integrated into indoor maps module of map control or SDK. @@ -211,9 +209,8 @@ async def get_map_state_tile( @distributed_trace_async async def get_copyright_caption( self, - **kwargs # type: Any - ): - # type: (...) -> "models.CopyrightCaption" + **kwargs: Any + ) -> CopyrightCaption: """Copyrights API is designed to serve copyright information for Render Tile service. In addition to basic copyright for the whole map, API is serving specific groups of copyrights for some countries. @@ -232,10 +229,9 @@ async def get_copyright_caption( @distributed_trace_async async def get_map_static_image( self, - img_format, # type Union[str, "models.RasterTileFormat"] - **kwargs # type: Any - ): - # type: (...) -> Iterator[bytes] + img_format: Union[str, RasterTileFormat], + **kwargs: Any + ) -> Iterator[bytes]: """ The static image service renders a user-defined, rectangular image containing a map section using a zoom level from 0 to 20. The static image service renders a user-defined, rectangular image containing a map section using a zoom level from 0 to 20. The supported resolution range @@ -260,9 +256,10 @@ async def get_map_static_image( :keyword center: Coordinates of the center point. :paramtype center: Latlon - :keyword bounding_box_private: - Bounding box. - :paramtype bounding_box_private: BoundingBox + :keyword BoundingBox bounding_box_private: + north(top), west(left), south(bottom), east(right) + position of the bounding box as float. + E.g. BoundingBox(west=37.553, south=-122.453, east=33.2, north=57) :keyword height: Height of the resulting image in pixels. Range is 1 to 8192. :paramtype height: int @@ -288,23 +285,34 @@ async def get_map_static_image( :rtype: Iterator[bytes] :raises ~azure.core.exceptions.HttpResponseError: """ + _center=kwargs.pop("center", None) + if _center is not None: + _center = f"{_center[0]}, {_center[1]}" + + _bbox = kwargs.pop("bounding_box_private", None) + if _bbox is not None: + _bbox = f"{_bbox.south}, {_bbox.west}, {_bbox.north}, {_bbox.east}" + return await self._render_client.get_map_static_image( format=img_format, + center=_center, + bounding_box_private=_bbox, **kwargs ) @distributed_trace_async async def get_copyright_from_bounding_box( self, - bounding_box, #type: BoundingBox - **kwargs # type: Any - ): - # type: (...) -> "models.Copyright" + bounding_box: BoundingBox, + **kwargs: Any + ) -> Copyright: """Returns copyright information for a given bounding box. Bounding-box requests should specify the minimum and maximum longitude and latitude (EPSG-3857) coordinates. :param bounding_box: - Position of the south_west and north_east as boundingbox type. + north(top), west(left), south(bottom), east(right) + position of the bounding box as float. + E.g. BoundingBox(west=37.553, south=-122.453, east=33.2, north=57) :type: BoundingBox :keyword include_text: True or False to exclude textual data from response. Only images and @@ -318,20 +326,19 @@ async def get_copyright_from_bounding_box( return await self._render_client.get_copyright_from_bounding_box( include_text= "yes" if _include_text else "no", - south_west=(bounding_box.bottom_left.lat,bounding_box.bottom_left.lon), - north_east=(bounding_box.top_right.lat,bounding_box.top_right.lon), + south_west=(bounding_box.south,bounding_box.west), + north_east=(bounding_box.north,bounding_box.east), **kwargs ) @distributed_trace_async async def get_copyright_for_tile( self, - tile_index_z, # type: int - tile_index_x, # type: int - tile_index_y, # type: int - **kwargs # type: Any - ): - # type: (...) -> "models.Copyright" + tile_index_z: int, + tile_index_x: int, + tile_index_y: int, + **kwargs: Any + ) -> Copyright: """Copyrights API is designed to serve copyright information for Render Tile service. In addition to basic copyright for the whole map, API is serving specific groups of copyrights for some countries. @@ -369,9 +376,8 @@ async def get_copyright_for_tile( @distributed_trace_async async def get_copyright_for_world( self, - **kwargs # type: Any - ): - # type: (...) -> "models.Copyright" + **kwargs: Any + ) -> Copyright: """Copyrights API is designed to serve copyright information for Render Tile service. In addition to basic copyright for the whole map, API is serving specific groups of copyrights for some countries. diff --git a/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py index f2fc1c7312fe..f0498076dc92 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py @@ -8,6 +8,7 @@ CopyrightCaption, StaticMapLayer, Copyright, + RasterTileFormat, RegionCopyrights, RegionCopyrightsCountry ) @@ -29,6 +30,7 @@ 'CopyrightCaption', 'StaticMapLayer', 'Copyright', + 'RasterTileFormat', 'RegionCopyrights', 'RegionCopyrightsCountry', ] diff --git a/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py index dc16cf527393..65d2495c3d47 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py @@ -4,53 +4,33 @@ # ------------------------------------ # pylint: disable=unused-import,ungrouped-imports, C0302, C0203 -from typing import List, Optional, Union -import msrest.serialization - - -class LatLon(object): - - def __init__( - self, - lat: float = None, - lon: float = None - ): - self._lat = lat - self._lon = lon - - @property - def lat(self) -> float: - return self._lat - - @lat.setter - def lat(self, value: float) -> None: - self._lat = value - - @property - def lon(self) -> float: - return self._lon - - @lon.setter - def lon(self, value: float) -> None: - self._lon = value - - -class BoundingBox(object): - - def __init__( - self, - top_left: LatLon = LatLon(), - bottom_right: LatLon = LatLon(), - top_right: LatLon = LatLon(), - bottom_left: LatLon = LatLon() - ): - self.top_left = top_left - self.bottom_right = bottom_right - self.top = top_left.lat - self.bottom = bottom_right.lat - self.left = top_left.lon - self.right = bottom_right.lon - self.top_right = top_right if top_right else LatLon( - top_left.lat, bottom_right.lon) - self.bottom_left = bottom_left if bottom_left else LatLon( - bottom_right.lat, top_left.lon) +from typing import NamedTuple + +class LatLon(NamedTuple): + """Represents coordinate latitude and longitude + + :keyword lat: The coordinate as latitude. + :paramtype lat: float + :keyword lon: The coordinate as longitude. + :paramtype lon: float + """ + lat: float = 0 + lon: float = 0 + + +class BoundingBox(NamedTuple): + """Represents information about the coordinate range + + :keyword west: The westmost value of coordinates. + :paramtype west: float + :keyword south: The southmost value of coordinates. + :paramtype south: float + :keyword east: The eastmost value of coordinates. + :paramtype east: float + :keyword north: The northmost value of coordinates. + :paramtype north: float + """ + west: float = 0.0 + south: float = 0.0 + east: float = 0.0 + north: float = 0.0 diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_caption_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_caption_async.py index ed42fb2e9295..bd4f08b01651 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_caption_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_caption_async.py @@ -20,15 +20,6 @@ import asyncio import os -import json - -def to_json(self): - return json.dumps( - self, - default=lambda o: o.__dict__, - sort_keys=True, - indent=4 - ) subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") @@ -44,9 +35,6 @@ async def get_copyright_caption_async(): print("Get copyright caption result:") print(result) - print("------------------------------") - print("Get copyright caption result in Json format:") - print(to_json(result)) # [END get_copyright_caption_async] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py index b8b9d05b94ef..9c84e5a8fe0c 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py @@ -21,15 +21,6 @@ """ import asyncio import os -import json - -def to_json(self): - return json.dumps( - self, - default=lambda o: o.__dict__, - sort_keys=True, - indent=4 - ) subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") @@ -45,9 +36,6 @@ async def get_copyright_for_tile_async(): print("Get copyright for tile result:") print(result) - print("------------------------------") - print("Get copyright for tile result in Json format:") - print(to_json(result)) # [END get_copyright_for_tile_async] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py index 48405a46e50d..0f8110d08739 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py @@ -22,15 +22,6 @@ """ import asyncio import os -import json - -def to_json(self): - return json.dumps( - self, - default=lambda o: o.__dict__, - sort_keys=True, - indent=4 - ) subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") @@ -46,9 +37,6 @@ async def get_copyright_for_world_async(): print("Get copyright for the world result:") print(result) - print("------------------------------") - print("Get copyright for the world result in Json format:") - print(to_json(result)) # [END get_copyright_for_world_async] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py index 2344e68c8e87..a1018ba4e593 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py @@ -19,15 +19,6 @@ import asyncio import os -import json - -def to_json(self): - return json.dumps( - self, - default=lambda o: o.__dict__, - sort_keys=True, - indent=4 - ) subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") @@ -35,20 +26,22 @@ async def get_copyright_from_bounding_box_async(): # [START get_copyright_from_bounding_box_async] from azure.core.credentials import AzureKeyCredential from azure.maps.render.aio import MapsRenderClient - from azure.maps.render.models import BoundingBox, LatLon + from azure.maps.render.models import BoundingBox maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) async with maps_render_client: result = await maps_render_client.get_copyright_from_bounding_box( - bounding_box=BoundingBox(bottom_left=LatLon(52.41064,4.84228), top_right=LatLon(52.41072,4.84239)) - ) + bounding_box=BoundingBox( + south=42.982261, + west=24.980233, + north=56.526017, + east=1.355233 + ) + ) print("Get copyright from bounding box result:") print(result) - print("------------------------------") - print("Get copyright from bounding box result in Json format:") - print(to_json(result)) # [END get_copyright_from_bounding_box] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py index 83b54eb5bb43..6af9a689f337 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py @@ -18,15 +18,6 @@ """ import asyncio import os -import json - -def to_json(self): - return json.dumps( - self, - default=lambda o: o.__dict__, - sort_keys=True, - indent=4 - ) subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") @@ -34,18 +25,24 @@ async def get_map_attribution_async(): # [START get_map_attribution_async] from azure.core.credentials import AzureKeyCredential from azure.maps.render.aio import MapsRenderClient - from azure.maps.render.models import TilesetID, BoundingBox, LatLon + from azure.maps.render.models import TilesetID, BoundingBox maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) async with maps_render_client: - result = await maps_render_client.get_map_attribution(tileset_id=TilesetID.MICROSOFT_BASE, zoom=6, bounds=BoundingBox(bottom_left=(LatLon(42.982261, 24.980233)), top_right=(LatLon(56.526017, 1.355233)))) + result = await maps_render_client.get_map_attribution( + tileset_id=TilesetID.MICROSOFT_BASE, + zoom=6, + bounds=BoundingBox( + south=42.982261, + west=24.980233, + north=56.526017, + east=1.355233 + ) + ) print("Get map attribution result:") print(result) - print("------------------------------") - print("Get map tile result in Json format:") - print(to_json(result)) # [END get_map_attribution_async] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py index a6e8b774cfd9..0a5e79236082 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py @@ -32,6 +32,10 @@ async def get_map_static_image_async(): print("Get map tile result:") print(result) + # Save result to file as png + file = open('result.png', 'wb') + file.write(next(result)) + file.close() # [END get_map_static_image_async] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py index 4227e4319f9a..4540f4e5047d 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py @@ -17,15 +17,6 @@ """ import asyncio import os -import json - -def to_json(self): - return json.dumps( - self, - default=lambda o: o.__dict__, - sort_keys=True, - indent=4 - ) subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") @@ -42,9 +33,6 @@ async def get_map_tileset_async(): print("Get map tileset result:") print(result) - print("------------------------------") - print("Get map tileset result in Json format:") - print(to_json(result)) # [END get_map_tile_async] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_copyright_caption.py b/sdk/maps/azure-maps-render/samples/sample_get_copyright_caption.py index 44b68603cf20..cbd494af571e 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_copyright_caption.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_copyright_caption.py @@ -19,15 +19,6 @@ """ import os -import json - -def to_json(self): - return json.dumps( - self, - default=lambda o: o.__dict__, - sort_keys=True, - indent=4 - ) subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") @@ -42,9 +33,6 @@ def get_copyright_caption(): print("Get copyright caption result:") print(result) - print("------------------------------") - print("Get copyright caption result in Json format:") - print(to_json(result)) # [END get_copyright_caption] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_tile.py b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_tile.py index 1e44f885fc85..2938b0a25e47 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_tile.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_tile.py @@ -21,15 +21,6 @@ """ import os -import json - -def to_json(self): - return json.dumps( - self, - default=lambda o: o.__dict__, - sort_keys=True, - indent=4 - ) subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") @@ -44,9 +35,6 @@ def get_copyright_for_tile(): print("Get copyright for tile result:") print(result) - print("------------------------------") - print("Get copyright for tile result in Json format:") - print(to_json(result)) # [END get_copyright_for_tile] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py index 4a03bdc062d4..f4c340b11357 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py @@ -22,15 +22,6 @@ """ import os -import json - -def to_json(self): - return json.dumps( - self, - default=lambda o: o.__dict__, - sort_keys=True, - indent=4 - ) subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") @@ -45,9 +36,6 @@ def get_copyright_for_world(): print("Get copyright for the world result:") print(result) - print("------------------------------") - print("Get copyright for the world result in Json format:") - print(to_json(result)) # [END get_copyright_for_world] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_copyright_from_bounding_box.py b/sdk/maps/azure-maps-render/samples/sample_get_copyright_from_bounding_box.py index 89b712205a74..065e9b252720 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_copyright_from_bounding_box.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_copyright_from_bounding_box.py @@ -18,15 +18,6 @@ """ import os -import json - -def to_json(self): - return json.dumps( - self, - default=lambda o: o.__dict__, - sort_keys=True, - indent=4 - ) subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") @@ -34,19 +25,21 @@ def get_copyright_from_bounding_box(): # [START get_copyright_from_bounding_box] from azure.core.credentials import AzureKeyCredential from azure.maps.render import MapsRenderClient - from azure.maps.render.models import BoundingBox, LatLon + from azure.maps.render.models import BoundingBox maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) result = maps_render_client.get_copyright_from_bounding_box( - bounding_box=BoundingBox(bottom_left=LatLon(52.41064,4.84228), top_right=LatLon(52.41072,4.84239)) + bounding_box=BoundingBox( + south=42.982261, + west=24.980233, + north=56.526017, + east=1.355233 + ) ) print("Get copyright from bounding box result:") print(result) - print("------------------------------") - print("Get copyright from bounding box result in Json format:") - print(to_json(result)) # [END get_copyright_from_bounding_box] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py b/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py index 0f8bb8fad0b1..3c9fefe6a7bb 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py @@ -18,15 +18,6 @@ """ import os -import json - -def to_json(self): - return json.dumps( - self, - default=lambda o: o.__dict__, - sort_keys=True, - indent=4 - ) subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") @@ -34,21 +25,23 @@ def get_map_attribution(): # [START get_map_attribution] from azure.core.credentials import AzureKeyCredential from azure.maps.render import MapsRenderClient - from azure.maps.render.models import TilesetID, BoundingBox, LatLon + from azure.maps.render.models import TilesetID, BoundingBox maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) result = maps_render_client.get_map_attribution( tileset_id=TilesetID.MICROSOFT_BASE, zoom=6, - bounds=BoundingBox(bottom_left=(LatLon(42.982261, 24.980233)), top_right=(LatLon(56.526017, 1.355233))) + bounds=BoundingBox( + south=42.982261, + west=24.980233, + north=56.526017, + east=1.355233 + ) ) print("Get map attribution result:") print(result) - print("------------------------------") - print("Get map tile result in Json format:") - print(to_json(result)) # [END get_map_attribution] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py b/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py index 442c6b15a151..c2ceedda75cb 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py @@ -27,10 +27,14 @@ def get_map_static_image(): maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) - result = maps_render_client.get_map_static_image(img_format="png", center=(52.41064,4.84228)) + result = maps_render_client.get_map_static_image(img_format="png", center=(52.41064, 5.84228)) print("Get map tile result:") print(result) + # Save result to file as png + file = open('result.png', 'wb') + file.write(next(result)) + file.close() # [END get_map_static_image] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py b/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py index 2270f823d34d..e178b206229d 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py @@ -17,15 +17,6 @@ """ import os -import json - -def to_json(self): - return json.dumps( - self, - default=lambda o: o.__dict__, - sort_keys=True, - indent=4 - ) subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") @@ -41,9 +32,6 @@ def get_map_tileset(): print("Get map tileset result:") print(result) - print("------------------------------") - print("Get map tileset result in Json format:") - print(to_json(result)) # [END get_map_tile] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_from_bounding_box.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_from_bounding_box.yaml index d3516ff52d7f..c31764711158 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_from_bounding_box.yaml +++ b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_from_bounding_box.yaml @@ -15,7 +15,7 @@ interactions: x-ms-client-id: - method: GET - uri: https://atlas.microsoft.com/map/copyright/bounding/json?api-version=2.1&mincoordinates=52.41064,4.84228&maxcoordinates=52.41072,4.84239&text=yes + uri: https://atlas.microsoft.com/map/copyright/bounding/json?api-version=2.1&mincoordinates=42.982261,24.980233&maxcoordinates=56.526017,1.355233&text=yes response: body: string: "{\n \"formatVersion\": \"0.0.1\",\n \"generalCopyrights\": [\n @@ -25,8 +25,174 @@ interactions: this material is subject to the terms of a license agreement. Any unauthorized copying or disclosure of this material will lead to criminal and civil liabilities.\",\n \ \"Data Source \xA9 2022 TomTom\",\n \"based on\"\n ],\n \"regions\": - [\n {\n \"country\": {\n \"ISO3\": \"NLD\",\n \"label\": - \"Netherlands\"\n },\n \"copyrights\": [\n \"You + [\n {\n \"country\": {\n \"ISO3\": \"AUT\",\n \"label\": + \"Austria\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 BEV, GZ + 1368/2003\",\n \"The location and event code (version 3.4) has + been provided by ASFINAG.\",\n \"Contains data licensed under CC + BY 3.0 AT. For more information visit: * City of Vienna https://www.data.gv.at + \ * Geoland https://www.data.gv.at/ * BEV: \xA9 \xD6sterreichisches Adressregister, + 01.10.2019. http://www.bev.gv.at/ * Open Government Data Wien https://open.wien.gv.at/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"BEL\",\n \"label\": \"Belgium\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\",\n \"Contains data licensed under Free Open Data + License Vlaanderen. For more information visit: * CRAB Adressenlijst https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=6EF348E1-69EB-4CAD-8CCD-1C68099AFCF3 + \ * CRAB Stratenlijst https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=FBC603AE-87DC-4418-B16D-832CE7B30335 + \ * Grootschalig Referentiebestand (GRB) https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=7C823055-7BBF-4D62-B55E-F85C30D53162 + \ * 3D GRB https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=42ac31a7-afe6-44c4-a534-243814fe5b58 + \ * AGIV Aerial images https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=0ffd5eee-c197-4f8f-b491-b01bd1792f7c + \ * Wegenregister Flanders and Brussels https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=49515fac-068f-4b41-a4ac-8e29d43df696 + \ * School and University data\",\n \"http://opendataforum.info/Docs/Modellicentie%202%20Gratis%20Open%20Data%20Licentie.htm + \ * City of Antwerp http://opendata.antwerpen.be/gratis-open-data-licentie + \ * Toerisme Vlaanderen http://www.toerismevlaanderen.be/opendata * Gipod + https://overheid.vlaanderen.be/sites/default/files/documenten/ict-egov/licenties/hergebruik/modellicentie_gratis_hergebruik_v1_0.html\",\n + \ \"Contains data licensed under CIRB - CIBG under Open Data License. + For more information visit: * CIRB-CIBG APT's http://www.bric.irisnet.be/en/our-solutions/urbis-solutions/download + \ * Brussels Mobility Zones 30 (30 km/h zones) http://data-mobility.brussels/mobigis/nl/#\",\n + \ \"Contains data licensed under CC-BY 4.0. For more information + visit: * TEC (Public Transport Stops) http://opendata.awt.be/dataset/tec\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"BGR\",\n \"label\": \"Bulgaria\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"BIH\",\n \"label\": \"Bosnia-Herzegovina\"\n + \ },\n \"copyrights\": [\n \"You agree to include + as soon as practically possible, but no later than the first new release of + the Authorized Application following Your receipt of any 3D Landmarks, any + copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"BLR\",\n \"label\": + \"Republic of Belarus\"\n },\n \"copyrights\": [\n \"You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks @@ -60,22 +226,282 @@ interactions: (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - licensed under CC-BY 4.0. For more information visit: * Kadaster Top10NL - http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/29d5310f-dd0d-45ba-abad-b4ffc6b8785f?tab=general - \ * Kadaster BGT http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2cb4769c-b56e-48fa-8685-c48f61b9a319?tab=general - \ * CBS Bestand Bodemgebruik http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2d3dd6d2-2d2b-4b5f-9e30-86e19ed77a56?tab=general\",\n - \ \"Contains data licensed under CC-BY 2.0. For more information - visit: * Municipality of Amsterdam Datasets Parkeergarages https://data.amsterdam.nl/index.html#?dte=https:%2F%2Fapi.datapunt.amsterdam.nl%2Fcatalogus%2Fapi%2F3%2Faction%2Fpackage_show%3Fid%3Df06f5a77-04f6-432f-9fd9-ce9d740631aa&dtfs=T&mpb=topografie&mpz=9&mpv=52.3719:4.9012\",\n - \ \"Contains data licensed under CC-BY 3.0. For more information - visit: * Municipality of Amsterdam Multiple cat POI's https://data.amsterdam.nl/index.html#?dsd=dcatd&dsp=1&dsq=open%2520data&dsv=CATALOG&mpb=topografie&mpz=11&mpv=52.3731081:4.8932945\",\n - \ \"This product contains public transport stops data made available - under 9292 Open Data framework as documented on March 2013. This is specified - in their terms available here: http://9292opendata.org/sla\",\n \"This - product contains traffic incident information made available by NDW under - open source data policy:\_https://www.ndw.nu/pagina/nl/103/datalevering/120/open_data/\"\n + but not limited to collection or analysis).\",\n \"\xA9 Source + data. State committee on property of the Republic of Belarus, 2019 \xA9 Republic + unitary organization Belgeodsia, 2019\"\n ]\n },\n {\n \"country\": + {\n \"ISO3\": \"CHE\",\n \"label\": \"Switzerland\"\n + \ },\n \"copyrights\": [\n \"You agree to include + as soon as practically possible, but no later than the first new release of + the Authorized Application following Your receipt of any 3D Landmarks, any + copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 Swisstopo\",\n + \ \"Contains data licensed under CC BY. For more information visit: + \ * SITG https://opendata.swiss/ * BFS (eidgen\xF6ssisches Geb\xE4ude- und + Wohnungsregister) https://data.geo.admin.ch/ * BAV https://opendata.swiss/de\",\n + \ \"Contains data licensed under CC Zero. For more information visit: + \ * the city of Z\xFCrich https://data.stadt-zuerich.ch/\",\n \"Contains + data licensed under CC BY ASK. For more information visit: * swisstopo https://opendata.swiss/de\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"CZE\",\n \"label\": \"Czechia\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"DEU\",\n \"label\": \"Germany\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 GeoBasis-DE + / LDBV 2021\",\n \"Contains data licensed under CC BY 3.0 DE. For + more information visit: * Bayerisches Landesamt f\xFCr Umwelt, www.lfu.bayern.de + \ * Bayerische Vermessungsverwaltung, www.geodaten.bayern.de\",\n \"Contains + cartographic information made available by \xA9 GeoBasis-DE / BKG 2018 (data + modified). https://www.bkg.bund.de\",\n \"Contains data licensed + under dl-de-by-2.0. For more information visit: * Bezirksregierung K\xF6ln, + 2019, https://www.bezreg-koeln.nrw.de/ * geoportal-th.de (data modified), + https://www.geoportal-th.de * Open.NRW \u2013 Das Open Government Portal + f\xFCr das Land Nordrhein-Westfalen\u201D; Landesamt f\xFCr Natur, Umwelt + und Verbraucherschutz Nordrhein-Westfalen, www.open.nrw * transparenz.hamburg.de + (data modified), http://suche.transparenz.hamburg.de/ * Land NRW, 2018, https://www.wms.nrw.de/geobasis/wms_nw_dop?REQUEST=GetCapabilities&SERVICE=WMS + \ * Vermessungs- und Katasterverwaltung Rheinland-Pfalz, 2018, https://lvermgeo.rlp.de/de/ + \ * LVermGeoRP, 2018, https://www.geoportal.rlp.de/\",\n \"Contains + data licensed under CC-BY 4.0. For more information visit: * \u201EOpen.NRW + \u2013 Das Open Government Portal f\xFCr das Land Nordrhein-Westfalen\u201D; + Landesamt f\xFCr Natur, Umwelt und Verbraucherschutz Nordrhein-Westfalen, + www.open.nrw\"\n ]\n },\n {\n \"country\": {\n \"ISO3\": + \"DNK\",\n \"label\": \"Denmark\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\",\n \"\xA9 DAV, violation of these copyrights shall + cause legal proceedings\",\n \"This product contains information + from Styrelsen for Dataforsyning og Effektiviserings Adresse Web Services + (AWS Suiten)\",\n \"\u201DIndeholder data fra Styrelsen for Dataforsyning + og Effektivisering\\\"; Stedsnavne, Vejmidte\",\n \"\u201DIndeholder + oplysninger fra Styrelsen for Dataforsyning og Effektivisering Adresse Web + Services (AWS).\u201D\",\n \"\u201DIndeholder data fra Styrelsen + for Dataforsyning og Effektivisering\\\"; Stedsnavne\"\n ]\n },\n + \ {\n \"country\": {\n \"ISO3\": \"FRA\",\n \"label\": + \"France\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"(navigation + devices only) Michelin data \xA9 Michelin 2019 The following copyright applies + to the Advanced Navigable MAP, Address Points, 2D City Map and Buildings: + \ Source: Direction g\xE9n\xE9rale des Finances Publiques \u2013 Cadastre; + Updated 2019\",\n \"Contains data licensed under Open License Version + 1.0: * Ville de Toulouse * Rennes M\xE9tropole * Grand Lyon dated from + 1/3/2015 * Mulhouse Alsace Agglom\xE9ration dated from 13/2/2015 * Grand + Poitiers * Ville de Chassieu dated from October 2017 * Ville de Chennevi\xE8res-sur-Marne + \ * D\xE9partement des Hauts-de-Seine * M\xE9tropole Europ\xE9enne de Lille + dated from 21/2/2017 * Colmar Agglom\xE9ration dated from 23/09/2016 * Minist\xE8re + des Solidarit\xE9s et de la Sant\xE9 dated from 17/3/2017 * Sodetrel dated + from December 2017 * E.Leclerc dated from December 2017 * Parking EFFIA + Stationnement dated from December 2017 * Centre national du cin\xE9ma et + de l'image anim\xE9e dated from 23/9/2016 * Communaut\xE9 d'Agglom\xE9ration + de Rambouillet Territoires dated from January 2017 * Lannion-Tr\xE9gor Communaut\xE9 + \ * G\xE9oGrandEst * Nissan dated from December 2017 * Seames dated from + December 2017 * Syndicat Intercommunal des Energies du d\xE9partement de + la Loire dated from February 2017 * SOR\xC9GIES dated from June 2017 * Syndicat + D\xE9partemental d\u2019Energie et d\u2019Equipement de la Vend\xE9e dated + from December 2017 * Minist\xE8re de l\u2019Int\xE9rieur dated from July + 2018 * Minist\xE8re des Sports * Office national d'information sur les enseignements + et les professions dated from December 2017 * Administration du Premier ministre + dated from December 2017 * D\xE9partement de Sa\xF4ne-et Loire * Ville d\u2019Istres + dated from December 2017 * Tesla dated from February 2017 * Syndicat D\xE9partemental + d'Energies de la Manche dated from December 2017 * Syndicat D\xE9partemental + d'Energie de Loire-Atlantique dated from December 2017 * M\xE9tropole d'Aix-Marseille-Provence + \ * Ville de Montpellier\",\n \"Contains data licensed under Open + License Version 2.0: * Minist\xE8re de la Transition \xC9cologique * Ville + d'Issy-les-Moulineaux * Ville de Bayonne dated from 23/01/2018 * P\xF4le + Metropolitain du Pays de Brest dated from 1/3/2016 * Bordeaux M\xE9tropole + \ * Communaut\xE9 d'agglom\xE9ration Arles Crau Camargue Montagnette dated + from 29/4/2016 * Rennes M\xE9tropole dated from 30/11/2016 * Angers Loire + M\xE9tropole dated from 21/9/2016 * D\xE9partement de la Moselle dated from + December 2017 * Ville de La Rochelle dated from 23/05/2012 * Grand Paris + Seine Ouest dated from 01/02/2016 * Morbihan Energies dated from December + 2017 * R\xE9gion Bretagne dated from December 2017 * R\xE9gie Culturelle + de la R\xE9gion Sud Provence-Alpes-C\xF4te d'Azur dated from December 2017 + \ * Education Nationale * M\xE9tropole du Grand Nancy * Toulouse M\xE9tropole + \ * Nantes M\xE9tropole * M\xE9tropole Europ\xE9enne de Lille * Orl\xE9ans + M\xE9tropole * Grand Poitiers * D\xE9partement des Hautes-de-Seine * D\xE9partement + de la Mayenne * Mulhouse Alsace Agglom\xE9ration\",\n \"Contains + data licensed under la Licence de r\xE9utilisation des donn\xE9es num\xE9ris\xE9es + d\u2019informations en temps r\xE9el sur la circulation: * Minist\xE8re de + la Transition \xC9cologique * Direction Interd\xE9partementale des Routes + d\u2019\xCEle-de-France\",\n \"Contains data licensed under le + Code des relation sentre le public et l\u2019administration: * Communaut\xE9 + d'Agglom\xE9ration Maubeuge - Val de Sambre dated from September 2017 * Syndicat + des \xE9nergies de la Haute-Savoie dated from November 2017 * Syndicat d\u2019\xE9nergie + de l\u2019Oise dated from December 2017 * Syndicat d'\xE9nergie de l'Orne + dated from March 2017 * Syndicat D\xE9partemental d'Energie de la Haute-Garonne + dated from December 2017 * Syndicat D\xE9partemental d'Energie des Hautes-Pyr\xE9n\xE9es + dated from December 2017 * Syndicat D\xE9partemental d'Energies du Calvados + dated from December 2017 * Syndicat D\xE9partemental d'Energie du Cher dated + from December 2017 * Syndicat D\xE9partemental d'Energies de l'Indre dated + from December 2017 * Syndicat D\xE9partemental d'Equipement et d'Energie + du Finist\xE8re dated from December 2017 * Syndicat D\xE9partemental des + Energies de Seine-et-Marne dated from March 2017 * Syndicat intercommunal + d'\xE9nergie d'Indre-et-Loire dated from December 2017 * Union des Secteurs + d'Energie du D\xE9partement de l'Aisne dated from December 2017 * Ville de + Beauvais dated from March 2017\",\n \"Contains data from D\xE9partement + de Hautes-Alpes. For more information visit: http://inforoute.hautes-alpes.fr/\"\n \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"ONL\",\n \"label\": \"\"\n },\n \"copyrights\": + \"GBR\",\n \"label\": \"United Kingdom\"\n },\n \"copyrights\": [\n \"You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display @@ -110,18 +536,1251 @@ interactions: (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n }\n ]\n}" + or analysis).\",\n \"Contains Ordnance Survey data \xA9 Crown copyright + and database right 2018. Licensed under the Open Government Licence. The license + can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"Contains Ordnance Survey data \xA9 Crown copyright and database + right 2018.\",\n \"Contains Royal Mail data \xA9 Royal Mail copyright + and database right 2018.\",\n \"Contains National Statistics data + \xA9 Crown copyright and database right 2018.\",\n \"Licensed under + the Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information (public transport + stops data) licensed under the Open Government Licence v2.0. This is specified + here: http://data.gov.uk/dataset/naptan\",\n \"The license can + be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n + \ \"This product contains public sector information (publicly accessible + charge points) licensed under the Open Government Licence v2.0. This is specified + here: http://data.gov.uk/dataset/national-charge-point-registry\",\n \"The + license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n + \ \"This product contains Sports venues locations data made available + by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE + AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area + . The license can be found at: https://spogo.co.uk/active-places-license\",\n + \ \"This product contains data made available by the Northern Ireland + Department of Education and licensed under the Open Government Licence v3.0. + Data download page: http://apps.deni.gov.uk/appinstitutes The license can + be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains data made available by Historic England + 2015. Contains Ordnance Survey data \xA9 Crown copyright and database right + 2015 The Historic England GIS Data contained in this material was obtained + on 12/08/2015. The most publicly available up to date Historic England GIS + Data can be obtained from: http://www.HistoricEngland.org.uk\",\n \"Data + download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx\",\n + \ \"The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html\",\n + \ \"This product contains designated Historic Asset GIS Data from + the Welsh Historic Environment Service, licenced under the Open Government + Licence. Data download page: http://lle.wales.gov.uk. The license can be found + at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information licensed under + the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains public sector information licensed under + the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n + \ \"This product contains data made available by Visit Wales and + licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. + The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"HRV\",\n \"label\": \"Croatia\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"HUN\",\n \"label\": \"Hungary\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + under National Access Point Hungary.\"\n ]\n },\n {\n \"country\": + {\n \"ISO3\": \"ITA\",\n \"label\": \"Italy\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + licensed under IODL 2.0. For more information visit: * Regione Lombardia. + http://www.geoportale.regione.lombardia.it/en/home * Comune di Torino. http://aperto.comune.torino.it + \ * Regione Veneto. For more information visit https://dati.veneto.it/ * + Regione Autonoma Friuli Venezia Giulia. http://www.regione.fvg.it/rafvg/cms/RAFVG/ambiente-territorio/conoscere-ambiente-territorio/ + \ * Regione Basilicata. http://dati.regione.basilicata.it/catalog/ * Regione + Calabria. http://geoportale.regione.calabria.it/opendata * Comune di Reggio + Calabria. http://dati.reggiocal.it/ * Ministero dell\u2019Istruzione. http://www.dati.gov.it + \ * Regione Puglia. http://www.dataset.puglia.it/ * Comune di Verona. http://www.comune.verona.it + \ * Comune di Vicenza. http://www.comune.vicenza.it\",\n \"Contains + data licensed under CC-BY 2.0 For more information visit: * Comune di Bari. + http://opendata.comune.bari.it/dataset/sistema-informativo-territoriale-civilario-unico-comunaleContains + data licensed under CC-BY 2.5. For more information visit * Comune di Milano. + https://geoportale.comune.milano.it/sit/open-data/ and http://geodata-sitmilano.opendata.arcgis.com/ + \ * Regione Toscana according to the legislation available at http://www.regione.toscana.it/documents/10180/492172/Decreto-2014_02_25n663.pdf/162db905-95fd-4b5e-bc41-88a629b5a3e5 + and Regolamento http://raccoltanormativa.consiglio.regione.toscana.it/articolo?urndoc=urn:nir:regione.toscana:regolamento.giunta:2007-02-09;6/R&pr=idx,0;artic,1;articparziale,0\",\n + \ \"http://dati.toscana.it/dataset/grafo-civici * Regione Emilia + Romagna. http://geoportale.regione.emilia-romagna.it/it/catalogo/dati-cartografici/cartografia-di-base + and http://geoportale.regione.emilia-romagna.it/it/catalogo/dati-cartografici/cartografia-di-base/database-topografico-regionale/gestione-viabilita-indirizzi/toponimi-e-numeri-civici + \ * Regione Piemonte. http://www.geoportale.piemonte.it/geocatalogorp/?sca[]=r_piemon:da9b12ba-866a-4f0f-8704-5b7b753e4f15&sezione=dwl + \ * Agenzia Europea dell'Ambiente http://data.europa.eu/euodp/it/data/dataset/data_urban-atlas\",\n + \ \"Contains data licensed under CC-BY 3.0. For more information + visit: * Comune di Milano. https://www.comune.milano.it/wps/portal/ist/it/vivicitta/verde/parchi + \ * Ministero dell\u2019Istruzione, dell\u2019Universit\xE0 e della Ricerca + MIURhttp://www.tper.it/azienda/tper-open-data * Agenzia per la Mobilit\xE0 + Roma http://www.agenziamobilita.roma.it/servizi/open-data/dataset.html * + Comune di Firenze http://opendata.comune.fi.it/mobilita_sicurezza/dataset_0196.html + and http://opendata.comune.fi.it/statistica_territorio/dataset_0040.html and + http://opendata.comune.fi.it/mobilita_sicurezza/dataset_0139.html * Regione + Umbria http://dati.umbria.it/ and http://www.umbriageo.regione.umbria.it/pagine/servizi-wms-attivi + \ * Comune di Cesena http://www.datiopen.it/it/opendata/Comune_di_Cesena_Verde + \ * Comune di Livorno http://www.datiopen.it/it/opendata/Comune_di_Livorno_Area_verde + \ * Comune di Bologna http://dati.comune.bologna.it/node/201 and http://dati.comune.bologna.it/node/217 + \ * Istituto Nazionale di Statistica http://www.istat.it/it/archivio/678 and + http://datiopen.istat.it/\",\n \"Contains data licensed under CC-BY + 4.0. For more information visit: * Regione Veneto https://dati.veneto.it/ + \ * Comune di Fano https://www.comune.fano.pu.it/index.php?id=2020 * Regione + Toscana http://dati.toscana.it/ * Comune di Genova http://dati.comune.genova.it + \ * Comune di Roma http://dati.comune.roma.it * Regione Piemonte http://www.geoportale.piemonte.it + \ * Reggio Emilia http://www.dati.gov.it * Regione Lazio http://www.dati.lazio.it + \ * Regione Autonoma Sardegna http://dati.regione.sardegna.it * Provincia + di Biella http://cartografia.provincia.biella.it * Regione Liguria https://www.regione.liguria.it + \ * Comune di Milano http://dati.comune.milano.it\"\n ]\n },\n + \ {\n \"country\": {\n \"ISO3\": \"LIE\",\n \"label\": + \"Liechtenstein\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"LTU\",\n \"label\": + \"Lithuania\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + licensed under: http://eismoinfo.lt/#!/news/8592\"\n ]\n },\n + \ {\n \"country\": {\n \"ISO3\": \"LUX\",\n \"label\": + \"Luxembourg\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"LVA\",\n \"label\": + \"Latvia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MCO\",\n \"label\": + \"Monaco\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"MNE\",\n \"label\": + \"Montenegro\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"NLD\",\n \"label\": + \"Netherlands\"\n },\n \"copyrights\": [\n \"You + agree to include as soon as practically possible, but no later than the first + new release of the Authorized Application following Your receipt of any 3D + Landmarks, any copyright notices related to the display of such landmarks + on every Authorized Application and in the \u201Cabout box\u201D of the Authorized + Application. Notwithstanding the aforementioned, TomTom has the right to + decide, at its sole discretion, to remove specific 3D Landmarks in subsequent + releases of the Licensed Products. In such case, You will remove those 3D + Landmarks from the Authorized Application as soon as practically possible, + but not later than the first new release of the Authorized Application following + Your receipt of the Update to the Licensed Product. TomTom shall not be held + responsible for any possible damages, costs or expenses incurred by You related + to such removal of a 3D Landmark by TomTom from the Licensed Product or failure + to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + licensed under CC-BY 4.0. For more information visit: * Kadaster Top10NL + http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/29d5310f-dd0d-45ba-abad-b4ffc6b8785f?tab=general + \ * Kadaster BGT http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2cb4769c-b56e-48fa-8685-c48f61b9a319?tab=general + \ * CBS Bestand Bodemgebruik http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2d3dd6d2-2d2b-4b5f-9e30-86e19ed77a56?tab=general\",\n + \ \"Contains data licensed under CC-BY 2.0. For more information + visit: * Municipality of Amsterdam Datasets Parkeergarages https://data.amsterdam.nl/index.html#?dte=https:%2F%2Fapi.datapunt.amsterdam.nl%2Fcatalogus%2Fapi%2F3%2Faction%2Fpackage_show%3Fid%3Df06f5a77-04f6-432f-9fd9-ce9d740631aa&dtfs=T&mpb=topografie&mpz=9&mpv=52.3719:4.9012\",\n + \ \"Contains data licensed under CC-BY 3.0. For more information + visit: * Municipality of Amsterdam Multiple cat POI's https://data.amsterdam.nl/index.html#?dsd=dcatd&dsp=1&dsq=open%2520data&dsv=CATALOG&mpb=topografie&mpz=11&mpv=52.3731081:4.8932945\",\n + \ \"This product contains public transport stops data made available + under 9292 Open Data framework as documented on March 2013. This is specified + in their terms available here: http://9292opendata.org/sla\",\n \"This + product contains traffic incident information made available by NDW under + open source data policy:\_https://www.ndw.nu/pagina/nl/103/datalevering/120/open_data/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"OBE\",\n \"label\": \"\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"ODE\",\n \"label\": \"\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ODK\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OFI\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OFR\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OGB\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OIT\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ONL\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ONO\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OPL\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"OSE\",\n \"label\": + \"\"\n },\n \"copyrights\": [\n \"You agree to + include as soon as practically possible, but no later than the first new release + of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"POL\",\n \"label\": + \"Poland\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"ROU\",\n \"label\": + \"Romania\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains public + information based on Open Government License v1.0.\"\n ]\n },\n + \ {\n \"country\": {\n \"ISO3\": \"RUS\",\n \"label\": + \"Russia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"\xA9 ROSREESTR\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"SMR\",\n \"label\": \"San Marino\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"SRB\",\n \"label\": \"Serbia\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains open + data with free license. The free license is defined in Article 26 of the Law + on Electronic Administration (\\\"Official Gazette of RS\\\", No. 27/18).\",\n + \ \"For more information:\",\n \"https://geosrbija.rs/en/\",\n + \ \"http://metakatalog.geosrbija.rs/geonetwork/srv/eng/catalog.search#/home\",\n + \ \"Data was downloaded on 02.03.2020\"\n ]\n },\n + \ {\n \"country\": {\n \"ISO3\": \"SVK\",\n \"label\": + \"Slovakia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n },\n {\n + \ \"country\": {\n \"ISO3\": \"SVN\",\n \"label\": + \"Slovenia\"\n },\n \"copyrights\": [\n \"You agree + to include as soon as practically possible, but no later than the first new + release of the Authorized Application following Your receipt of any 3D Landmarks, + any copyright notices related to the display of such landmarks on every Authorized + Application and in the \u201Cabout box\u201D of the Authorized Application. + \ Notwithstanding the aforementioned, TomTom has the right to decide, at its + sole discretion, to remove specific 3D Landmarks in subsequent releases of + the Licensed Products. In such case, You will remove those 3D Landmarks from + the Authorized Application as soon as practically possible, but not later + than the first new release of the Authorized Application following Your receipt + of the Update to the Licensed Product. TomTom shall not be held responsible + for any possible damages, costs or expenses incurred by You related to such + removal of a 3D Landmark by TomTom from the Licensed Product or failure to + remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom + hereby grants to You a non-exclusive, non-transferable license to use the + Software Licensed Products for the sole and limited purpose of assisting You + in viewing, analyzing and sectioning the Licensed Products. In no event shall + You use the Software Licensed Products to view, analyze, section or in any + way manipulate spatial map data that is not provided by TomTom. You shall + not derive or attempt to derive the source code of all or any portion of the + Licensed Products by reverse engineering, disassembly, decompilation, translation + or any other means. You shall affix the following copyright notice on any + copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware + \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither + the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic + or any derivatives thereof shall be used for the purpose of enforcement of + traffic laws including but not limited to the selection of potential locations + for the installation of speed cameras, speed traps or other speed tracking + devices. With regards to Speed Profiles, You acknowledge and agrees that the + actual speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\",\n \"Contains data + (street names) from Surveying and mapping authority of the republic of Slovenia + licensed under CC-BA2.5. For more information visit https://egp.gu.gov.si/egp/?lang=en.\",\n + \ \"Contains data licensed under: https://www.promet.si/portal/en/etd.aspx\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"SWE\",\n \"label\": \"Sweden\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\",\n \"Contains data made available by Lantm\xE4teriet + under legal terms listed here:\",\n \"https://www.lantmateriet.se/en/maps-and-geographic-information/oppna-data/anvandarvillkor/\",\n + \ \"Contains data made available by Trafikverket under legal terms + listed here:\",\n \"https://www.trafikverket.se/tjanster/Oppna_data/\"\n + \ ]\n },\n {\n \"country\": {\n \"ISO3\": + \"UKR\",\n \"label\": \"Ukraine\"\n },\n \"copyrights\": + [\n \"You agree to include as soon as practically possible, but + no later than the first new release of the Authorized Application following + Your receipt of any 3D Landmarks, any copyright notices related to the display + of such landmarks on every Authorized Application and in the \u201Cabout box\u201D + of the Authorized Application. Notwithstanding the aforementioned, TomTom + has the right to decide, at its sole discretion, to remove specific 3D Landmarks + in subsequent releases of the Licensed Products. In such case, You will remove + those 3D Landmarks from the Authorized Application as soon as practically + possible, but not later than the first new release of the Authorized Application + following Your receipt of the Update to the Licensed Product. TomTom shall + not be held responsible for any possible damages, costs or expenses incurred + by You related to such removal of a 3D Landmark by TomTom from the Licensed + Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n + \ \"TomTom hereby grants to You a non-exclusive, non-transferable + license to use the Software Licensed Products for the sole and limited purpose + of assisting You in viewing, analyzing and sectioning the Licensed Products. + In no event shall You use the Software Licensed Products to view, analyze, + section or in any way manipulate spatial map data that is not provided by + TomTom. You shall not derive or attempt to derive the source code of all or + any portion of the Licensed Products by reverse engineering, disassembly, + decompilation, translation or any other means. You shall affix the following + copyright notice on any copy of the GDF Viewer, or any portion of the Licensed + Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights + reserved.\",\n \"Neither the Data nor the Licensed Products such + as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used + for the purpose of enforcement of traffic laws including but not limited to + the selection of potential locations for the installation of speed cameras, + speed traps or other speed tracking devices. With regards to Speed Profiles, + You acknowledge and agrees that the actual speeds may not reflect the legally + imposed speed limits.\",\n \"You specifically agree that it shall + not: (i) store the data for more than twenty-four (24) hours on Your servers; + (ii) broadcast or make Live Services Licensed Products available except to + authorized End Users; and (iii) use the feed or information received via the + feed for historical data purposes (including but not limited to collection + or analysis).\"\n ]\n },\n {\n \"country\": {\n + \ \"ISO3\": \"XKS\",\n \"label\": \"Kosovo\"\n },\n + \ \"copyrights\": [\n \"You agree to include as soon as + practically possible, but no later than the first new release of the Authorized + Application following Your receipt of any 3D Landmarks, any copyright notices + related to the display of such landmarks on every Authorized Application and + in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding + the aforementioned, TomTom has the right to decide, at its sole discretion, + to remove specific 3D Landmarks in subsequent releases of the Licensed Products. + In such case, You will remove those 3D Landmarks from the Authorized Application + as soon as practically possible, but not later than the first new release + of the Authorized Application following Your receipt of the Update to the + Licensed Product. TomTom shall not be held responsible for any possible damages, + costs or expenses incurred by You related to such removal of a 3D Landmark + by TomTom from the Licensed Product or failure to remove a 3D Landmark by + You from the Authorized Application.\",\n \"TomTom hereby grants + to You a non-exclusive, non-transferable license to use the Software Licensed + Products for the sole and limited purpose of assisting You in viewing, analyzing + and sectioning the Licensed Products. In no event shall You use the Software + Licensed Products to view, analyze, section or in any way manipulate spatial + map data that is not provided by TomTom. You shall not derive or attempt to + derive the source code of all or any portion of the Licensed Products by reverse + engineering, disassembly, decompilation, translation or any other means. You + shall affix the following copyright notice on any copy of the GDF Viewer, + or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom + North America, Inc. All rights reserved.\",\n \"Neither the Data + nor the Licensed Products such as Speed Profiles or TomTom Traffic or any + derivatives thereof shall be used for the purpose of enforcement of traffic + laws including but not limited to the selection of potential locations for + the installation of speed cameras, speed traps or other speed tracking devices. + With regards to Speed Profiles, You acknowledge and agrees that the actual + speeds may not reflect the legally imposed speed limits.\",\n \"You + specifically agree that it shall not: (i) store the data for more than twenty-four + (24) hours on Your servers; (ii) broadcast or make Live Services Licensed + Products available except to authorized End Users; and (iii) use the feed + or information received via the feed for historical data purposes (including + but not limited to collection or analysis).\"\n ]\n }\n ]\n}" headers: cache-control: - max-age=86400 content-length: - - '7582' + - '136121' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jul 2022 06:40:17 GMT + - Mon, 05 Sep 2022 07:01:03 GMT etag: - - W/"d6959e64c4fed1e434c1f802c0669fbe" + - W/"d47aa6e25ea9cd76a5149c8d068fb41b" strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -131,7 +1790,7 @@ interactions: x-ms-azuremaps-region: - West US 2 x-msedge-ref: - - 'Ref A: 0F6F070262BD4FBFA1E859B1AE572056 Ref B: TPE30EDGE0713 Ref C: 2022-07-22T06:40:18Z' + - 'Ref A: D0B11100E2B7417A83004F96504682B9 Ref B: TPE30EDGE0512 Ref C: 2022-09-05T07:01:03Z' status: code: 200 message: OK diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_attribution.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_attribution.yaml index 2d8fd6b109c1..244b871c646d 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_attribution.yaml +++ b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_attribution.yaml @@ -26,7 +26,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jul 2022 06:40:18 GMT + - Mon, 05 Sep 2022 07:01:03 GMT strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -36,7 +36,7 @@ interactions: x-ms-azuremaps-region: - West US 2 x-msedge-ref: - - 'Ref A: AD49C74B5E2B4B0794172486552E3DF8 Ref B: TPE30EDGE0619 Ref C: 2022-07-22T06:40:18Z' + - 'Ref A: E25D00F325CA48199E1E03BF39E22128 Ref B: TPE30EDGE0616 Ref C: 2022-09-05T07:01:03Z' status: code: 200 message: OK diff --git a/sdk/maps/azure-maps-render/tests/test_client_e2e.py b/sdk/maps/azure-maps-render/tests/test_client_e2e.py index 03bb49d83f23..e5bacff99c0f 100644 --- a/sdk/maps/azure-maps-render/tests/test_client_e2e.py +++ b/sdk/maps/azure-maps-render/tests/test_client_e2e.py @@ -5,7 +5,7 @@ from azure_devtools.scenario_tests import RecordingProcessor from azure.core.credentials import AzureKeyCredential from azure.maps.render import MapsRenderClient -from azure.maps.render.models import LatLon, TilesetID, BoundingBox +from azure.maps.render.models import TilesetID, BoundingBox # cSpell:disable @@ -68,7 +68,7 @@ def test_get_map_attribution(self): result = self.client.get_map_attribution( tileset_id=TilesetID.MICROSOFT_BASE, zoom=6, - bounds=BoundingBox(bottom_left=(LatLon(42.982261, 24.980233)), top_right=(LatLon(56.526017, 1.355233))) + bounds=BoundingBox(south=42.982261, west=24.980233, north=56.526017, east=1.355233) ) assert len(result.copyrights) > 0 @@ -76,7 +76,7 @@ def test_get_map_attribution(self): @pytest.mark.live_test_only def test_get_copyright_from_bounding_box(self): result = self.client.get_copyright_from_bounding_box( - bounding_box=BoundingBox(bottom_left=LatLon(52.41064,4.84228), top_right=LatLon(52.41072,4.84239)) + bounding_box=BoundingBox(south=42.982261, west=24.980233, north=56.526017, east=1.355233) ) assert len(result.general_copyrights) > 0 copyrights = result.general_copyrights[0] diff --git a/sdk/maps/azure-maps-render/tests/test_client_unit.py b/sdk/maps/azure-maps-render/tests/test_client_unit.py index 3a0a9cce6bdc..b0e851d2c828 100644 --- a/sdk/maps/azure-maps-render/tests/test_client_unit.py +++ b/sdk/maps/azure-maps-render/tests/test_client_unit.py @@ -13,36 +13,12 @@ # cSpell:disable -class MockTransport(HttpTransport): - def __init__(self, status_code, body, **kwargs): - self.status_code = status_code - self.body = body.encode("utf-8-sig") if body != None else None - self.kwargs = kwargs - def __exit__(self, exc_type, exc_val, exc_tb): - pass - def close(self): - pass - def open(self): - pass - def send(self, request, **kwargs): # type: (PipelineRequest, Any) -> PipelineResponse - response = HttpResponse(request, None) - response.status_code = self.status_code - response.headers["content-type"] = "application/json" - response.body = lambda: self.body - for key, val in self.kwargs.items(): - setattr(response, key, val) - return response - -def create_mock_client(status_code=0, body=None, **kwargs): - return MapsRenderClient(credential= Mock(AzureKeyCredential), - transport=MockTransport(status_code, body, **kwargs)) +def create_mock_client(): + return MapsRenderClient( + credential=Mock(AzureKeyCredential) + ) class AzureMapsRenderClientUnitTest(AzureTestCase): - def __init__(self, *args, **kwargs): - super(AzureMapsRenderClientUnitTest, self).__init__(*args, **kwargs) - - def setUp(self): - super(AzureMapsRenderClientUnitTest, self).setUp() def test_get_map_tile_invalid_index_y(self): client = create_mock_client() From 38a67637ed05f70d1d62b93fdd42412baa426b42 Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Tue, 6 Sep 2022 00:33:43 +0800 Subject: [PATCH 05/14] Code clean up --- sdk/maps/azure-maps-render/CHANGELOG.md | 6 ++++-- sdk/maps/azure-maps-render/tests/test_client_unit.py | 7 +------ 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/sdk/maps/azure-maps-render/CHANGELOG.md b/sdk/maps/azure-maps-render/CHANGELOG.md index d8b2faa82aa0..a8f847a28078 100644 --- a/sdk/maps/azure-maps-render/CHANGELOG.md +++ b/sdk/maps/azure-maps-render/CHANGELOG.md @@ -1,5 +1,7 @@ # Release History -## 1.0.0b1 (Unreleased) +## 1.0.0b1 (2022-09-06) -* Initial Release +### Features Added + +- Initial release diff --git a/sdk/maps/azure-maps-render/tests/test_client_unit.py b/sdk/maps/azure-maps-render/tests/test_client_unit.py index b0e851d2c828..a8902533a141 100644 --- a/sdk/maps/azure-maps-render/tests/test_client_unit.py +++ b/sdk/maps/azure-maps-render/tests/test_client_unit.py @@ -1,12 +1,7 @@ import sys import pytest -try: - from unittest.mock import Mock -except ImportError: # python < 3.3 - from mock import Mock # type: ignore - +from unittest.mock import Mock from devtools_testutils import AzureTestCase -from azure.core.pipeline.transport import HttpTransport, HttpResponse from azure.core.credentials import AzureKeyCredential from azure.maps.render import MapsRenderClient from azure.maps.render.models import LatLon, TilesetID, BoundingBox From 40a8a7dd783559ac8959df574091184ea44495cb Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Tue, 20 Sep 2022 10:56:36 +0800 Subject: [PATCH 06/14] Update API to the newest version --- .../azure/maps/render/_base_client.py | 4 +- .../azure/maps/render/_generated/__init__.py | 8 +- .../azure/maps/render/_generated/_client.py | 30 +- .../maps/render/_generated/_configuration.py | 52 +- .../azure/maps/render/_generated/_patch.py | 1 + .../maps/render/_generated/_serialization.py | 520 +++++++-------- .../azure/maps/render/_generated/_vendor.py | 6 +- .../azure/maps/render/_generated/_version.py | 9 - .../maps/render/_generated/aio/__init__.py | 5 +- .../maps/render/_generated/aio/_client.py | 30 +- .../render/_generated/aio/_configuration.py | 54 +- .../maps/render/_generated/aio/_patch.py | 1 + .../_generated/aio/operations/__init__.py | 7 +- .../_generated/aio/operations/_operations.py | 323 ++++----- .../_generated/aio/operations/_patch.py | 1 + .../maps/render/_generated/models/__init__.py | 37 +- .../maps/render/_generated/models/_enums.py | 69 +- .../maps/render/_generated/models/_models.py | 102 +-- .../maps/render/_generated/models/_patch.py | 1 + .../render/_generated/operations/__init__.py | 7 +- .../_generated/operations/_operations.py | 615 +++++++----------- .../render/_generated/operations/_patch.py | 1 + .../azure/maps/render/_version.py | 2 +- .../maps/render/aio/_base_client_async.py | 4 +- sdk/maps/azure-maps-render/swagger/README.md | 8 +- 25 files changed, 787 insertions(+), 1110 deletions(-) delete mode 100644 sdk/maps/azure-maps-render/azure/maps/render/_generated/_version.py diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py index 8570e849014b..64422474ab24 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_base_client.py @@ -6,7 +6,7 @@ from typing import Union, Any from azure.core.pipeline.policies import AzureKeyCredentialPolicy from azure.core.credentials import AzureKeyCredential, TokenCredential -from ._generated import RenderClient as _MapsRenderClient +from ._generated import MapsRenderClient as _MapsRenderClient from ._version import API_VERSION # To check the credential is either AzureKeyCredential or TokenCredential @@ -38,7 +38,7 @@ def __init__( authentication_policy=kwargs.pop("authentication_policy", _authentication_policy(credential)), **kwargs ) - self._render_client = self._maps_client.render_v2 + self._render_client = self._maps_client.render def __enter__(self): self._maps_client.__enter__() # pylint:disable=no-member diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/__init__.py index 97897f0f801d..1dba4c709ac7 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/__init__.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/__init__.py @@ -6,10 +6,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from ._client import RenderClient -from ._version import VERSION - -__version__ = VERSION +from ._client import MapsRenderClient try: from ._patch import __all__ as _patch_all @@ -17,7 +14,8 @@ except ImportError: _patch_all = [] from ._patch import patch_sdk as _patch_sdk -__all__ = ['RenderClient'] + +__all__ = ["MapsRenderClient"] __all__.extend([p for p in _patch_all if p not in __all__]) _patch_sdk() diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_client.py index 27794bf6e690..5ee0ce4c9b3b 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_client.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_client.py @@ -13,19 +13,20 @@ from azure.core.rest import HttpRequest, HttpResponse from . import models -from ._configuration import RenderClientConfiguration +from ._configuration import MapsRenderClientConfiguration from ._serialization import Deserializer, Serializer -from .operations import RenderV2Operations +from .operations import RenderOperations if TYPE_CHECKING: # pylint: disable=unused-import,ungrouped-imports from azure.core.credentials import TokenCredential -class RenderClient: # pylint: disable=client-accepts-api-version-keyword + +class MapsRenderClient: # pylint: disable=client-accepts-api-version-keyword """Azure Maps Render REST APIs. - :ivar render_v2: RenderV2Operations operations - :vartype render_v2: azure.maps.render.operations.RenderV2Operations + :ivar render: RenderOperations operations + :vartype render: azure.maps.render.operations.RenderOperations :param credential: Credential needed for the client to connect to Azure. Required. :type credential: ~azure.core.credentials.TokenCredential :param client_id: Specifies which account is intended for usage in conjunction with the Azure @@ -35,8 +36,8 @@ class RenderClient: # pylint: disable=client-accepts-api-version-keyword :type client_id: str :keyword endpoint: Service URL. Default value is "https://atlas.microsoft.com". :paramtype endpoint: str - :keyword api_version: Api Version. Default value is "2.1". Note that overriding this default - value may result in unsupported behavior. + :keyword api_version: Api Version. Default value is "2022-08-01". Note that overriding this + default value may result in unsupported behavior. :paramtype api_version: str """ @@ -48,23 +49,16 @@ def __init__( endpoint: str = "https://atlas.microsoft.com", **kwargs: Any ) -> None: - self._config = RenderClientConfiguration(credential=credential, client_id=client_id, **kwargs) + self._config = MapsRenderClientConfiguration(credential=credential, client_id=client_id, **kwargs) self._client = PipelineClient(base_url=endpoint, config=self._config, **kwargs) client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) self._serialize.client_side_validation = False - self.render_v2 = RenderV2Operations( - self._client, self._config, self._serialize, self._deserialize - ) - + self.render = RenderOperations(self._client, self._config, self._serialize, self._deserialize) - def send_request( - self, - request: HttpRequest, - **kwargs: Any - ) -> HttpResponse: + def send_request(self, request: HttpRequest, **kwargs: Any) -> HttpResponse: """Runs the network request through the client's chained policies. >>> from azure.core.rest import HttpRequest @@ -91,7 +85,7 @@ def close(self): self._client.close() def __enter__(self): - # type: () -> RenderClient + # type: () -> MapsRenderClient self._client.__enter__() return self diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_configuration.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_configuration.py index f21e456b2221..8495990cdf6f 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_configuration.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_configuration.py @@ -11,15 +11,15 @@ from azure.core.configuration import Configuration from azure.core.pipeline import policies -from ._version import VERSION - if TYPE_CHECKING: # pylint: disable=unused-import,ungrouped-imports from azure.core.credentials import TokenCredential +VERSION = "unknown" + -class RenderClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes - """Configuration for RenderClient. +class MapsRenderClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes + """Configuration for MapsRenderClient. Note that all parameters used to create this instance are saved as instance attributes. @@ -31,19 +31,14 @@ class RenderClientConfiguration(Configuration): # pylint: disable=too-many-inst from the Azure Maps management plane Account API. To use Azure AD security in Azure Maps see the following `articles `_ for guidance. Default value is None. :type client_id: str - :keyword api_version: Api Version. Default value is "2.1". Note that overriding this default - value may result in unsupported behavior. + :keyword api_version: Api Version. Default value is "2022-08-01". Note that overriding this + default value may result in unsupported behavior. :paramtype api_version: str """ - def __init__( - self, - credential: "TokenCredential", - client_id: Optional[str] = None, - **kwargs: Any - ) -> None: - super(RenderClientConfiguration, self).__init__(**kwargs) - api_version = kwargs.pop('api_version', "2.1") # type: str + def __init__(self, credential: "TokenCredential", client_id: Optional[str] = None, **kwargs: Any) -> None: + super(MapsRenderClientConfiguration, self).__init__(**kwargs) + api_version = kwargs.pop("api_version", "2022-08-01") # type: str if credential is None: raise ValueError("Parameter 'credential' must not be None.") @@ -51,23 +46,24 @@ def __init__( self.credential = credential self.client_id = client_id self.api_version = api_version - self.credential_scopes = kwargs.pop('credential_scopes', ['https://atlas.microsoft.com/.default']) - kwargs.setdefault('sdk_moniker', 'maps-render/{}'.format(VERSION)) + self.credential_scopes = kwargs.pop("credential_scopes", ["https://atlas.microsoft.com/.default"]) + kwargs.setdefault("sdk_moniker", "maps-render/{}".format(VERSION)) self._configure(**kwargs) def _configure( - self, - **kwargs # type: Any + self, **kwargs # type: Any ): # type: (...) -> None - self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) - self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) - self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) - self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) - self.http_logging_policy = kwargs.get('http_logging_policy') or policies.HttpLoggingPolicy(**kwargs) - self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs) - self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) - self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs) - self.authentication_policy = kwargs.get('authentication_policy') + self.user_agent_policy = kwargs.get("user_agent_policy") or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get("headers_policy") or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get("proxy_policy") or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get("logging_policy") or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get("http_logging_policy") or policies.HttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get("retry_policy") or policies.RetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get("custom_hook_policy") or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get("redirect_policy") or policies.RedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get("authentication_policy") if self.credential and not self.authentication_policy: - self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs) + self.authentication_policy = policies.BearerTokenCredentialPolicy( + self.credential, *self.credential_scopes, **kwargs + ) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_patch.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_patch.py index 0ad201a8c586..f7dd32510333 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_patch.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_patch.py @@ -10,6 +10,7 @@ __all__: List[str] = [] # Add all objects you want publicly available to users at this package level + def patch_sdk(): """Do not remove from this file. diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_serialization.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_serialization.py index 2e44d8666b2b..7c1dedb5133d 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_serialization.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_serialization.py @@ -37,6 +37,7 @@ import re import sys import codecs + try: from urllib import quote # type: ignore except ImportError: @@ -49,15 +50,16 @@ from azure.core.exceptions import DeserializationError, SerializationError, raise_with_traceback -_BOM = codecs.BOM_UTF8.decode(encoding='utf-8') +_BOM = codecs.BOM_UTF8.decode(encoding="utf-8") if TYPE_CHECKING: from typing import Optional, Union, AnyStr, IO, Mapping + class RawDeserializer: # Accept "text" because we're open minded people... - JSON_REGEXP = re.compile(r'^(application|text)/([a-z+.]+\+)?json$') + JSON_REGEXP = re.compile(r"^(application|text)/([a-z+.]+\+)?json$") # Name used in context CONTEXT_NAME = "deserialized_data" @@ -75,12 +77,12 @@ def deserialize_from_text(cls, data, content_type=None): :type data: str or bytes or IO :param str content_type: The content type. """ - if hasattr(data, 'read'): + if hasattr(data, "read"): # Assume a stream data = cast(IO, data).read() if isinstance(data, bytes): - data_as_str = data.decode(encoding='utf-8-sig') + data_as_str = data.decode(encoding="utf-8-sig") else: # Explain to mypy the correct type. data_as_str = cast(str, data) @@ -116,7 +118,8 @@ def _json_attemp(data): try: return True, json.loads(data) except ValueError: - return False, None # Don't care about this one + return False, None # Don't care about this one + success, json_result = _json_attemp(data) if success: return json_result @@ -139,8 +142,8 @@ def deserialize_from_http_generics(cls, body_bytes, headers): """ # Try to use content-type from headers if available content_type = None - if 'content-type' in headers: - content_type = headers['content-type'].split(";")[0].strip().lower() + if "content-type" in headers: + content_type = headers["content-type"].split(";")[0].strip().lower() # Ouch, this server did not declare what it sent... # Let's guess it's JSON... # Also, since Autorest was considering that an empty body was a valid JSON, @@ -152,6 +155,7 @@ def deserialize_from_http_generics(cls, body_bytes, headers): return cls.deserialize_from_text(body_bytes, content_type) return None + try: basestring # type: ignore unicode_str = unicode # type: ignore @@ -162,10 +166,11 @@ def deserialize_from_http_generics(cls, body_bytes, headers): _LOGGER = logging.getLogger(__name__) try: - _long_type = long # type: ignore + _long_type = long # type: ignore except NameError: _long_type = int + class UTC(datetime.tzinfo): """Time Zone info for handling UTC""" @@ -181,9 +186,11 @@ def dst(self, dt): """No daylight saving for UTC.""" return datetime.timedelta(hours=1) + try: from datetime import timezone as _FixedOffset except ImportError: # Python 2.7 + class _FixedOffset(datetime.tzinfo): # type: ignore """Fixed offset in minutes east from UTC. Copy/pasted from Python doc @@ -197,7 +204,7 @@ def utcoffset(self, dt): return self.__offset def tzname(self, dt): - return str(self.__offset.total_seconds()/3600) + return str(self.__offset.total_seconds() / 3600) def __repr__(self): return "".format(self.tzname(None)) @@ -208,14 +215,17 @@ def dst(self, dt): def __getinitargs__(self): return (self.__offset,) + try: from datetime import timezone + TZ_UTC = timezone.utc # type: ignore except ImportError: TZ_UTC = UTC() # type: ignore _FLATTEN = re.compile(r"(? y, @@ -502,25 +518,25 @@ class Serializer(object): "max_items": lambda x, y: len(x) > y, "pattern": lambda x, y: not re.match(y, x, re.UNICODE), "unique": lambda x, y: len(x) != len(set(x)), - "multiple": lambda x, y: x % y != 0 - } + "multiple": lambda x, y: x % y != 0, + } def __init__(self, classes=None): self.serialize_type = { - 'iso-8601': Serializer.serialize_iso, - 'rfc-1123': Serializer.serialize_rfc, - 'unix-time': Serializer.serialize_unix, - 'duration': Serializer.serialize_duration, - 'date': Serializer.serialize_date, - 'time': Serializer.serialize_time, - 'decimal': Serializer.serialize_decimal, - 'long': Serializer.serialize_long, - 'bytearray': Serializer.serialize_bytearray, - 'base64': Serializer.serialize_base64, - 'object': self.serialize_object, - '[]': self.serialize_iter, - '{}': self.serialize_dict - } + "iso-8601": Serializer.serialize_iso, + "rfc-1123": Serializer.serialize_rfc, + "unix-time": Serializer.serialize_unix, + "duration": Serializer.serialize_duration, + "date": Serializer.serialize_date, + "time": Serializer.serialize_time, + "decimal": Serializer.serialize_decimal, + "long": Serializer.serialize_long, + "bytearray": Serializer.serialize_bytearray, + "base64": Serializer.serialize_base64, + "object": self.serialize_object, + "[]": self.serialize_iter, + "{}": self.serialize_dict, + } self.dependencies = dict(classes) if classes else {} self.key_transformer = full_restapi_key_transformer self.client_side_validation = True @@ -542,14 +558,12 @@ def _serialize(self, target_obj, data_type=None, **kwargs): class_name = target_obj.__class__.__name__ if data_type: - return self.serialize_data( - target_obj, data_type, **kwargs) + return self.serialize_data(target_obj, data_type, **kwargs) if not hasattr(target_obj, "_attribute_map"): data_type = type(target_obj).__name__ if data_type in self.basic_types.values(): - return self.serialize_data( - target_obj, data_type, **kwargs) + return self.serialize_data(target_obj, data_type, **kwargs) # Force "is_xml" kwargs if we detect a XML model try: @@ -564,10 +578,10 @@ def _serialize(self, target_obj, data_type=None, **kwargs): attributes = target_obj._attribute_map for attr, attr_desc in attributes.items(): attr_name = attr - if not keep_readonly and target_obj._validation.get(attr_name, {}).get('readonly', False): + if not keep_readonly and target_obj._validation.get(attr_name, {}).get("readonly", False): continue - if attr_name == "additional_properties" and attr_desc["key"] == '': + if attr_name == "additional_properties" and attr_desc["key"] == "": if target_obj.additional_properties is not None: serialized.update(target_obj.additional_properties) continue @@ -575,21 +589,19 @@ def _serialize(self, target_obj, data_type=None, **kwargs): orig_attr = getattr(target_obj, attr) if is_xml_model_serialization: - pass # Don't provide "transformer" for XML for now. Keep "orig_attr" - else: # JSON + pass # Don't provide "transformer" for XML for now. Keep "orig_attr" + else: # JSON keys, orig_attr = key_transformer(attr, attr_desc.copy(), orig_attr) keys = keys if isinstance(keys, list) else [keys] - kwargs["serialization_ctxt"] = attr_desc - new_attr = self.serialize_data(orig_attr, attr_desc['type'], **kwargs) - + new_attr = self.serialize_data(orig_attr, attr_desc["type"], **kwargs) if is_xml_model_serialization: - xml_desc = attr_desc.get('xml', {}) - xml_name = xml_desc.get('name', attr_desc['key']) - xml_prefix = xml_desc.get('prefix', None) - xml_ns = xml_desc.get('ns', None) + xml_desc = attr_desc.get("xml", {}) + xml_name = xml_desc.get("name", attr_desc["key"]) + xml_prefix = xml_desc.get("prefix", None) + xml_ns = xml_desc.get("ns", None) if xml_desc.get("attr", False): if xml_ns: ET.register_namespace(xml_prefix, xml_ns) @@ -603,23 +615,19 @@ def _serialize(self, target_obj, data_type=None, **kwargs): serialized.extend(new_attr) elif isinstance(new_attr, ET.Element): # If the down XML has no XML/Name, we MUST replace the tag with the local tag. But keeping the namespaces. - if 'name' not in getattr(orig_attr, '_xml_map', {}): + if "name" not in getattr(orig_attr, "_xml_map", {}): splitted_tag = new_attr.tag.split("}") - if len(splitted_tag) == 2: # Namespace + if len(splitted_tag) == 2: # Namespace new_attr.tag = "}".join([splitted_tag[0], xml_name]) else: new_attr.tag = xml_name serialized.append(new_attr) else: # That's a basic type # Integrate namespace if necessary - local_node = _create_xml_node( - xml_name, - xml_prefix, - xml_ns - ) + local_node = _create_xml_node(xml_name, xml_prefix, xml_ns) local_node.text = unicode_str(new_attr) serialized.append(local_node) - else: # JSON + else: # JSON for k in reversed(keys): unflattened = {k: new_attr} new_attr = unflattened @@ -635,8 +643,7 @@ def _serialize(self, target_obj, data_type=None, **kwargs): continue except (AttributeError, KeyError, TypeError) as err: - msg = "Attribute {} in object {} cannot be serialized.\n{}".format( - attr_name, class_name, str(target_obj)) + msg = "Attribute {} in object {} cannot be serialized.\n{}".format(attr_name, class_name, str(target_obj)) raise_with_traceback(SerializationError, msg, err) else: return serialized @@ -652,7 +659,7 @@ def body(self, data, data_type, **kwargs): """ # Just in case this is a dict - internal_data_type = data_type.strip('[]{}') + internal_data_type = data_type.strip("[]{}") internal_data_type = self.dependencies.get(internal_data_type, None) try: is_xml_model_serialization = kwargs["is_xml"] @@ -675,12 +682,11 @@ def body(self, data, data_type, **kwargs): deserializer.key_extractors = [ rest_key_case_insensitive_extractor, attribute_key_case_insensitive_extractor, - last_rest_key_case_insensitive_extractor + last_rest_key_case_insensitive_extractor, ] data = deserializer._deserialize(data_type, data) except DeserializationError as err: - raise_with_traceback( - SerializationError, "Unable to build a model: "+str(err), err) + raise_with_traceback(SerializationError, "Unable to build a model: " + str(err), err) return self._serialize(data, data_type, **kwargs) @@ -695,13 +701,13 @@ def url(self, name, data, data_type, **kwargs): """ try: output = self.serialize_data(data, data_type, **kwargs) - if data_type == 'bool': + if data_type == "bool": output = json.dumps(output) - if kwargs.get('skip_quote') is True: + if kwargs.get("skip_quote") is True: output = str(output) else: - output = quote(str(output), safe='') + output = quote(str(output), safe="") except SerializationError: raise TypeError("{} must be type {}.".format(name, data_type)) else: @@ -720,27 +726,19 @@ def query(self, name, data, data_type, **kwargs): # Treat the list aside, since we don't want to encode the div separator if data_type.startswith("["): internal_data_type = data_type[1:-1] - data = [ - self.serialize_data(d, internal_data_type, **kwargs) if d is not None else "" - for d - in data - ] - if not kwargs.get('skip_quote', False): - data = [ - quote(str(d), safe='') - for d - in data - ] + data = [self.serialize_data(d, internal_data_type, **kwargs) if d is not None else "" for d in data] + if not kwargs.get("skip_quote", False): + data = [quote(str(d), safe="") for d in data] return str(self.serialize_iter(data, internal_data_type, **kwargs)) # Not a list, regular serialization output = self.serialize_data(data, data_type, **kwargs) - if data_type == 'bool': + if data_type == "bool": output = json.dumps(output) - if kwargs.get('skip_quote') is True: + if kwargs.get("skip_quote") is True: output = str(output) else: - output = quote(str(output), safe='') + output = quote(str(output), safe="") except SerializationError: raise TypeError("{} must be type {}.".format(name, data_type)) else: @@ -756,11 +754,11 @@ def header(self, name, data, data_type, **kwargs): :raises: ValueError if data is None """ try: - if data_type in ['[str]']: + if data_type in ["[str]"]: data = ["" if d is None else d for d in data] output = self.serialize_data(data, data_type, **kwargs) - if data_type == 'bool': + if data_type == "bool": output = json.dumps(output) except SerializationError: raise TypeError("{} must be type {}.".format(name, data_type)) @@ -796,13 +794,11 @@ def serialize_data(self, data, data_type, **kwargs): iter_type = data_type[0] + data_type[-1] if iter_type in self.serialize_type: - return self.serialize_type[iter_type]( - data, data_type[1:-1], **kwargs) + return self.serialize_type[iter_type](data, data_type[1:-1], **kwargs) except (ValueError, TypeError) as err: msg = "Unable to serialize value: {!r} as type: {!r}." - raise_with_traceback( - SerializationError, msg.format(data, data_type), err) + raise_with_traceback(SerializationError, msg.format(data, data_type), err) else: return self._serialize(data, **kwargs) @@ -829,7 +825,7 @@ def serialize_basic(cls, data, data_type, **kwargs): custom_serializer = cls._get_custom_serializers(data_type, **kwargs) if custom_serializer: return custom_serializer(data) - if data_type == 'str': + if data_type == "str": return cls.serialize_unicode(data) return eval(data_type)(data) # nosec @@ -886,25 +882,21 @@ def serialize_iter(self, data, iter_type, div=None, **kwargs): serialized.append(None) if div: - serialized = ['' if s is None else str(s) for s in serialized] + serialized = ["" if s is None else str(s) for s in serialized] serialized = div.join(serialized) - if 'xml' in serialization_ctxt or is_xml: + if "xml" in serialization_ctxt or is_xml: # XML serialization is more complicated - xml_desc = serialization_ctxt.get('xml', {}) - xml_name = xml_desc.get('name') + xml_desc = serialization_ctxt.get("xml", {}) + xml_name = xml_desc.get("name") if not xml_name: - xml_name = serialization_ctxt['key'] + xml_name = serialization_ctxt["key"] # Create a wrap node if necessary (use the fact that Element and list have "append") is_wrapped = xml_desc.get("wrapped", False) node_name = xml_desc.get("itemsName", xml_name) if is_wrapped: - final_result = _create_xml_node( - xml_name, - xml_desc.get('prefix', None), - xml_desc.get('ns', None) - ) + final_result = _create_xml_node(xml_name, xml_desc.get("prefix", None), xml_desc.get("ns", None)) else: final_result = [] # All list elements to "local_node" @@ -912,11 +904,7 @@ def serialize_iter(self, data, iter_type, div=None, **kwargs): if isinstance(el, ET.Element): el_node = el else: - el_node = _create_xml_node( - node_name, - xml_desc.get('prefix', None), - xml_desc.get('ns', None) - ) + el_node = _create_xml_node(node_name, xml_desc.get("prefix", None), xml_desc.get("ns", None)) if el is not None: # Otherwise it writes "None" :-p el_node.text = str(el) final_result.append(el_node) @@ -936,21 +924,16 @@ def serialize_dict(self, attr, dict_type, **kwargs): serialized = {} for key, value in attr.items(): try: - serialized[self.serialize_unicode(key)] = self.serialize_data( - value, dict_type, **kwargs) + serialized[self.serialize_unicode(key)] = self.serialize_data(value, dict_type, **kwargs) except ValueError: serialized[self.serialize_unicode(key)] = None - if 'xml' in serialization_ctxt: + if "xml" in serialization_ctxt: # XML serialization is more complicated - xml_desc = serialization_ctxt['xml'] - xml_name = xml_desc['name'] + xml_desc = serialization_ctxt["xml"] + xml_name = xml_desc["name"] - final_result = _create_xml_node( - xml_name, - xml_desc.get('prefix', None), - xml_desc.get('ns', None) - ) + final_result = _create_xml_node(xml_name, xml_desc.get("prefix", None), xml_desc.get("ns", None)) for key, value in serialized.items(): ET.SubElement(final_result, key).text = value return final_result @@ -996,8 +979,7 @@ def serialize_object(self, attr, **kwargs): serialized = {} for key, value in attr.items(): try: - serialized[self.serialize_unicode(key)] = self.serialize_object( - value, **kwargs) + serialized[self.serialize_unicode(key)] = self.serialize_object(value, **kwargs) except ValueError: serialized[self.serialize_unicode(key)] = None return serialized @@ -1006,8 +988,7 @@ def serialize_object(self, attr, **kwargs): serialized = [] for obj in attr: try: - serialized.append(self.serialize_object( - obj, **kwargs)) + serialized.append(self.serialize_object(obj, **kwargs)) except ValueError: pass return serialized @@ -1045,8 +1026,8 @@ def serialize_base64(attr, **kwargs): :param attr: Object to be serialized. :rtype: str """ - encoded = b64encode(attr).decode('ascii') - return encoded.strip('=').replace('+', '-').replace('/', '_') + encoded = b64encode(attr).decode("ascii") + return encoded.strip("=").replace("+", "-").replace("/", "_") @staticmethod def serialize_decimal(attr, **kwargs): @@ -1113,16 +1094,20 @@ def serialize_rfc(attr, **kwargs): """ try: if not attr.tzinfo: - _LOGGER.warning( - "Datetime with no tzinfo will be considered UTC.") + _LOGGER.warning("Datetime with no tzinfo will be considered UTC.") utc = attr.utctimetuple() except AttributeError: raise TypeError("RFC1123 object must be valid Datetime object.") return "{}, {:02} {} {:04} {:02}:{:02}:{:02} GMT".format( - Serializer.days[utc.tm_wday], utc.tm_mday, - Serializer.months[utc.tm_mon], utc.tm_year, - utc.tm_hour, utc.tm_min, utc.tm_sec) + Serializer.days[utc.tm_wday], + utc.tm_mday, + Serializer.months[utc.tm_mon], + utc.tm_year, + utc.tm_hour, + utc.tm_min, + utc.tm_sec, + ) @staticmethod def serialize_iso(attr, **kwargs): @@ -1136,19 +1121,18 @@ def serialize_iso(attr, **kwargs): attr = isodate.parse_datetime(attr) try: if not attr.tzinfo: - _LOGGER.warning( - "Datetime with no tzinfo will be considered UTC.") + _LOGGER.warning("Datetime with no tzinfo will be considered UTC.") utc = attr.utctimetuple() if utc.tm_year > 9999 or utc.tm_year < 1: raise OverflowError("Hit max or min date") - microseconds = str(attr.microsecond).rjust(6,'0').rstrip('0').ljust(3, '0') + microseconds = str(attr.microsecond).rjust(6, "0").rstrip("0").ljust(3, "0") if microseconds: - microseconds = '.'+microseconds + microseconds = "." + microseconds date = "{:04}-{:02}-{:02}T{:02}:{:02}:{:02}".format( - utc.tm_year, utc.tm_mon, utc.tm_mday, - utc.tm_hour, utc.tm_min, utc.tm_sec) - return date + microseconds + 'Z' + utc.tm_year, utc.tm_mon, utc.tm_mday, utc.tm_hour, utc.tm_min, utc.tm_sec + ) + return date + microseconds + "Z" except (ValueError, OverflowError) as err: msg = "Unable to serialize datetime object." raise_with_traceback(SerializationError, msg, err) @@ -1169,17 +1153,17 @@ def serialize_unix(attr, **kwargs): return attr try: if not attr.tzinfo: - _LOGGER.warning( - "Datetime with no tzinfo will be considered UTC.") + _LOGGER.warning("Datetime with no tzinfo will be considered UTC.") return int(calendar.timegm(attr.utctimetuple())) except AttributeError: raise TypeError("Unix time object must be valid Datetime object.") + def rest_key_extractor(attr, attr_desc, data): - key = attr_desc['key'] + key = attr_desc["key"] working_data = data - while '.' in key: + while "." in key: dict_keys = _FLATTEN.split(key) if len(dict_keys) == 1: key = _decode_attribute_map_key(dict_keys[0]) @@ -1191,15 +1175,16 @@ def rest_key_extractor(attr, attr_desc, data): # that all properties under are None as well # https://github.com/Azure/msrest-for-python/issues/197 return None - key = '.'.join(dict_keys[1:]) + key = ".".join(dict_keys[1:]) return working_data.get(key) + def rest_key_case_insensitive_extractor(attr, attr_desc, data): - key = attr_desc['key'] + key = attr_desc["key"] working_data = data - while '.' in key: + while "." in key: dict_keys = _FLATTEN.split(key) if len(dict_keys) == 1: key = _decode_attribute_map_key(dict_keys[0]) @@ -1211,30 +1196,33 @@ def rest_key_case_insensitive_extractor(attr, attr_desc, data): # that all properties under are None as well # https://github.com/Azure/msrest-for-python/issues/197 return None - key = '.'.join(dict_keys[1:]) + key = ".".join(dict_keys[1:]) if working_data: return attribute_key_case_insensitive_extractor(key, None, working_data) + def last_rest_key_extractor(attr, attr_desc, data): - """Extract the attribute in "data" based on the last part of the JSON path key. - """ - key = attr_desc['key'] + """Extract the attribute in "data" based on the last part of the JSON path key.""" + key = attr_desc["key"] dict_keys = _FLATTEN.split(key) return attribute_key_extractor(dict_keys[-1], None, data) + def last_rest_key_case_insensitive_extractor(attr, attr_desc, data): """Extract the attribute in "data" based on the last part of the JSON path key. This is the case insensitive version of "last_rest_key_extractor" """ - key = attr_desc['key'] + key = attr_desc["key"] dict_keys = _FLATTEN.split(key) return attribute_key_case_insensitive_extractor(dict_keys[-1], None, data) + def attribute_key_extractor(attr, _, data): return data.get(attr) + def attribute_key_case_insensitive_extractor(attr, _, data): found_key = None lower_attr = attr.lower() @@ -1245,6 +1233,7 @@ def attribute_key_case_insensitive_extractor(attr, _, data): return data.get(found_key) + def _extract_name_from_internal_type(internal_type): """Given an internal type XML description, extract correct XML name with namespace. @@ -1253,7 +1242,7 @@ def _extract_name_from_internal_type(internal_type): :returns: A tuple XML name + namespace dict """ internal_type_xml_map = getattr(internal_type, "_xml_map", {}) - xml_name = internal_type_xml_map.get('name', internal_type.__name__) + xml_name = internal_type_xml_map.get("name", internal_type.__name__) xml_ns = internal_type_xml_map.get("ns", None) if xml_ns: xml_name = "{}{}".format(xml_ns, xml_name) @@ -1268,17 +1257,17 @@ def xml_key_extractor(attr, attr_desc, data): if not isinstance(data, ET.Element): return None - xml_desc = attr_desc.get('xml', {}) - xml_name = xml_desc.get('name', attr_desc['key']) + xml_desc = attr_desc.get("xml", {}) + xml_name = xml_desc.get("name", attr_desc["key"]) # Look for a children - is_iter_type = attr_desc['type'].startswith("[") + is_iter_type = attr_desc["type"].startswith("[") is_wrapped = xml_desc.get("wrapped", False) internal_type = attr_desc.get("internalType", None) internal_type_xml_map = getattr(internal_type, "_xml_map", {}) # Integrate namespace if necessary - xml_ns = xml_desc.get('ns', internal_type_xml_map.get("ns", None)) + xml_ns = xml_desc.get("ns", internal_type_xml_map.get("ns", None)) if xml_ns: xml_name = "{}{}".format(xml_ns, xml_name) @@ -1294,15 +1283,15 @@ def xml_key_extractor(attr, attr_desc, data): # - Wrapped node # - Internal type is an enum (considered basic types) # - Internal type has no XML/Name node - if is_wrapped or (internal_type and (issubclass(internal_type, Enum) or 'name' not in internal_type_xml_map)): + if is_wrapped or (internal_type and (issubclass(internal_type, Enum) or "name" not in internal_type_xml_map)): children = data.findall(xml_name) # If internal type has a local name and it's not a list, I use that name - elif not is_iter_type and internal_type and 'name' in internal_type_xml_map: + elif not is_iter_type and internal_type and "name" in internal_type_xml_map: xml_name = _extract_name_from_internal_type(internal_type) children = data.findall(xml_name) # That's an array else: - if internal_type: # Complex type, ignore itemsName and use the complex type name + if internal_type: # Complex type, ignore itemsName and use the complex type name items_name = _extract_name_from_internal_type(internal_type) else: items_name = xml_desc.get("itemsName", xml_name) @@ -1311,21 +1300,22 @@ def xml_key_extractor(attr, attr_desc, data): if len(children) == 0: if is_iter_type: if is_wrapped: - return None # is_wrapped no node, we want None + return None # is_wrapped no node, we want None else: - return [] # not wrapped, assume empty list + return [] # not wrapped, assume empty list return None # Assume it's not there, maybe an optional node. # If is_iter_type and not wrapped, return all found children if is_iter_type: if not is_wrapped: return children - else: # Iter and wrapped, should have found one node only (the wrap one) + else: # Iter and wrapped, should have found one node only (the wrap one) if len(children) != 1: raise DeserializationError( "Tried to deserialize an array not wrapped, and found several nodes '{}'. Maybe you should declare this array as wrapped?".format( xml_name - )) + ) + ) return list(children[0]) # Might be empty list and that's ok. # Here it's not a itertype, we should have found one element only or empty @@ -1333,6 +1323,7 @@ def xml_key_extractor(attr, attr_desc, data): raise DeserializationError("Find several XML '{}' where it was not expected".format(xml_name)) return children[0] + class Deserializer(object): """Response object model deserializer. @@ -1340,37 +1331,32 @@ class Deserializer(object): :ivar list key_extractors: Ordered list of extractors to be used by this deserializer. """ - basic_types = {str: 'str', int: 'int', bool: 'bool', float: 'float'} + basic_types = {str: "str", int: "int", bool: "bool", float: "float"} - valid_date = re.compile( - r'\d{4}[-]\d{2}[-]\d{2}T\d{2}:\d{2}:\d{2}' - r'\.?\d*Z?[-+]?[\d{2}]?:?[\d{2}]?') + valid_date = re.compile(r"\d{4}[-]\d{2}[-]\d{2}T\d{2}:\d{2}:\d{2}" r"\.?\d*Z?[-+]?[\d{2}]?:?[\d{2}]?") def __init__(self, classes=None): self.deserialize_type = { - 'iso-8601': Deserializer.deserialize_iso, - 'rfc-1123': Deserializer.deserialize_rfc, - 'unix-time': Deserializer.deserialize_unix, - 'duration': Deserializer.deserialize_duration, - 'date': Deserializer.deserialize_date, - 'time': Deserializer.deserialize_time, - 'decimal': Deserializer.deserialize_decimal, - 'long': Deserializer.deserialize_long, - 'bytearray': Deserializer.deserialize_bytearray, - 'base64': Deserializer.deserialize_base64, - 'object': self.deserialize_object, - '[]': self.deserialize_iter, - '{}': self.deserialize_dict - } + "iso-8601": Deserializer.deserialize_iso, + "rfc-1123": Deserializer.deserialize_rfc, + "unix-time": Deserializer.deserialize_unix, + "duration": Deserializer.deserialize_duration, + "date": Deserializer.deserialize_date, + "time": Deserializer.deserialize_time, + "decimal": Deserializer.deserialize_decimal, + "long": Deserializer.deserialize_long, + "bytearray": Deserializer.deserialize_bytearray, + "base64": Deserializer.deserialize_base64, + "object": self.deserialize_object, + "[]": self.deserialize_iter, + "{}": self.deserialize_dict, + } self.deserialize_expected_types = { - 'duration': (isodate.Duration, datetime.timedelta), - 'iso-8601': (datetime.datetime) + "duration": (isodate.Duration, datetime.timedelta), + "iso-8601": (datetime.datetime), } self.dependencies = dict(classes) if classes else {} - self.key_extractors = [ - rest_key_extractor, - xml_key_extractor - ] + self.key_extractors = [rest_key_extractor, xml_key_extractor] # Additional properties only works if the "rest_key_extractor" is used to # extract the keys. Making it to work whatever the key extractor is too much # complicated, with no real scenario for now. @@ -1403,8 +1389,7 @@ def _deserialize(self, target_obj, data): """ # This is already a model, go recursive just in case if hasattr(data, "_attribute_map"): - constants = [name for name, config in getattr(data, '_validation', {}).items() - if config.get('constant')] + constants = [name for name, config in getattr(data, "_validation", {}).items() if config.get("constant")] try: for attr, mapconfig in data._attribute_map.items(): if attr in constants: @@ -1412,15 +1397,11 @@ def _deserialize(self, target_obj, data): value = getattr(data, attr) if value is None: continue - local_type = mapconfig['type'] - internal_data_type = local_type.strip('[]{}') + local_type = mapconfig["type"] + internal_data_type = local_type.strip("[]{}") if internal_data_type not in self.dependencies or isinstance(internal_data_type, Enum): continue - setattr( - data, - attr, - self._deserialize(local_type, value) - ) + setattr(data, attr, self._deserialize(local_type, value)) return data except AttributeError: return @@ -1439,12 +1420,12 @@ def _deserialize(self, target_obj, data): d_attrs = {} for attr, attr_desc in attributes.items(): # Check empty string. If it's not empty, someone has a real "additionalProperties"... - if attr == "additional_properties" and attr_desc["key"] == '': + if attr == "additional_properties" and attr_desc["key"] == "": continue raw_value = None # Enhance attr_desc with some dynamic data - attr_desc = attr_desc.copy() # Do a copy, do not change the real one - internal_data_type = attr_desc["type"].strip('[]{}') + attr_desc = attr_desc.copy() # Do a copy, do not change the real one + internal_data_type = attr_desc["type"].strip("[]{}") if internal_data_type in self.dependencies: attr_desc["internalType"] = self.dependencies[internal_data_type] @@ -1452,18 +1433,15 @@ def _deserialize(self, target_obj, data): found_value = key_extractor(attr, attr_desc, data) if found_value is not None: if raw_value is not None and raw_value != found_value: - msg = ("Ignoring extracted value '%s' from %s for key '%s'" - " (duplicate extraction, follow extractors order)" ) - _LOGGER.warning( - msg, - found_value, - key_extractor, - attr + msg = ( + "Ignoring extracted value '%s' from %s for key '%s'" + " (duplicate extraction, follow extractors order)" ) + _LOGGER.warning(msg, found_value, key_extractor, attr) continue raw_value = found_value - value = self.deserialize_data(raw_value, attr_desc['type']) + value = self.deserialize_data(raw_value, attr_desc["type"]) d_attrs[attr] = value except (AttributeError, TypeError, KeyError) as err: msg = "Unable to deserialize to object: " + class_name @@ -1475,14 +1453,17 @@ def _deserialize(self, target_obj, data): def _build_additional_properties(self, attribute_map, data): if not self.additional_properties_detection: return None - if "additional_properties" in attribute_map and attribute_map.get("additional_properties", {}).get("key") != '': + if "additional_properties" in attribute_map and attribute_map.get("additional_properties", {}).get("key") != "": # Check empty string. If it's not empty, someone has a real "additionalProperties" return None if isinstance(data, ET.Element): data = {el.tag: el.text for el in data} - known_keys = {_decode_attribute_map_key(_FLATTEN.split(desc['key'])[0]) - for desc in attribute_map.values() if desc['key'] != ''} + known_keys = { + _decode_attribute_map_key(_FLATTEN.split(desc["key"])[0]) + for desc in attribute_map.values() + if desc["key"] != "" + } present_keys = set(data.keys()) missing_keys = present_keys - known_keys return {key: data[key] for key in missing_keys} @@ -1524,9 +1505,8 @@ def failsafe_deserialize(self, target_obj, data, content_type=None): try: return self(target_obj, data, content_type=content_type) except: - _LOGGER.warning( - "Ran into a deserialization error. Ignoring since this is failsafe deserialization", - exc_info=True + _LOGGER.debug( + "Ran into a deserialization error. Ignoring since this is failsafe deserialization", exc_info=True ) return None @@ -1554,21 +1534,15 @@ def _unpack_content(raw_data, content_type=None): return context[RawDeserializer.CONTEXT_NAME] raise ValueError("This pipeline didn't have the RawDeserializer policy; can't deserialize") - #Assume this is enough to recognize universal_http.ClientResponse without importing it + # Assume this is enough to recognize universal_http.ClientResponse without importing it if hasattr(raw_data, "body"): - return RawDeserializer.deserialize_from_http_generics( - raw_data.text(), - raw_data.headers - ) + return RawDeserializer.deserialize_from_http_generics(raw_data.text(), raw_data.headers) # Assume this enough to recognize requests.Response without importing it. - if hasattr(raw_data, '_content_consumed'): - return RawDeserializer.deserialize_from_http_generics( - raw_data.text, - raw_data.headers - ) + if hasattr(raw_data, "_content_consumed"): + return RawDeserializer.deserialize_from_http_generics(raw_data.text, raw_data.headers) - if isinstance(raw_data, (basestring, bytes)) or hasattr(raw_data, 'read'): + if isinstance(raw_data, (basestring, bytes)) or hasattr(raw_data, "read"): return RawDeserializer.deserialize_from_text(raw_data, content_type) return raw_data @@ -1579,14 +1553,11 @@ def _instantiate_model(self, response, attrs, additional_properties=None): :param d_attrs: The deserialized response attributes. """ if callable(response): - subtype = getattr(response, '_subtype_map', {}) + subtype = getattr(response, "_subtype_map", {}) try: - readonly = [k for k, v in response._validation.items() - if v.get('readonly')] - const = [k for k, v in response._validation.items() - if v.get('constant')] - kwargs = {k: v for k, v in attrs.items() - if k not in subtype and k not in readonly + const} + readonly = [k for k, v in response._validation.items() if v.get("readonly")] + const = [k for k, v in response._validation.items() if v.get("constant")] + kwargs = {k: v for k, v in attrs.items() if k not in subtype and k not in readonly + const} response_obj = response(**kwargs) for attr in readonly: setattr(response_obj, attr, attrs.get(attr)) @@ -1594,8 +1565,7 @@ def _instantiate_model(self, response, attrs, additional_properties=None): response_obj.additional_properties = additional_properties return response_obj except TypeError as err: - msg = "Unable to deserialize {} into model {}. ".format( - kwargs, response) + msg = "Unable to deserialize {} into model {}. ".format(kwargs, response) raise DeserializationError(msg + str(err)) else: try: @@ -1659,13 +1629,10 @@ def deserialize_iter(self, attr, iter_type): """ if attr is None: return None - if isinstance(attr, ET.Element): # If I receive an element here, get the children + if isinstance(attr, ET.Element): # If I receive an element here, get the children attr = list(attr) if not isinstance(attr, (list, set)): - raise DeserializationError("Cannot deserialize as [{}] an object of type {}".format( - iter_type, - type(attr) - )) + raise DeserializationError("Cannot deserialize as [{}] an object of type {}".format(iter_type, type(attr))) return [self.deserialize_data(a, iter_type) for a in attr] def deserialize_dict(self, attr, dict_type): @@ -1677,7 +1644,7 @@ def deserialize_dict(self, attr, dict_type): :rtype: dict """ if isinstance(attr, list): - return {x['key']: self.deserialize_data(x['value'], dict_type) for x in attr} + return {x["key"]: self.deserialize_data(x["value"], dict_type) for x in attr} if isinstance(attr, ET.Element): # Transform value into {"Key": "value"} @@ -1698,7 +1665,7 @@ def deserialize_object(self, attr, **kwargs): # Do no recurse on XML, just return the tree as-is return attr if isinstance(attr, basestring): - return self.deserialize_basic(attr, 'str') + return self.deserialize_basic(attr, "str") obj_type = type(attr) if obj_type in self.basic_types: return self.deserialize_basic(attr, self.basic_types[obj_type]) @@ -1709,8 +1676,7 @@ def deserialize_object(self, attr, **kwargs): deserialized = {} for key, value in attr.items(): try: - deserialized[key] = self.deserialize_object( - value, **kwargs) + deserialized[key] = self.deserialize_object(value, **kwargs) except ValueError: deserialized[key] = None return deserialized @@ -1719,8 +1685,7 @@ def deserialize_object(self, attr, **kwargs): deserialized = [] for obj in attr: try: - deserialized.append(self.deserialize_object( - obj, **kwargs)) + deserialized.append(self.deserialize_object(obj, **kwargs)) except ValueError: pass return deserialized @@ -1747,23 +1712,23 @@ def deserialize_basic(self, attr, data_type): if not attr: if data_type == "str": # None or '', node is empty string. - return '' + return "" else: # None or '', node with a strong type is None. # Don't try to model "empty bool" or "empty int" return None - if data_type == 'bool': + if data_type == "bool": if attr in [True, False, 1, 0]: return bool(attr) elif isinstance(attr, basestring): - if attr.lower() in ['true', '1']: + if attr.lower() in ["true", "1"]: return True - elif attr.lower() in ['false', '0']: + elif attr.lower() in ["false", "0"]: return False raise TypeError("Invalid boolean value: {}".format(attr)) - if data_type == 'str': + if data_type == "str": return self.deserialize_unicode(attr) return eval(data_type)(attr) # nosec @@ -1845,9 +1810,9 @@ def deserialize_base64(attr): """ if isinstance(attr, ET.Element): attr = attr.text - padding = '=' * (3 - (len(attr) + 3) % 4) + padding = "=" * (3 - (len(attr) + 3) % 4) attr = attr + padding - encoded = attr.replace('-', '+').replace('_', '/') + encoded = attr.replace("-", "+").replace("_", "/") return b64decode(encoded) @staticmethod @@ -1890,7 +1855,7 @@ def deserialize_duration(attr): attr = attr.text try: duration = isodate.parse_duration(attr) - except(ValueError, OverflowError, AttributeError) as err: + except (ValueError, OverflowError, AttributeError) as err: msg = "Cannot deserialize duration object." raise_with_traceback(DeserializationError, msg, err) else: @@ -1938,8 +1903,7 @@ def deserialize_rfc(attr): try: parsed_date = email.utils.parsedate_tz(attr) date_obj = datetime.datetime( - *parsed_date[:6], - tzinfo=_FixedOffset(datetime.timedelta(minutes=(parsed_date[9] or 0)/60)) + *parsed_date[:6], tzinfo=_FixedOffset(datetime.timedelta(minutes=(parsed_date[9] or 0) / 60)) ) if not date_obj.tzinfo: date_obj = date_obj.astimezone(tz=TZ_UTC) @@ -1965,7 +1929,7 @@ def deserialize_iso(attr): if not match: raise ValueError("Invalid datetime string: " + attr) - check_decimal = attr.split('.') + check_decimal = attr.split(".") if len(check_decimal) > 1: decimal_str = "" for digit in check_decimal[1]: @@ -1980,7 +1944,7 @@ def deserialize_iso(attr): test_utc = date_obj.utctimetuple() if test_utc.tm_year > 9999 or test_utc.tm_year < 1: raise OverflowError("Hit max or min date") - except(ValueError, OverflowError, AttributeError) as err: + except (ValueError, OverflowError, AttributeError) as err: msg = "Cannot deserialize datetime object." raise_with_traceback(DeserializationError, msg, err) else: @@ -2003,4 +1967,4 @@ def deserialize_unix(attr): msg = "Cannot deserialize to unix datetime object." raise_with_traceback(DeserializationError, msg, err) else: - return date_obj \ No newline at end of file + return date_obj diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_vendor.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_vendor.py index e12b61dea670..54f238858ed8 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_vendor.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_vendor.py @@ -6,8 +6,6 @@ # -------------------------------------------------------------------------- - - def _format_url_section(template, **kwargs): components = template.split("/") while components: @@ -15,7 +13,5 @@ def _format_url_section(template, **kwargs): return template.format(**kwargs) except KeyError as key: formatted_components = template.split("/") - components = [ - c for c in formatted_components if "{}".format(key.args[0]) not in c - ] + components = [c for c in formatted_components if "{}".format(key.args[0]) not in c] template = "/".join(components) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_version.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/_version.py deleted file mode 100644 index d6cbe1e7868a..000000000000 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/_version.py +++ /dev/null @@ -1,9 +0,0 @@ -# coding=utf-8 -# -------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# -------------------------------------------------------------------------- - -VERSION = "2.1-preview" diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/__init__.py index d806bb5ca508..1dba4c709ac7 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/__init__.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/__init__.py @@ -6,7 +6,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from ._client import RenderClient +from ._client import MapsRenderClient try: from ._patch import __all__ as _patch_all @@ -14,7 +14,8 @@ except ImportError: _patch_all = [] from ._patch import patch_sdk as _patch_sdk -__all__ = ['RenderClient'] + +__all__ = ["MapsRenderClient"] __all__.extend([p for p in _patch_all if p not in __all__]) _patch_sdk() diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_client.py index 6a89dbb64c5a..eb7347b6a100 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_client.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_client.py @@ -14,18 +14,19 @@ from .. import models from .._serialization import Deserializer, Serializer -from ._configuration import RenderClientConfiguration -from .operations import RenderV2Operations +from ._configuration import MapsRenderClientConfiguration +from .operations import RenderOperations if TYPE_CHECKING: # pylint: disable=unused-import,ungrouped-imports from azure.core.credentials_async import AsyncTokenCredential -class RenderClient: # pylint: disable=client-accepts-api-version-keyword + +class MapsRenderClient: # pylint: disable=client-accepts-api-version-keyword """Azure Maps Render REST APIs. - :ivar render_v2: RenderV2Operations operations - :vartype render_v2: azure.maps.render.aio.operations.RenderV2Operations + :ivar render: RenderOperations operations + :vartype render: azure.maps.render.aio.operations.RenderOperations :param credential: Credential needed for the client to connect to Azure. Required. :type credential: ~azure.core.credentials_async.AsyncTokenCredential :param client_id: Specifies which account is intended for usage in conjunction with the Azure @@ -35,8 +36,8 @@ class RenderClient: # pylint: disable=client-accepts-api-version-keyword :type client_id: str :keyword endpoint: Service URL. Default value is "https://atlas.microsoft.com". :paramtype endpoint: str - :keyword api_version: Api Version. Default value is "2.1". Note that overriding this default - value may result in unsupported behavior. + :keyword api_version: Api Version. Default value is "2022-08-01". Note that overriding this + default value may result in unsupported behavior. :paramtype api_version: str """ @@ -48,23 +49,16 @@ def __init__( endpoint: str = "https://atlas.microsoft.com", **kwargs: Any ) -> None: - self._config = RenderClientConfiguration(credential=credential, client_id=client_id, **kwargs) + self._config = MapsRenderClientConfiguration(credential=credential, client_id=client_id, **kwargs) self._client = AsyncPipelineClient(base_url=endpoint, config=self._config, **kwargs) client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) self._serialize.client_side_validation = False - self.render_v2 = RenderV2Operations( - self._client, self._config, self._serialize, self._deserialize - ) - + self.render = RenderOperations(self._client, self._config, self._serialize, self._deserialize) - def send_request( - self, - request: HttpRequest, - **kwargs: Any - ) -> Awaitable[AsyncHttpResponse]: + def send_request(self, request: HttpRequest, **kwargs: Any) -> Awaitable[AsyncHttpResponse]: """Runs the network request through the client's chained policies. >>> from azure.core.rest import HttpRequest @@ -89,7 +83,7 @@ def send_request( async def close(self) -> None: await self._client.close() - async def __aenter__(self) -> "RenderClient": + async def __aenter__(self) -> "MapsRenderClient": await self._client.__aenter__() return self diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_configuration.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_configuration.py index 627a85b2002b..e00114b29041 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_configuration.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_configuration.py @@ -11,15 +11,15 @@ from azure.core.configuration import Configuration from azure.core.pipeline import policies -from .._version import VERSION - if TYPE_CHECKING: # pylint: disable=unused-import,ungrouped-imports from azure.core.credentials_async import AsyncTokenCredential +VERSION = "unknown" + -class RenderClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes - """Configuration for RenderClient. +class MapsRenderClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes + """Configuration for MapsRenderClient. Note that all parameters used to create this instance are saved as instance attributes. @@ -31,19 +31,14 @@ class RenderClientConfiguration(Configuration): # pylint: disable=too-many-inst from the Azure Maps management plane Account API. To use Azure AD security in Azure Maps see the following `articles `_ for guidance. Default value is None. :type client_id: str - :keyword api_version: Api Version. Default value is "2.1". Note that overriding this default - value may result in unsupported behavior. + :keyword api_version: Api Version. Default value is "2022-08-01". Note that overriding this + default value may result in unsupported behavior. :paramtype api_version: str """ - def __init__( - self, - credential: "AsyncTokenCredential", - client_id: Optional[str] = None, - **kwargs: Any - ) -> None: - super(RenderClientConfiguration, self).__init__(**kwargs) - api_version = kwargs.pop('api_version', "2.1") # type: str + def __init__(self, credential: "AsyncTokenCredential", client_id: Optional[str] = None, **kwargs: Any) -> None: + super(MapsRenderClientConfiguration, self).__init__(**kwargs) + api_version = kwargs.pop("api_version", "2022-08-01") # type: str if credential is None: raise ValueError("Parameter 'credential' must not be None.") @@ -51,22 +46,21 @@ def __init__( self.credential = credential self.client_id = client_id self.api_version = api_version - self.credential_scopes = kwargs.pop('credential_scopes', ['https://atlas.microsoft.com/.default']) - kwargs.setdefault('sdk_moniker', 'maps-render/{}'.format(VERSION)) + self.credential_scopes = kwargs.pop("credential_scopes", ["https://atlas.microsoft.com/.default"]) + kwargs.setdefault("sdk_moniker", "maps-render/{}".format(VERSION)) self._configure(**kwargs) - def _configure( - self, - **kwargs: Any - ) -> None: - self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) - self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) - self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) - self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) - self.http_logging_policy = kwargs.get('http_logging_policy') or policies.HttpLoggingPolicy(**kwargs) - self.retry_policy = kwargs.get('retry_policy') or policies.AsyncRetryPolicy(**kwargs) - self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) - self.redirect_policy = kwargs.get('redirect_policy') or policies.AsyncRedirectPolicy(**kwargs) - self.authentication_policy = kwargs.get('authentication_policy') + def _configure(self, **kwargs: Any) -> None: + self.user_agent_policy = kwargs.get("user_agent_policy") or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get("headers_policy") or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get("proxy_policy") or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get("logging_policy") or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get("http_logging_policy") or policies.HttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get("retry_policy") or policies.AsyncRetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get("custom_hook_policy") or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get("redirect_policy") or policies.AsyncRedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get("authentication_policy") if self.credential and not self.authentication_policy: - self.authentication_policy = policies.AsyncBearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs) + self.authentication_policy = policies.AsyncBearerTokenCredentialPolicy( + self.credential, *self.credential_scopes, **kwargs + ) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_patch.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_patch.py index 0ad201a8c586..f7dd32510333 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_patch.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/_patch.py @@ -10,6 +10,7 @@ __all__: List[str] = [] # Add all objects you want publicly available to users at this package level + def patch_sdk(): """Do not remove from this file. diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/__init__.py index 0a7e4b5f0754..e1ea27efbd66 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/__init__.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/__init__.py @@ -6,13 +6,14 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from ._operations import RenderV2Operations +from ._operations import RenderOperations from ._patch import __all__ as _patch_all from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import from ._patch import patch_sdk as _patch_sdk + __all__ = [ - 'RenderV2Operations', + "RenderOperations", ] __all__.extend([p for p in _patch_all if p not in __all__]) -_patch_sdk() \ No newline at end of file +_patch_sdk() diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_operations.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_operations.py index 1fd71d36ba1a..0b8abfff5087 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_operations.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_operations.py @@ -9,25 +9,44 @@ import datetime from typing import Any, AsyncIterator, Callable, Dict, List, Optional, TypeVar, Union -from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) from azure.core.pipeline import PipelineResponse from azure.core.pipeline.transport import AsyncHttpResponse from azure.core.rest import HttpRequest from azure.core.tracing.decorator_async import distributed_trace_async from ... import models as _models -from ...operations._operations import build_render_v2_get_copyright_caption_request, build_render_v2_get_copyright_for_tile_request, build_render_v2_get_copyright_for_world_request, build_render_v2_get_copyright_from_bounding_box_request, build_render_v2_get_map_attribution_request, build_render_v2_get_map_state_tile_request, build_render_v2_get_map_static_image_request, build_render_v2_get_map_tile_request, build_render_v2_get_map_tileset_request -T = TypeVar('T') +from ...operations._operations import ( + build_render_get_copyright_caption_request, + build_render_get_copyright_for_tile_request, + build_render_get_copyright_for_world_request, + build_render_get_copyright_from_bounding_box_request, + build_render_get_map_attribution_request, + build_render_get_map_state_tile_request, + build_render_get_map_static_image_request, + build_render_get_map_tile_request, + build_render_get_map_tileset_request, +) + +T = TypeVar("T") ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] -class RenderV2Operations: + +class RenderOperations: """ .. warning:: **DO NOT** instantiate this class directly. Instead, you should access the following operations through - :class:`~azure.maps.render.aio.RenderClient`'s - :attr:`render_v2` attribute. + :class:`~azure.maps.render.aio.MapsRenderClient`'s + :attr:`render` attribute. """ models = _models @@ -39,7 +58,6 @@ def __init__(self, *args, **kwargs) -> None: self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") - @distributed_trace_async async def get_map_tile( self, @@ -143,17 +161,19 @@ async def get_map_tile( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[AsyncIterator[bytes]] + cls = kwargs.pop("cls", None) # type: ClsType[AsyncIterator[bytes]] - - request = build_render_v2_get_map_tile_request( + request = build_render_get_map_tile_request( tileset_id=tileset_id, z=z, x=x, @@ -170,9 +190,7 @@ async def get_map_tile( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=True, - **kwargs + request, stream=True, **kwargs ) response = pipeline_response.http_response @@ -183,7 +201,7 @@ async def get_map_tile( raise HttpResponseError(response=response, model=error) response_headers = {} - response_headers['Content-Type']=self._deserialize('str', response.headers.get('Content-Type')) + response_headers["Content-Type"] = self._deserialize("str", response.headers.get("Content-Type")) deserialized = response.iter_bytes() @@ -192,14 +210,9 @@ async def get_map_tile( return deserialized - - @distributed_trace_async async def get_map_tileset( - self, - *, - tileset_id: Union[str, "_models.TilesetID"], - **kwargs: Any + self, *, tileset_id: Union[str, "_models.TilesetID"], **kwargs: Any ) -> _models.MapTileset: """**Applies to:** see pricing `tiers `_. @@ -226,17 +239,19 @@ async def get_map_tileset( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[_models.MapTileset] + cls = kwargs.pop("cls", None) # type: ClsType[_models.MapTileset] - - request = build_render_v2_get_map_tileset_request( + request = build_render_get_map_tileset_request( tileset_id=tileset_id, client_id=self._config.client_id, api_version=self._config.api_version, @@ -246,9 +261,7 @@ async def get_map_tileset( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=False, - **kwargs + request, stream=False, **kwargs ) response = pipeline_response.http_response @@ -258,23 +271,16 @@ async def get_map_tileset( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error) - deserialized = self._deserialize('MapTileset', pipeline_response) + deserialized = self._deserialize("MapTileset", pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - - @distributed_trace_async async def get_map_attribution( - self, - *, - tileset_id: Union[str, "_models.TilesetID"], - zoom: int, - bounds: List[float], - **kwargs: Any + self, *, tileset_id: Union[str, "_models.TilesetID"], zoom: int, bounds: List[float], **kwargs: Any ) -> _models.MapAttribution: """**Applies to:** see pricing `tiers `_. @@ -310,17 +316,19 @@ async def get_map_attribution( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[_models.MapAttribution] + cls = kwargs.pop("cls", None) # type: ClsType[_models.MapAttribution] - - request = build_render_v2_get_map_attribution_request( + request = build_render_get_map_attribution_request( tileset_id=tileset_id, zoom=zoom, bounds=bounds, @@ -332,9 +340,7 @@ async def get_map_attribution( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=False, - **kwargs + request, stream=False, **kwargs ) response = pipeline_response.http_response @@ -344,32 +350,23 @@ async def get_map_attribution( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error) - deserialized = self._deserialize('MapAttribution', pipeline_response) + deserialized = self._deserialize("MapAttribution", pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - - @distributed_trace_async async def get_map_state_tile( - self, - *, - z: int, - x: int, - y: int, - stateset_id: str, - **kwargs: Any + self, *, z: int, x: int, y: int, stateset_id: str, **kwargs: Any ) -> AsyncIterator[bytes]: """**Applies to:** see pricing `tiers `_. Fetches state tiles in vector format typically to be integrated into indoor maps module of map control or SDK. The map control will call this API after user turns on dynamic styling (see `Zoom Levels and Tile Grid - `_\ - ). + `_\ ). :keyword z: Zoom level for the desired tile. @@ -398,17 +395,19 @@ async def get_map_state_tile( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[AsyncIterator[bytes]] + cls = kwargs.pop("cls", None) # type: ClsType[AsyncIterator[bytes]] - - request = build_render_v2_get_map_state_tile_request( + request = build_render_get_map_state_tile_request( z=z, x=x, y=y, @@ -421,9 +420,7 @@ async def get_map_state_tile( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=True, - **kwargs + request, stream=True, **kwargs ) response = pipeline_response.http_response @@ -434,7 +431,7 @@ async def get_map_state_tile( raise HttpResponseError(response=response, model=error) response_headers = {} - response_headers['Content-Type']=self._deserialize('str', response.headers.get('Content-Type')) + response_headers["Content-Type"] = self._deserialize("str", response.headers.get("Content-Type")) deserialized = response.iter_bytes() @@ -443,19 +440,15 @@ async def get_map_state_tile( return deserialized - - @distributed_trace_async async def get_copyright_caption( - self, - format: Union[str, "_models.ResponseFormat"] = "json", - **kwargs: Any + self, format: Union[str, "_models.ResponseFormat"] = "json", **kwargs: Any ) -> _models.CopyrightCaption: """**Applies to:** see pricing `tiers `_. Copyrights API is designed to serve copyright information for Render Tile service. In addition to basic copyright for the whole map, API is serving - specific groups of copyrights for some countries. + specific groups of copyrights for some countries/regions. As an alternative to copyrights for map request, one can receive captions for displaying the map provider information on the map. @@ -468,17 +461,19 @@ async def get_copyright_caption( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[_models.CopyrightCaption] + cls = kwargs.pop("cls", None) # type: ClsType[_models.CopyrightCaption] - - request = build_render_v2_get_copyright_caption_request( + request = build_render_get_copyright_caption_request( format=format, client_id=self._config.client_id, api_version=self._config.api_version, @@ -488,9 +483,7 @@ async def get_copyright_caption( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=False, - **kwargs + request, stream=False, **kwargs ) response = pipeline_response.http_response @@ -500,15 +493,13 @@ async def get_copyright_caption( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error) - deserialized = self._deserialize('CopyrightCaption', pipeline_response) + deserialized = self._deserialize("CopyrightCaption", pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - - @distributed_trace_async async def get_map_static_image( self, @@ -530,32 +521,19 @@ async def get_map_static_image( """**Applies to:** see pricing `tiers `_. The static image service renders a user-defined, rectangular image containing a map section - using a zoom level from 0 to 20. The static image service renders a user-defined, rectangular - image containing a map section using a zoom level from 0 to 20. The supported resolution range - for the map image is from 1x1 to 8192x8192. If you are deciding when to use the static image - service over the map tile service, you may want to consider how you would like to interact with - the rendered map. If the map contents will be relatively unchanging, a static map is a good - choice. If you want to support a lot of zooming, panning and changing of the map content, the - map tile service would be a better choice. + using a zoom level from 0 to 20. The supported resolution range for the map image is from 1x1 + to 8192x8192. If you are deciding when to use the static image service over the map tile + service, you may want to consider how you would like to interact with the rendered map. If the + map contents will be relatively unchanging, a static map is a good choice. If you want to + support a lot of zooming, panning and changing of the map content, the map tile service would + be a better choice. Service also provides Image Composition functionality to get a static image back with - additional data like; pushpins and geometry overlays with following S0 and S1 capabilities. - - In S0 you can: - - - * Render up to 5 pushpins specified in the request - * Provide one custom image for the pins referenced in the request - * Add labels to the pushpins + additional data like; pushpins and geometry overlays with following capabilities. - In S1 you can: - - * Render pushpins through `Azure Maps Data Service `_ * Specify multiple pushpin styles * Render circle, polyline and polygon geometry types. - * Render of supported GeoJSON geometry types uploaded through `Azure Maps Data Service - `_ Please see `How-to-Guide `_ for detailed examples. @@ -647,8 +625,8 @@ async def get_map_static_image( :paramtype style: str or ~azure.maps.render.models.MapImageStyle :keyword zoom: Desired zoom level of the map. Zoom value must be in the range: 0-20 (inclusive). Default value is 12.:code:`
`:code:`
`Please see `Zoom Levels and Tile Grid - `_ - for details. Default value is None. + `_ for + details. Default value is None. :paramtype zoom: int :keyword center: Coordinates of the center point. Format: 'lon,lat'. Projection used @@ -823,35 +801,6 @@ async def get_map_static_image( would usually only be done with a solid-color custom image. - Getting Pushpins from Azure Maps Data Storage - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - - For all Azure Maps account SKUs other than S0, - the pushpin location information can be obtained from Azure Maps Data Storage. After uploading - a GeoJSON document containing pin locations, the Data Storage service returns a Unique Data ID - (UDID) that you can use - to reference the data in the pins parameter. - - To use the point geometry from an uploaded GeoJSON document as the pin locations, specify the - UDID in the locations - section of the pins parameter. For example, - - ``pins=default||udid-29dc105a-dee7-409f-a3f9-22b066ae4713`` - - Note that - only point and multipoint geometry, points and multipoints from geometry collections, and - point geometry from features - will be used. Linestring and polygon geometry will be ignored. If the point comes from a - feature and the feature - has a string property called "label", the value of that property will be used as the label for - the pin. - - You can mix pin locations from Data Storage and pin locations specified in the pins parameter. - Any of the pipe-delimited - pin locations can be a longitude and latitude or a UDID. For example, - - ``pins=default||-122 45|udid-29dc105a-dee7-409f-a3f9-22b066ae4713|-119 43`` - Scale, Rotation, and Opacity ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -978,24 +927,6 @@ async def get_map_static_image( ``lc0000FF|lw3|la0.60|fa0.50||-122.2 47.6|-122.2 47.7|-122.3 47.7|-122.3 47.6|-122.2 47.6`` - Getting Path locations from Azure Maps Data Storage - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - - For all Azure Maps account SKUs other than S0, the path location information can be obtained - from Azure Maps Data Storage. - After uploading a GeoJSON document containing path locations, the Data Storage service returns - a Unique Data ID (UDID) that you can use - to reference the data in the path parameter. - - To use the point geometry from an uploaded GeoJSON document as the path locations, specify the - UDID in the locations - section of the path parameter. For example, - - ``path=||udid-29dc105a-dee7-409f-a3f9-22b066ae4713`` - - Note the it is not allowed to mix path locations from Data Storage with locations specified in - the path parameter. - Style Modifier Summary ^^^^^^^^^^^^^^^^^^^^^^ @@ -1029,17 +960,19 @@ async def get_map_static_image( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[AsyncIterator[bytes]] + cls = kwargs.pop("cls", None) # type: ClsType[AsyncIterator[bytes]] - - request = build_render_v2_get_map_static_image_request( + request = build_render_get_map_static_image_request( format=format, layer=layer, style=style, @@ -1060,9 +993,7 @@ async def get_map_static_image( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=True, - **kwargs + request, stream=True, **kwargs ) response = pipeline_response.http_response @@ -1073,7 +1004,7 @@ async def get_map_static_image( raise HttpResponseError(response=response, model=error) response_headers = {} - response_headers['Content-Type']=self._deserialize('str', response.headers.get('Content-Type')) + response_headers["Content-Type"] = self._deserialize("str", response.headers.get("Content-Type")) deserialized = response.iter_bytes() @@ -1082,8 +1013,6 @@ async def get_map_static_image( return deserialized - - @distributed_trace_async async def get_copyright_from_bounding_box( self, @@ -1116,17 +1045,19 @@ async def get_copyright_from_bounding_box( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[_models.Copyright] + cls = kwargs.pop("cls", None) # type: ClsType[_models.Copyright] - - request = build_render_v2_get_copyright_from_bounding_box_request( + request = build_render_get_copyright_from_bounding_box_request( format=format, south_west=south_west, north_east=north_east, @@ -1139,9 +1070,7 @@ async def get_copyright_from_bounding_box( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=False, - **kwargs + request, stream=False, **kwargs ) response = pipeline_response.http_response @@ -1151,15 +1080,13 @@ async def get_copyright_from_bounding_box( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error) - deserialized = self._deserialize('Copyright', pipeline_response) + deserialized = self._deserialize("Copyright", pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - - @distributed_trace_async async def get_copyright_for_tile( self, @@ -1175,7 +1102,7 @@ async def get_copyright_for_tile( Copyrights API is designed to serve copyright information for Render Tile service. In addition to basic copyright for the whole map, API is serving specific groups of copyrights for some - countries. + countries/regions. Returns the copyright information for a given tile. To obtain the copyright information for a particular tile, the request should specify the tile's zoom level and x and y coordinates (see: Zoom Levels and Tile Grid). @@ -1211,17 +1138,19 @@ async def get_copyright_for_tile( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[_models.Copyright] + cls = kwargs.pop("cls", None) # type: ClsType[_models.Copyright] - - request = build_render_v2_get_copyright_for_tile_request( + request = build_render_get_copyright_for_tile_request( format=format, z=z, x=x, @@ -1235,9 +1164,7 @@ async def get_copyright_for_tile( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=False, - **kwargs + request, stream=False, **kwargs ) response = pipeline_response.http_response @@ -1247,15 +1174,13 @@ async def get_copyright_for_tile( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error) - deserialized = self._deserialize('Copyright', pipeline_response) + deserialized = self._deserialize("Copyright", pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - - @distributed_trace_async async def get_copyright_for_world( self, @@ -1268,7 +1193,7 @@ async def get_copyright_for_world( Copyrights API is designed to serve copyright information for Render Tile service. In addition to basic copyright for the whole map, API is serving specific groups of copyrights for some - countries. + countries/regions. Returns the copyright information for the world. To obtain the default copyright information for the whole world, do not specify a tile or bounding box. @@ -1283,17 +1208,19 @@ async def get_copyright_for_world( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[_models.Copyright] + cls = kwargs.pop("cls", None) # type: ClsType[_models.Copyright] - - request = build_render_v2_get_copyright_for_world_request( + request = build_render_get_copyright_for_world_request( format=format, include_text=include_text, client_id=self._config.client_id, @@ -1304,9 +1231,7 @@ async def get_copyright_for_world( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=False, - **kwargs + request, stream=False, **kwargs ) response = pipeline_response.http_response @@ -1316,11 +1241,9 @@ async def get_copyright_for_world( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error) - deserialized = self._deserialize('Copyright', pipeline_response) + deserialized = self._deserialize("Copyright", pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - - diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_patch.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_patch.py index 0ad201a8c586..f7dd32510333 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_patch.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/aio/operations/_patch.py @@ -10,6 +10,7 @@ __all__: List[str] = [] # Add all objects you want publicly available to users at this package level + def patch_sdk(): """Do not remove from this file. diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/__init__.py index 2d943c96b683..9c203868153f 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/__init__.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/__init__.py @@ -27,24 +27,25 @@ from ._patch import __all__ as _patch_all from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import from ._patch import patch_sdk as _patch_sdk + __all__ = [ - 'Copyright', - 'CopyrightCaption', - 'ErrorAdditionalInfo', - 'ErrorDetail', - 'ErrorResponse', - 'MapAttribution', - 'MapTileset', - 'RegionCopyrights', - 'RegionCopyrightsCountry', - 'IncludeText', - 'LocalizedMapView', - 'MapImageStyle', - 'MapTileSize', - 'RasterTileFormat', - 'ResponseFormat', - 'StaticMapLayer', - 'TilesetID', + "Copyright", + "CopyrightCaption", + "ErrorAdditionalInfo", + "ErrorDetail", + "ErrorResponse", + "MapAttribution", + "MapTileset", + "RegionCopyrights", + "RegionCopyrightsCountry", + "IncludeText", + "LocalizedMapView", + "MapImageStyle", + "MapTileSize", + "RasterTileFormat", + "ResponseFormat", + "StaticMapLayer", + "TilesetID", ] __all__.extend([p for p in _patch_all if p not in __all__]) -_patch_sdk() \ No newline at end of file +_patch_sdk() diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_enums.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_enums.py index f1b42d836aca..41136654920d 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_enums.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_enums.py @@ -11,17 +11,16 @@ class IncludeText(str, Enum, metaclass=CaseInsensitiveEnumMeta): - """IncludeText. - """ + """IncludeText.""" #: Include all textual data in response. YES = "yes" #: Exclude textual data from response. Only images and country names will be in response. NO = "no" + class LocalizedMapView(str, Enum, metaclass=CaseInsensitiveEnumMeta): - """LocalizedMapView. - """ + """LocalizedMapView.""" #: United Arab Emirates (Arabic View) AE = "AE" @@ -60,43 +59,43 @@ class LocalizedMapView(str, Enum, metaclass=CaseInsensitiveEnumMeta): #: Unified View (Others) UNIFIED = "Unified" + class MapImageStyle(str, Enum, metaclass=CaseInsensitiveEnumMeta): - """MapImageStyle. - """ + """MapImageStyle.""" #: Azure Maps main style MAIN = "main" #: Dark grey version of the Azure Maps main style DARK = "dark" + class MapTileSize(str, Enum, metaclass=CaseInsensitiveEnumMeta): - """MapTileSize. - """ + """MapTileSize.""" #: Return a 256 by 256 pixel tile. SIZE256 = "256" #: Return a 512 by 512 pixel tile. SIZE512 = "512" + class RasterTileFormat(str, Enum, metaclass=CaseInsensitiveEnumMeta): - """RasterTileFormat. - """ + """RasterTileFormat.""" #: An image in the png format. Supports zoom levels 0 through 18. PNG = "png" + class ResponseFormat(str, Enum, metaclass=CaseInsensitiveEnumMeta): - """ResponseFormat. - """ + """ResponseFormat.""" #: `The JavaScript Object Notation Data Interchange Format `_ JSON = "json" #: `The Extensible Markup Language `_ XML = "xml" + class StaticMapLayer(str, Enum, metaclass=CaseInsensitiveEnumMeta): - """StaticMapLayer. - """ + """StaticMapLayer.""" #: Returns an image containing all map features including polygons, borders, roads and labels. BASIC = "basic" @@ -106,74 +105,74 @@ class StaticMapLayer(str, Enum, metaclass=CaseInsensitiveEnumMeta): #: Returns an image of just the map's label information. LABELS = "labels" + class TilesetID(str, Enum, metaclass=CaseInsensitiveEnumMeta): - """TilesetID. - """ + """TilesetID.""" #: A base map is a standard map that displays roads, natural and artificial features along with #: the labels for those features in a vector tile.:code:`
` - #: + #: #: Supports zoom levels 0 through 22. Format: vector (pbf). MICROSOFT_BASE = "microsoft.base" #: Displays labels for roads, natural and artificial features in a vector tile.:code:`
` - #: + #: #: Supports zoom levels 0 through 22. Format: vector (pbf). MICROSOFT_BASE_LABELS = "microsoft.base.labels" #: Displays road, boundary and label data in a vector tile.:code:`
` - #: + #: #: Supports zoom levels 0 through 22. Format: vector (pbf). MICROSOFT_BASE_HYBRID = "microsoft.base.hybrid" #: Shaded relief and terra layers.:code:`
` - #: + #: #: Supports zoom levels 0 through 6. Format: raster (png). MICROSOFT_TERRA_MAIN = "microsoft.terra.main" #: All layers with our main style.:code:`
` - #: + #: #: Supports zoom levels 0 through 22. Format: raster (png). MICROSOFT_BASE_ROAD = "microsoft.base.road" #: All layers with our dark grey style.:code:`
` - #: + #: #: Supports zoom levels 0 through 22. Format: raster (png). MICROSOFT_BASE_DARKGREY = "microsoft.base.darkgrey" #: Label data in our main style.:code:`
` - #: + #: #: Supports zoom levels 0 through 22. Format: raster (png). MICROSOFT_BASE_LABELS_ROAD = "microsoft.base.labels.road" #: Label data in our dark grey style.:code:`
` - #: + #: #: Supports zoom levels 0 through 22. Format: raster (png). MICROSOFT_BASE_LABELS_DARKGREY = "microsoft.base.labels.darkgrey" #: Road, boundary and label data in our main style.:code:`
` - #: + #: #: Supports zoom levels 0 through 22. Format: raster (png). MICROSOFT_BASE_HYBRID_ROAD = "microsoft.base.hybrid.road" #: Road, boundary and label data in our dark grey style.:code:`
` - #: + #: #: Supports zoom levels 0 through 22. Format: raster (png). MICROSOFT_BASE_HYBRID_DARKGREY = "microsoft.base.hybrid.darkgrey" #: A combination of satellite and aerial imagery. Only available in S1 pricing SKU.:code:`
` - #: + #: #: Supports zoom levels 1 through 19. Format: raster (jpeg). MICROSOFT_IMAGERY = "microsoft.imagery" #: Weather radar tiles. Latest weather radar images including areas of rain, snow, ice and mixed #: conditions. Please see `coverage information `_ for #: Azure Maps Weather service. To learn more about the Radar data, please see `Weather concepts #: `_.:code:`
` - #: + #: #: Supports zoom levels 0 through 15. Format: raster (png). MICROSOFT_WEATHER_RADAR_MAIN = "microsoft.weather.radar.main" #: Weather infrared tiles. Latest Infrared Satellite images shows clouds by their temperature. #: Please see `coverage information `_ for Azure Maps #: Weather service. To learn more about the returned Satellite data, please see `Weather concepts #: `_.:code:`
` - #: + #: #: Supports zoom levels 0 through 15. Format: raster (png). MICROSOFT_WEATHER_INFRARED_MAIN = "microsoft.weather.infrared.main" #: Digital Elevation Model tiles. The tiles are in the GeoTIFF format with a single 32-bit #: floating point band. The tiles cover the whole landmass of Earth. Some small islands (e.g., #: atolls) might not be represented accurately.:code:`
` - #: - #: + #: + #: #: * The vertical unit for measurement of elevation height is meters. An elevation value of #: -32767.0 is used for points that have no data value, most often returned where there isn't #: landmass (i.e. water).:code:`
` @@ -186,14 +185,14 @@ class TilesetID(str, Enum, metaclass=CaseInsensitiveEnumMeta): #: `_. Urban areas are approximately #: leveled down to ground level. All other areas are represented by the object surface level #: (e.g., trees). :code:`
` - #: + #: #: Supports zoom level 13 only. Format: raster (tiff). MICROSOFT_DEM = "microsoft.dem" #: Digital elevation contour line tiles. Compared to the microsoft.dem option, these tiles are in #: vector format and intended for visualization purpose. The tiles cover the whole landmass of #: Earth. Some small islands (e.g., atolls) might not be represented accurately.:code:`
` - #: - #: + #: + #: #: * The vertical unit for measurement of elevation height is meters.:code:`
` #: * The horizontal reference datum is the World Geodetic System 1984 (WGS84-G1150) and the #: vertical reference datum is the Earth Gravitational Model 2008 (EGM2008).:code:`
` @@ -201,7 +200,7 @@ class TilesetID(str, Enum, metaclass=CaseInsensitiveEnumMeta): #: `_. Urban areas are approximately #: leveled down to ground level. All other areas are represented by the object surface level #: (e.g., trees).:code:`
` - #: + #: #: Supports zoom levels 9 through 14. Format: vector (pbf). MICROSOFT_DEM_CONTOURS = "microsoft.dem.contours" #: absolute traffic tiles in vector diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_models.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_models.py index 30333cd57cf3..b2981920a975 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_models.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_models.py @@ -30,9 +30,9 @@ class Copyright(_serialization.Model): """ _validation = { - 'format_version': {'readonly': True}, - 'general_copyrights': {'readonly': True}, - 'regions': {'readonly': True}, + "format_version": {"readonly": True}, + "general_copyrights": {"readonly": True}, + "regions": {"readonly": True}, } _attribute_map = { @@ -41,12 +41,8 @@ class Copyright(_serialization.Model): "regions": {"key": "regions", "type": "[RegionCopyrights]"}, } - def __init__( - self, - **kwargs - ): - """ - """ + def __init__(self, **kwargs): + """ """ super().__init__(**kwargs) self.format_version = None self.general_copyrights = None @@ -65,8 +61,8 @@ class CopyrightCaption(_serialization.Model): """ _validation = { - 'format_version': {'readonly': True}, - 'copyrights_caption': {'readonly': True}, + "format_version": {"readonly": True}, + "copyrights_caption": {"readonly": True}, } _attribute_map = { @@ -74,12 +70,8 @@ class CopyrightCaption(_serialization.Model): "copyrights_caption": {"key": "copyrightsCaption", "type": "str"}, } - def __init__( - self, - **kwargs - ): - """ - """ + def __init__(self, **kwargs): + """ """ super().__init__(**kwargs) self.format_version = None self.copyrights_caption = None @@ -97,8 +89,8 @@ class ErrorAdditionalInfo(_serialization.Model): """ _validation = { - 'type': {'readonly': True}, - 'info': {'readonly': True}, + "type": {"readonly": True}, + "info": {"readonly": True}, } _attribute_map = { @@ -106,12 +98,8 @@ class ErrorAdditionalInfo(_serialization.Model): "info": {"key": "info", "type": "object"}, } - def __init__( - self, - **kwargs - ): - """ - """ + def __init__(self, **kwargs): + """ """ super().__init__(**kwargs) self.type = None self.info = None @@ -135,11 +123,11 @@ class ErrorDetail(_serialization.Model): """ _validation = { - 'code': {'readonly': True}, - 'message': {'readonly': True}, - 'target': {'readonly': True}, - 'details': {'readonly': True}, - 'additional_info': {'readonly': True}, + "code": {"readonly": True}, + "message": {"readonly": True}, + "target": {"readonly": True}, + "details": {"readonly": True}, + "additional_info": {"readonly": True}, } _attribute_map = { @@ -150,12 +138,8 @@ class ErrorDetail(_serialization.Model): "additional_info": {"key": "additionalInfo", "type": "[ErrorAdditionalInfo]"}, } - def __init__( - self, - **kwargs - ): - """ - """ + def __init__(self, **kwargs): + """ """ super().__init__(**kwargs) self.code = None self.message = None @@ -175,12 +159,7 @@ class ErrorResponse(_serialization.Model): "error": {"key": "error", "type": "ErrorDetail"}, } - def __init__( - self, - *, - error: Optional["_models.ErrorDetail"] = None, - **kwargs - ): + def __init__(self, *, error: Optional["_models.ErrorDetail"] = None, **kwargs): """ :keyword error: The error object. :paramtype error: ~azure.maps.render.models.ErrorDetail @@ -200,12 +179,7 @@ class MapAttribution(_serialization.Model): "copyrights": {"key": "copyrights", "type": "[str]"}, } - def __init__( - self, - *, - copyrights: Optional[List[str]] = None, - **kwargs - ): + def __init__(self, *, copyrights: Optional[List[str]] = None, **kwargs): """ :keyword copyrights: A list of copyright strings. :paramtype copyrights: list[str] @@ -265,10 +239,10 @@ class MapTileset(_serialization.Model): # pylint: disable=too-many-instance-att """ _validation = { - 'tilejson': {'pattern': r'\d+\.\d+\.\d+\w?[\w\d]*'}, - 'version': {'pattern': r'\d+\.\d+\.\d+\w?[\w\d]*'}, - 'min_zoom': {'maximum': 30, 'minimum': 0}, - 'max_zoom': {'maximum': 30, 'minimum': 0}, + "tilejson": {"pattern": r"\d+\.\d+\.\d+\w?[\w\d]*"}, + "version": {"pattern": r"\d+\.\d+\.\d+\w?[\w\d]*"}, + "min_zoom": {"maximum": 30, "minimum": 0}, + "max_zoom": {"maximum": 30, "minimum": 0}, } _attribute_map = { @@ -386,8 +360,8 @@ class RegionCopyrights(_serialization.Model): """ _validation = { - 'copyrights': {'readonly': True}, - 'country': {'readonly': True}, + "copyrights": {"readonly": True}, + "country": {"readonly": True}, } _attribute_map = { @@ -395,12 +369,8 @@ class RegionCopyrights(_serialization.Model): "country": {"key": "country", "type": "RegionCopyrightsCountry"}, } - def __init__( - self, - **kwargs - ): - """ - """ + def __init__(self, **kwargs): + """ """ super().__init__(**kwargs) self.copyrights = None self.country = None @@ -418,8 +388,8 @@ class RegionCopyrightsCountry(_serialization.Model): """ _validation = { - 'iso3': {'readonly': True}, - 'label': {'readonly': True}, + "iso3": {"readonly": True}, + "label": {"readonly": True}, } _attribute_map = { @@ -427,12 +397,8 @@ class RegionCopyrightsCountry(_serialization.Model): "label": {"key": "label", "type": "str"}, } - def __init__( - self, - **kwargs - ): - """ - """ + def __init__(self, **kwargs): + """ """ super().__init__(**kwargs) self.iso3 = None self.label = None diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_patch.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_patch.py index 0ad201a8c586..f7dd32510333 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_patch.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/models/_patch.py @@ -10,6 +10,7 @@ __all__: List[str] = [] # Add all objects you want publicly available to users at this package level + def patch_sdk(): """Do not remove from this file. diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/__init__.py index 0a7e4b5f0754..e1ea27efbd66 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/__init__.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/__init__.py @@ -6,13 +6,14 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from ._operations import RenderV2Operations +from ._operations import RenderOperations from ._patch import __all__ as _patch_all from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import from ._patch import patch_sdk as _patch_sdk + __all__ = [ - 'RenderV2Operations', + "RenderOperations", ] __all__.extend([p for p in _patch_all if p not in __all__]) -_patch_sdk() \ No newline at end of file +_patch_sdk() diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_operations.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_operations.py index a0030c70cb4d..127fa33c58e4 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_operations.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_operations.py @@ -9,7 +9,14 @@ import datetime from typing import Any, Callable, Dict, Iterator, List, Optional, TypeVar, Union -from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) from azure.core.pipeline import PipelineResponse from azure.core.pipeline.transport import HttpResponse from azure.core.rest import HttpRequest @@ -19,14 +26,15 @@ from .. import models as _models from .._serialization import Serializer from .._vendor import _format_url_section -T = TypeVar('T') + +T = TypeVar("T") ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False -def build_render_v2_get_map_tile_request( +def build_render_get_map_tile_request( *, tileset_id: Union[str, "_models.TilesetID"], z: int, @@ -42,75 +50,62 @@ def build_render_v2_get_map_tile_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str - accept = _headers.pop('Accept', "application/json, image/jpeg, image/png, image/pbf, application/vnd.mapbox-vector-tile") + api_version = kwargs.pop("api_version", _params.pop("api-version", "2022-08-01")) # type: str + accept = _headers.pop( + "Accept", "application/json, image/jpeg, image/png, image/pbf, application/vnd.mapbox-vector-tile" + ) # Construct URL _url = "/map/tile" # Construct parameters - _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') - _params['tilesetId'] = _SERIALIZER.query("tileset_id", tileset_id, 'str') - _params['zoom'] = _SERIALIZER.query("z", z, 'int') - _params['x'] = _SERIALIZER.query("x", x, 'int') - _params['y'] = _SERIALIZER.query("y", y, 'int') + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + _params["tilesetId"] = _SERIALIZER.query("tileset_id", tileset_id, "str") + _params["zoom"] = _SERIALIZER.query("z", z, "int") + _params["x"] = _SERIALIZER.query("x", x, "int") + _params["y"] = _SERIALIZER.query("y", y, "int") if time_stamp is not None: - _params['timeStamp'] = _SERIALIZER.query("time_stamp", time_stamp, 'iso-8601') + _params["timeStamp"] = _SERIALIZER.query("time_stamp", time_stamp, "iso-8601") if tile_size is not None: - _params['tileSize'] = _SERIALIZER.query("tile_size", tile_size, 'str') + _params["tileSize"] = _SERIALIZER.query("tile_size", tile_size, "str") if language is not None: - _params['language'] = _SERIALIZER.query("language", language, 'str') + _params["language"] = _SERIALIZER.query("language", language, "str") if localized_map_view is not None: - _params['view'] = _SERIALIZER.query("localized_map_view", localized_map_view, 'str') + _params["view"] = _SERIALIZER.query("localized_map_view", localized_map_view, "str") # Construct headers if client_id is not None: - _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') - _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') - - return HttpRequest( - method="GET", - url=_url, - params=_params, - headers=_headers, - **kwargs - ) + _headers["x-ms-client-id"] = _SERIALIZER.header("client_id", client_id, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) -def build_render_v2_get_map_tileset_request( - *, - tileset_id: Union[str, "_models.TilesetID"], - client_id: Optional[str] = None, - **kwargs: Any + +def build_render_get_map_tileset_request( + *, tileset_id: Union[str, "_models.TilesetID"], client_id: Optional[str] = None, **kwargs: Any ) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str - accept = _headers.pop('Accept', "application/json") + api_version = kwargs.pop("api_version", _params.pop("api-version", "2022-08-01")) # type: str + accept = _headers.pop("Accept", "application/json") # Construct URL _url = "/map/tileset" # Construct parameters - _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') - _params['tilesetId'] = _SERIALIZER.query("tileset_id", tileset_id, 'str') + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + _params["tilesetId"] = _SERIALIZER.query("tileset_id", tileset_id, "str") # Construct headers if client_id is not None: - _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') - _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') - - return HttpRequest( - method="GET", - url=_url, - params=_params, - headers=_headers, - **kwargs - ) + _headers["x-ms-client-id"] = _SERIALIZER.header("client_id", client_id, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) -def build_render_v2_get_map_attribution_request( + +def build_render_get_map_attribution_request( *, tileset_id: Union[str, "_models.TilesetID"], zoom: int, @@ -121,109 +116,82 @@ def build_render_v2_get_map_attribution_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str - accept = _headers.pop('Accept', "application/json") + api_version = kwargs.pop("api_version", _params.pop("api-version", "2022-08-01")) # type: str + accept = _headers.pop("Accept", "application/json") # Construct URL _url = "/map/attribution" # Construct parameters - _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') - _params['tilesetId'] = _SERIALIZER.query("tileset_id", tileset_id, 'str') - _params['zoom'] = _SERIALIZER.query("zoom", zoom, 'int') - _params['bounds'] = _SERIALIZER.query("bounds", bounds, '[float]', div=',') + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + _params["tilesetId"] = _SERIALIZER.query("tileset_id", tileset_id, "str") + _params["zoom"] = _SERIALIZER.query("zoom", zoom, "int") + _params["bounds"] = _SERIALIZER.query("bounds", bounds, "[float]", div=",") # Construct headers if client_id is not None: - _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') - _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') - - return HttpRequest( - method="GET", - url=_url, - params=_params, - headers=_headers, - **kwargs - ) + _headers["x-ms-client-id"] = _SERIALIZER.header("client_id", client_id, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) -def build_render_v2_get_map_state_tile_request( - *, - z: int, - x: int, - y: int, - stateset_id: str, - client_id: Optional[str] = None, - **kwargs: Any + +def build_render_get_map_state_tile_request( + *, z: int, x: int, y: int, stateset_id: str, client_id: Optional[str] = None, **kwargs: Any ) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str - accept = _headers.pop('Accept', "application/vnd.mapbox-vector-tile, application/json") + api_version = kwargs.pop("api_version", _params.pop("api-version", "2022-08-01")) # type: str + accept = _headers.pop("Accept", "application/vnd.mapbox-vector-tile, application/json") # Construct URL _url = "/map/statetile" # Construct parameters - _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') - _params['zoom'] = _SERIALIZER.query("z", z, 'int') - _params['x'] = _SERIALIZER.query("x", x, 'int') - _params['y'] = _SERIALIZER.query("y", y, 'int') - _params['statesetId'] = _SERIALIZER.query("stateset_id", stateset_id, 'str') + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + _params["zoom"] = _SERIALIZER.query("z", z, "int") + _params["x"] = _SERIALIZER.query("x", x, "int") + _params["y"] = _SERIALIZER.query("y", y, "int") + _params["statesetId"] = _SERIALIZER.query("stateset_id", stateset_id, "str") # Construct headers if client_id is not None: - _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') - _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') - - return HttpRequest( - method="GET", - url=_url, - params=_params, - headers=_headers, - **kwargs - ) + _headers["x-ms-client-id"] = _SERIALIZER.header("client_id", client_id, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) -def build_render_v2_get_copyright_caption_request( - format: Union[str, "_models.ResponseFormat"] = "json", - *, - client_id: Optional[str] = None, - **kwargs: Any + +def build_render_get_copyright_caption_request( + format: Union[str, "_models.ResponseFormat"] = "json", *, client_id: Optional[str] = None, **kwargs: Any ) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str - accept = _headers.pop('Accept', "application/json") + api_version = kwargs.pop("api_version", _params.pop("api-version", "2022-08-01")) # type: str + accept = _headers.pop("Accept", "application/json") # Construct URL _url = "/map/copyright/caption/{format}" path_format_arguments = { - "format": _SERIALIZER.url("format", format, 'str'), + "format": _SERIALIZER.url("format", format, "str"), } _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") # Construct headers if client_id is not None: - _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') - _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') - - return HttpRequest( - method="GET", - url=_url, - params=_params, - headers=_headers, - **kwargs - ) + _headers["x-ms-client-id"] = _SERIALIZER.header("client_id", client_id, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) -def build_render_v2_get_map_static_image_request( +def build_render_get_map_static_image_request( format: Union[str, "_models.RasterTileFormat"] = "png", *, layer: Optional[Union[str, "_models.StaticMapLayer"]] = None, @@ -243,57 +211,53 @@ def build_render_v2_get_map_static_image_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str - accept = _headers.pop('Accept', "application/json, image/jpeg, image/png, image/pbf, application/vnd.mapbox-vector-tile") + api_version = kwargs.pop("api_version", _params.pop("api-version", "2022-08-01")) # type: str + accept = _headers.pop( + "Accept", "application/json, image/jpeg, image/png, image/pbf, application/vnd.mapbox-vector-tile" + ) # Construct URL _url = "/map/static/{format}" path_format_arguments = { - "format": _SERIALIZER.url("format", format, 'str'), + "format": _SERIALIZER.url("format", format, "str"), } _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") if layer is not None: - _params['layer'] = _SERIALIZER.query("layer", layer, 'str') + _params["layer"] = _SERIALIZER.query("layer", layer, "str") if style is not None: - _params['style'] = _SERIALIZER.query("style", style, 'str') + _params["style"] = _SERIALIZER.query("style", style, "str") if zoom is not None: - _params['zoom'] = _SERIALIZER.query("zoom", zoom, 'int', maximum=20, minimum=0) + _params["zoom"] = _SERIALIZER.query("zoom", zoom, "int", maximum=20, minimum=0) if center is not None: - _params['center'] = _SERIALIZER.query("center", center, '[float]', div=',') + _params["center"] = _SERIALIZER.query("center", center, "[float]", div=",") if bounding_box_private is not None: - _params['bbox'] = _SERIALIZER.query("bounding_box_private", bounding_box_private, '[float]', div=',') + _params["bbox"] = _SERIALIZER.query("bounding_box_private", bounding_box_private, "[float]", div=",") if height is not None: - _params['height'] = _SERIALIZER.query("height", height, 'int', maximum=8192, minimum=1) + _params["height"] = _SERIALIZER.query("height", height, "int", maximum=8192, minimum=1) if width is not None: - _params['width'] = _SERIALIZER.query("width", width, 'int', maximum=8192, minimum=1) + _params["width"] = _SERIALIZER.query("width", width, "int", maximum=8192, minimum=1) if language is not None: - _params['language'] = _SERIALIZER.query("language", language, 'str') + _params["language"] = _SERIALIZER.query("language", language, "str") if localized_map_view is not None: - _params['view'] = _SERIALIZER.query("localized_map_view", localized_map_view, 'str') + _params["view"] = _SERIALIZER.query("localized_map_view", localized_map_view, "str") if pins is not None: - _params['pins'] = [_SERIALIZER.query("pins", q, 'str') if q is not None else '' for q in pins] + _params["pins"] = [_SERIALIZER.query("pins", q, "str") if q is not None else "" for q in pins] if path is not None: - _params['path'] = [_SERIALIZER.query("path", q, 'str') if q is not None else '' for q in path] + _params["path"] = [_SERIALIZER.query("path", q, "str") if q is not None else "" for q in path] # Construct headers if client_id is not None: - _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') - _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') - - return HttpRequest( - method="GET", - url=_url, - params=_params, - headers=_headers, - **kwargs - ) + _headers["x-ms-client-id"] = _SERIALIZER.header("client_id", client_id, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) -def build_render_v2_get_copyright_from_bounding_box_request( +def build_render_get_copyright_from_bounding_box_request( format: Union[str, "_models.ResponseFormat"] = "json", *, south_west: List[float], @@ -305,39 +269,33 @@ def build_render_v2_get_copyright_from_bounding_box_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str - accept = _headers.pop('Accept', "application/json") + api_version = kwargs.pop("api_version", _params.pop("api-version", "2022-08-01")) # type: str + accept = _headers.pop("Accept", "application/json") # Construct URL _url = "/map/copyright/bounding/{format}" path_format_arguments = { - "format": _SERIALIZER.url("format", format, 'str'), + "format": _SERIALIZER.url("format", format, "str"), } _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') - _params['mincoordinates'] = _SERIALIZER.query("south_west", south_west, '[float]', div=',') - _params['maxcoordinates'] = _SERIALIZER.query("north_east", north_east, '[float]', div=',') + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + _params["mincoordinates"] = _SERIALIZER.query("south_west", south_west, "[float]", div=",") + _params["maxcoordinates"] = _SERIALIZER.query("north_east", north_east, "[float]", div=",") if include_text is not None: - _params['text'] = _SERIALIZER.query("include_text", include_text, 'str') + _params["text"] = _SERIALIZER.query("include_text", include_text, "str") # Construct headers if client_id is not None: - _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') - _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') - - return HttpRequest( - method="GET", - url=_url, - params=_params, - headers=_headers, - **kwargs - ) + _headers["x-ms-client-id"] = _SERIALIZER.header("client_id", client_id, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) -def build_render_v2_get_copyright_for_tile_request( +def build_render_get_copyright_for_tile_request( format: Union[str, "_models.ResponseFormat"] = "json", *, z: int, @@ -350,40 +308,34 @@ def build_render_v2_get_copyright_for_tile_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str - accept = _headers.pop('Accept', "application/json") + api_version = kwargs.pop("api_version", _params.pop("api-version", "2022-08-01")) # type: str + accept = _headers.pop("Accept", "application/json") # Construct URL _url = "/map/copyright/tile/{format}" path_format_arguments = { - "format": _SERIALIZER.url("format", format, 'str'), + "format": _SERIALIZER.url("format", format, "str"), } _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') - _params['zoom'] = _SERIALIZER.query("z", z, 'int') - _params['x'] = _SERIALIZER.query("x", x, 'int') - _params['y'] = _SERIALIZER.query("y", y, 'int') + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + _params["zoom"] = _SERIALIZER.query("z", z, "int") + _params["x"] = _SERIALIZER.query("x", x, "int") + _params["y"] = _SERIALIZER.query("y", y, "int") if include_text is not None: - _params['text'] = _SERIALIZER.query("include_text", include_text, 'str') + _params["text"] = _SERIALIZER.query("include_text", include_text, "str") # Construct headers if client_id is not None: - _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') - _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') - - return HttpRequest( - method="GET", - url=_url, - params=_params, - headers=_headers, - **kwargs - ) + _headers["x-ms-client-id"] = _SERIALIZER.header("client_id", client_id, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) -def build_render_v2_get_copyright_for_world_request( + +def build_render_get_copyright_for_world_request( format: Union[str, "_models.ResponseFormat"] = "json", *, include_text: Optional[Union[str, "_models.IncludeText"]] = None, @@ -393,43 +345,38 @@ def build_render_v2_get_copyright_for_world_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version = kwargs.pop('api_version', _params.pop('api-version', "2.1")) # type: str - accept = _headers.pop('Accept', "application/json") + api_version = kwargs.pop("api_version", _params.pop("api-version", "2022-08-01")) # type: str + accept = _headers.pop("Accept", "application/json") # Construct URL _url = "/map/copyright/world/{format}" path_format_arguments = { - "format": _SERIALIZER.url("format", format, 'str'), + "format": _SERIALIZER.url("format", format, "str"), } _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - _params['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") if include_text is not None: - _params['text'] = _SERIALIZER.query("include_text", include_text, 'str') + _params["text"] = _SERIALIZER.query("include_text", include_text, "str") # Construct headers if client_id is not None: - _headers['x-ms-client-id'] = _SERIALIZER.header("client_id", client_id, 'str') - _headers['Accept'] = _SERIALIZER.header("accept", accept, 'str') - - return HttpRequest( - method="GET", - url=_url, - params=_params, - headers=_headers, - **kwargs - ) + _headers["x-ms-client-id"] = _SERIALIZER.header("client_id", client_id, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) -class RenderV2Operations: + +class RenderOperations: """ .. warning:: **DO NOT** instantiate this class directly. Instead, you should access the following operations through - :class:`~azure.maps.render.RenderClient`'s - :attr:`render_v2` attribute. + :class:`~azure.maps.render.MapsRenderClient`'s + :attr:`render` attribute. """ models = _models @@ -441,7 +388,6 @@ def __init__(self, *args, **kwargs): self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") - @distributed_trace def get_map_tile( self, @@ -545,17 +491,19 @@ def get_map_tile( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[Iterator[bytes]] + cls = kwargs.pop("cls", None) # type: ClsType[Iterator[bytes]] - - request = build_render_v2_get_map_tile_request( + request = build_render_get_map_tile_request( tileset_id=tileset_id, z=z, x=x, @@ -572,9 +520,7 @@ def get_map_tile( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=True, - **kwargs + request, stream=True, **kwargs ) response = pipeline_response.http_response @@ -585,7 +531,7 @@ def get_map_tile( raise HttpResponseError(response=response, model=error) response_headers = {} - response_headers['Content-Type']=self._deserialize('str', response.headers.get('Content-Type')) + response_headers["Content-Type"] = self._deserialize("str", response.headers.get("Content-Type")) deserialized = response.iter_bytes() @@ -594,15 +540,8 @@ def get_map_tile( return deserialized - - @distributed_trace - def get_map_tileset( - self, - *, - tileset_id: Union[str, "_models.TilesetID"], - **kwargs: Any - ) -> _models.MapTileset: + def get_map_tileset(self, *, tileset_id: Union[str, "_models.TilesetID"], **kwargs: Any) -> _models.MapTileset: """**Applies to:** see pricing `tiers `_. The Get Map Tileset API allows users to request metadata for a tileset. @@ -628,17 +567,19 @@ def get_map_tileset( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[_models.MapTileset] + cls = kwargs.pop("cls", None) # type: ClsType[_models.MapTileset] - - request = build_render_v2_get_map_tileset_request( + request = build_render_get_map_tileset_request( tileset_id=tileset_id, client_id=self._config.client_id, api_version=self._config.api_version, @@ -648,9 +589,7 @@ def get_map_tileset( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=False, - **kwargs + request, stream=False, **kwargs ) response = pipeline_response.http_response @@ -660,23 +599,16 @@ def get_map_tileset( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error) - deserialized = self._deserialize('MapTileset', pipeline_response) + deserialized = self._deserialize("MapTileset", pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - - @distributed_trace def get_map_attribution( - self, - *, - tileset_id: Union[str, "_models.TilesetID"], - zoom: int, - bounds: List[float], - **kwargs: Any + self, *, tileset_id: Union[str, "_models.TilesetID"], zoom: int, bounds: List[float], **kwargs: Any ) -> _models.MapAttribution: """**Applies to:** see pricing `tiers `_. @@ -712,17 +644,19 @@ def get_map_attribution( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[_models.MapAttribution] + cls = kwargs.pop("cls", None) # type: ClsType[_models.MapAttribution] - - request = build_render_v2_get_map_attribution_request( + request = build_render_get_map_attribution_request( tileset_id=tileset_id, zoom=zoom, bounds=bounds, @@ -734,9 +668,7 @@ def get_map_attribution( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=False, - **kwargs + request, stream=False, **kwargs ) response = pipeline_response.http_response @@ -746,32 +678,21 @@ def get_map_attribution( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error) - deserialized = self._deserialize('MapAttribution', pipeline_response) + deserialized = self._deserialize("MapAttribution", pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - - @distributed_trace - def get_map_state_tile( - self, - *, - z: int, - x: int, - y: int, - stateset_id: str, - **kwargs: Any - ) -> Iterator[bytes]: + def get_map_state_tile(self, *, z: int, x: int, y: int, stateset_id: str, **kwargs: Any) -> Iterator[bytes]: """**Applies to:** see pricing `tiers `_. Fetches state tiles in vector format typically to be integrated into indoor maps module of map control or SDK. The map control will call this API after user turns on dynamic styling (see `Zoom Levels and Tile Grid - `_\ - ). + `_\ ). :keyword z: Zoom level for the desired tile. @@ -800,17 +721,19 @@ def get_map_state_tile( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[Iterator[bytes]] + cls = kwargs.pop("cls", None) # type: ClsType[Iterator[bytes]] - - request = build_render_v2_get_map_state_tile_request( + request = build_render_get_map_state_tile_request( z=z, x=x, y=y, @@ -823,9 +746,7 @@ def get_map_state_tile( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=True, - **kwargs + request, stream=True, **kwargs ) response = pipeline_response.http_response @@ -836,7 +757,7 @@ def get_map_state_tile( raise HttpResponseError(response=response, model=error) response_headers = {} - response_headers['Content-Type']=self._deserialize('str', response.headers.get('Content-Type')) + response_headers["Content-Type"] = self._deserialize("str", response.headers.get("Content-Type")) deserialized = response.iter_bytes() @@ -845,19 +766,15 @@ def get_map_state_tile( return deserialized - - @distributed_trace def get_copyright_caption( - self, - format: Union[str, "_models.ResponseFormat"] = "json", - **kwargs: Any + self, format: Union[str, "_models.ResponseFormat"] = "json", **kwargs: Any ) -> _models.CopyrightCaption: """**Applies to:** see pricing `tiers `_. Copyrights API is designed to serve copyright information for Render Tile service. In addition to basic copyright for the whole map, API is serving - specific groups of copyrights for some countries. + specific groups of copyrights for some countries/regions. As an alternative to copyrights for map request, one can receive captions for displaying the map provider information on the map. @@ -870,17 +787,19 @@ def get_copyright_caption( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[_models.CopyrightCaption] + cls = kwargs.pop("cls", None) # type: ClsType[_models.CopyrightCaption] - - request = build_render_v2_get_copyright_caption_request( + request = build_render_get_copyright_caption_request( format=format, client_id=self._config.client_id, api_version=self._config.api_version, @@ -890,9 +809,7 @@ def get_copyright_caption( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=False, - **kwargs + request, stream=False, **kwargs ) response = pipeline_response.http_response @@ -902,15 +819,13 @@ def get_copyright_caption( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error) - deserialized = self._deserialize('CopyrightCaption', pipeline_response) + deserialized = self._deserialize("CopyrightCaption", pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - - @distributed_trace def get_map_static_image( self, @@ -932,32 +847,19 @@ def get_map_static_image( """**Applies to:** see pricing `tiers `_. The static image service renders a user-defined, rectangular image containing a map section - using a zoom level from 0 to 20. The static image service renders a user-defined, rectangular - image containing a map section using a zoom level from 0 to 20. The supported resolution range - for the map image is from 1x1 to 8192x8192. If you are deciding when to use the static image - service over the map tile service, you may want to consider how you would like to interact with - the rendered map. If the map contents will be relatively unchanging, a static map is a good - choice. If you want to support a lot of zooming, panning and changing of the map content, the - map tile service would be a better choice. + using a zoom level from 0 to 20. The supported resolution range for the map image is from 1x1 + to 8192x8192. If you are deciding when to use the static image service over the map tile + service, you may want to consider how you would like to interact with the rendered map. If the + map contents will be relatively unchanging, a static map is a good choice. If you want to + support a lot of zooming, panning and changing of the map content, the map tile service would + be a better choice. Service also provides Image Composition functionality to get a static image back with - additional data like; pushpins and geometry overlays with following S0 and S1 capabilities. - - In S0 you can: - - - * Render up to 5 pushpins specified in the request - * Provide one custom image for the pins referenced in the request - * Add labels to the pushpins - - In S1 you can: + additional data like; pushpins and geometry overlays with following capabilities. - * Render pushpins through `Azure Maps Data Service `_ * Specify multiple pushpin styles * Render circle, polyline and polygon geometry types. - * Render of supported GeoJSON geometry types uploaded through `Azure Maps Data Service - `_ Please see `How-to-Guide `_ for detailed examples. @@ -1049,8 +951,8 @@ def get_map_static_image( :paramtype style: str or ~azure.maps.render.models.MapImageStyle :keyword zoom: Desired zoom level of the map. Zoom value must be in the range: 0-20 (inclusive). Default value is 12.:code:`
`:code:`
`Please see `Zoom Levels and Tile Grid - `_ - for details. Default value is None. + `_ for + details. Default value is None. :paramtype zoom: int :keyword center: Coordinates of the center point. Format: 'lon,lat'. Projection used @@ -1225,35 +1127,6 @@ def get_map_static_image( would usually only be done with a solid-color custom image. - Getting Pushpins from Azure Maps Data Storage - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - - For all Azure Maps account SKUs other than S0, - the pushpin location information can be obtained from Azure Maps Data Storage. After uploading - a GeoJSON document containing pin locations, the Data Storage service returns a Unique Data ID - (UDID) that you can use - to reference the data in the pins parameter. - - To use the point geometry from an uploaded GeoJSON document as the pin locations, specify the - UDID in the locations - section of the pins parameter. For example, - - ``pins=default||udid-29dc105a-dee7-409f-a3f9-22b066ae4713`` - - Note that - only point and multipoint geometry, points and multipoints from geometry collections, and - point geometry from features - will be used. Linestring and polygon geometry will be ignored. If the point comes from a - feature and the feature - has a string property called "label", the value of that property will be used as the label for - the pin. - - You can mix pin locations from Data Storage and pin locations specified in the pins parameter. - Any of the pipe-delimited - pin locations can be a longitude and latitude or a UDID. For example, - - ``pins=default||-122 45|udid-29dc105a-dee7-409f-a3f9-22b066ae4713|-119 43`` - Scale, Rotation, and Opacity ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -1380,24 +1253,6 @@ def get_map_static_image( ``lc0000FF|lw3|la0.60|fa0.50||-122.2 47.6|-122.2 47.7|-122.3 47.7|-122.3 47.6|-122.2 47.6`` - Getting Path locations from Azure Maps Data Storage - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - - For all Azure Maps account SKUs other than S0, the path location information can be obtained - from Azure Maps Data Storage. - After uploading a GeoJSON document containing path locations, the Data Storage service returns - a Unique Data ID (UDID) that you can use - to reference the data in the path parameter. - - To use the point geometry from an uploaded GeoJSON document as the path locations, specify the - UDID in the locations - section of the path parameter. For example, - - ``path=||udid-29dc105a-dee7-409f-a3f9-22b066ae4713`` - - Note the it is not allowed to mix path locations from Data Storage with locations specified in - the path parameter. - Style Modifier Summary ^^^^^^^^^^^^^^^^^^^^^^ @@ -1431,17 +1286,19 @@ def get_map_static_image( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[Iterator[bytes]] + cls = kwargs.pop("cls", None) # type: ClsType[Iterator[bytes]] - - request = build_render_v2_get_map_static_image_request( + request = build_render_get_map_static_image_request( format=format, layer=layer, style=style, @@ -1462,9 +1319,7 @@ def get_map_static_image( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=True, - **kwargs + request, stream=True, **kwargs ) response = pipeline_response.http_response @@ -1475,7 +1330,7 @@ def get_map_static_image( raise HttpResponseError(response=response, model=error) response_headers = {} - response_headers['Content-Type']=self._deserialize('str', response.headers.get('Content-Type')) + response_headers["Content-Type"] = self._deserialize("str", response.headers.get("Content-Type")) deserialized = response.iter_bytes() @@ -1484,8 +1339,6 @@ def get_map_static_image( return deserialized - - @distributed_trace def get_copyright_from_bounding_box( self, @@ -1518,17 +1371,19 @@ def get_copyright_from_bounding_box( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[_models.Copyright] + cls = kwargs.pop("cls", None) # type: ClsType[_models.Copyright] - - request = build_render_v2_get_copyright_from_bounding_box_request( + request = build_render_get_copyright_from_bounding_box_request( format=format, south_west=south_west, north_east=north_east, @@ -1541,9 +1396,7 @@ def get_copyright_from_bounding_box( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=False, - **kwargs + request, stream=False, **kwargs ) response = pipeline_response.http_response @@ -1553,15 +1406,13 @@ def get_copyright_from_bounding_box( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error) - deserialized = self._deserialize('Copyright', pipeline_response) + deserialized = self._deserialize("Copyright", pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - - @distributed_trace def get_copyright_for_tile( self, @@ -1577,7 +1428,7 @@ def get_copyright_for_tile( Copyrights API is designed to serve copyright information for Render Tile service. In addition to basic copyright for the whole map, API is serving specific groups of copyrights for some - countries. + countries/regions. Returns the copyright information for a given tile. To obtain the copyright information for a particular tile, the request should specify the tile's zoom level and x and y coordinates (see: Zoom Levels and Tile Grid). @@ -1613,17 +1464,19 @@ def get_copyright_for_tile( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[_models.Copyright] + cls = kwargs.pop("cls", None) # type: ClsType[_models.Copyright] - - request = build_render_v2_get_copyright_for_tile_request( + request = build_render_get_copyright_for_tile_request( format=format, z=z, x=x, @@ -1637,9 +1490,7 @@ def get_copyright_for_tile( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=False, - **kwargs + request, stream=False, **kwargs ) response = pipeline_response.http_response @@ -1649,15 +1500,13 @@ def get_copyright_for_tile( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error) - deserialized = self._deserialize('Copyright', pipeline_response) + deserialized = self._deserialize("Copyright", pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - - @distributed_trace def get_copyright_for_world( self, @@ -1670,7 +1519,7 @@ def get_copyright_for_world( Copyrights API is designed to serve copyright information for Render Tile service. In addition to basic copyright for the whole map, API is serving specific groups of copyrights for some - countries. + countries/regions. Returns the copyright information for the world. To obtain the default copyright information for the whole world, do not specify a tile or bounding box. @@ -1685,17 +1534,19 @@ def get_copyright_for_world( :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { - 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, } - error_map.update(kwargs.pop('error_map', {}) or {}) + error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = kwargs.pop("params", {}) or {} - cls = kwargs.pop('cls', None) # type: ClsType[_models.Copyright] + cls = kwargs.pop("cls", None) # type: ClsType[_models.Copyright] - - request = build_render_v2_get_copyright_for_world_request( + request = build_render_get_copyright_for_world_request( format=format, include_text=include_text, client_id=self._config.client_id, @@ -1706,9 +1557,7 @@ def get_copyright_for_world( request.url = self._client.format_url(request.url) # type: ignore pipeline_response = self._client._pipeline.run( # type: ignore # pylint: disable=protected-access - request, - stream=False, - **kwargs + request, stream=False, **kwargs ) response = pipeline_response.http_response @@ -1718,11 +1567,9 @@ def get_copyright_for_world( error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error) - deserialized = self._deserialize('Copyright', pipeline_response) + deserialized = self._deserialize("Copyright", pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - - diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_patch.py b/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_patch.py index 0ad201a8c586..f7dd32510333 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_patch.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_generated/operations/_patch.py @@ -10,6 +10,7 @@ __all__: List[str] = [] # Add all objects you want publicly available to users at this package level + def patch_sdk(): """Do not remove from this file. diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_version.py b/sdk/maps/azure-maps-render/azure/maps/render/_version.py index 06d8a9594498..f1ec1986791c 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_version.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_version.py @@ -7,4 +7,4 @@ # -------------------------------------------------------------------------- VERSION = "1.0.0b1" -API_VERSION = "2.1" +API_VERSION = "2022-08-01" diff --git a/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py b/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py index 7eb033e35437..98338b7063ed 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/aio/_base_client_async.py @@ -7,7 +7,7 @@ from azure.core.pipeline.policies import AzureKeyCredentialPolicy from azure.core.credentials import AzureKeyCredential from azure.core.credentials_async import AsyncTokenCredential -from .._generated.aio import RenderClient as _MapsRenderClient +from .._generated.aio import MapsRenderClient as _MapsRenderClient from .._version import API_VERSION def _authentication_policy(credential): @@ -38,7 +38,7 @@ def __init__( authentication_policy=kwargs.pop("authentication_policy", _authentication_policy(credential)), **kwargs ) - self._render_client = self._maps_client.render_v2 + self._render_client = self._maps_client.render async def __aenter__(self): await self._maps_client.__aenter__() # pylint:disable=no-member diff --git a/sdk/maps/azure-maps-render/swagger/README.md b/sdk/maps/azure-maps-render/swagger/README.md index c8f1b822ca81..31f98cd2061d 100644 --- a/sdk/maps/azure-maps-render/swagger/README.md +++ b/sdk/maps/azure-maps-render/swagger/README.md @@ -20,11 +20,14 @@ autorest --v3 --python ## Settings ```yaml -input: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/maps/data-plane/Render/preview/2.1/render.json +tag: '2022-08-01' +require: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/48bb51ee0753ed56a88b3e7f989a70bf19ba96bb/specification/maps/data-plane/Render/readme.md output-folder: ../azure/maps/render/_generated namespace: azure.maps.render package-name: azure-maps-render no-namespace-folders: true +use-extension: + "@autorest/modelerfour": "4.22.3" license-header: MICROSOFT_MIT_NO_VERSION credential-scopes: https://atlas.microsoft.com/.default clear-output-folder: true @@ -34,4 +37,7 @@ add-credential: false title: MapsRenderClient disable-async-iterators: true python-sdks-folder: $(python-sdks-folder) +python3-only: true +version-tolerant: true +models-mode: msrest ``` From ad765f8c9a38b568f3e2a6a0989d8d67814f1a4b Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Mon, 26 Sep 2022 19:42:10 +0800 Subject: [PATCH 07/14] Update to fix CI issue --- .../azure/maps/render/models/_models.py | 2 +- sdk/maps/azure-maps-render/tests/conftest.py | 56 +- sdk/maps/azure-maps-render/tests/pytest.ini | 4 - ...client_e2e.test_get_copyright_caption.yaml | 47 - ...lient_e2e.test_get_copyright_for_tile.yaml | 286 - ...ient_e2e.test_get_copyright_for_world.yaml | 11521 ---------------- ....test_get_copyright_from_bounding_box.yaml | 1797 --- ...t_client_e2e.test_get_map_attribution.yaml | 43 - .../test_client_e2e.test_get_map_tile.yaml | 266 - .../test_client_e2e.test_get_map_tileset.yaml | 45 - .../tests/render_preparer.py | 15 + .../tests/test_client_unit.py | 68 - ...st_client_e2e.py => test_render_client.py} | 89 +- .../sample_search_inside_geometry_async.py | 1 - sdk/maps/tests.yml | 1 + 15 files changed, 75 insertions(+), 14166 deletions(-) delete mode 100644 sdk/maps/azure-maps-render/tests/pytest.ini delete mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_caption.yaml delete mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_tile.yaml delete mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_world.yaml delete mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_from_bounding_box.yaml delete mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_attribution.yaml delete mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tile.yaml delete mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tileset.yaml create mode 100644 sdk/maps/azure-maps-render/tests/render_preparer.py delete mode 100644 sdk/maps/azure-maps-render/tests/test_client_unit.py rename sdk/maps/azure-maps-render/tests/{test_client_e2e.py => test_render_client.py} (52%) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py index 65d2495c3d47..521100f4293e 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py @@ -5,7 +5,7 @@ # pylint: disable=unused-import,ungrouped-imports, C0302, C0203 from typing import NamedTuple - +from .._generated.models import RegionCopyrightsCountry as GenRegionCopyrightsCountry class LatLon(NamedTuple): """Represents coordinate latitude and longitude diff --git a/sdk/maps/azure-maps-render/tests/conftest.py b/sdk/maps/azure-maps-render/tests/conftest.py index 9f9ea598a5f0..9d78f9a7256a 100644 --- a/sdk/maps/azure-maps-render/tests/conftest.py +++ b/sdk/maps/azure-maps-render/tests/conftest.py @@ -1,31 +1,31 @@ -# -------------------------------------------------------------------------- -# +# ------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# -# The MIT License (MIT) -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the ""Software""), to -# deal in the Software without restriction, including without limitation the -# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -# sell copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -# IN THE SOFTWARE. -# +# Licensed under the MIT License. See License.txt in the project root for +# license information. # -------------------------------------------------------------------------- -import sys -# Ignore collection of async tests for Python 2 -collect_ignore_glob = [] -if sys.version_info < (3, 5): - collect_ignore_glob.append("*_async.py") \ No newline at end of file +import os + +import pytest + +from devtools_testutils import ( + add_general_regex_sanitizer, + add_header_regex_sanitizer, + add_oauth_response_sanitizer, + test_proxy +) + +# autouse=True will trigger this fixture on each pytest run, even if it's not explicitly used by a test method +# @pytest.fixture(scope="session", autouse=True) +# def start_proxy(test_proxy): +# return + +@pytest.fixture(scope="session", autouse=True) +def add_sanitizers(test_proxy): + subscription_key = os.environ.get("SUBSCRIPTION_KEY", "subscription-key") + tenant_id = os.environ.get("MAPS_TENANT_ID", "tenant-id") + client_secret = os.environ.get("MAPS_CLIENT_SECRET", "MyClientSecret") + add_general_regex_sanitizer(regex=subscription_key, value="AzureMapsSubscriptionKey") + add_general_regex_sanitizer(regex=tenant_id, value="MyTenantId") + add_general_regex_sanitizer(regex=client_secret, value="MyClientSecret") + # add_oauth_response_sanitizer() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/tests/pytest.ini b/sdk/maps/azure-maps-render/tests/pytest.ini deleted file mode 100644 index 4222cc688b36..000000000000 --- a/sdk/maps/azure-maps-render/tests/pytest.ini +++ /dev/null @@ -1,4 +0,0 @@ -[pytest] -python_files = *.py -python_classes = *Test -python_functions = test* \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_caption.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_caption.yaml deleted file mode 100644 index 7085d4d3a477..000000000000 --- a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_caption.yaml +++ /dev/null @@ -1,47 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) - subscription-key: - - - x-ms-client-id: - - - method: GET - uri: https://atlas.microsoft.com/map/copyright/caption/json?api-version=2.1 - response: - body: - string: "{\n \"formatVersion\": \"0.0.1\",\n \"copyrightsCaption\": \"\xA9 - 1992 - 2022 TomTom.\"\n}" - headers: - cache-control: - - max-age=86400 - content-length: - - '81' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jul 2022 06:40:15 GMT - etag: - - W/"f3cfa19fc3c68912b94faa097ee62351" - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-azuremaps-region: - - West US 2 - x-msedge-ref: - - 'Ref A: 893B9022A2544460831EA6A86C78C2D0 Ref B: TPE30EDGE0619 Ref C: 2022-07-22T06:40:15Z' - status: - code: 200 - message: OK -version: 1 diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_tile.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_tile.yaml deleted file mode 100644 index 1f58bf8ed7c9..000000000000 --- a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_tile.yaml +++ /dev/null @@ -1,286 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) - subscription-key: - - - x-ms-client-id: - - - method: GET - uri: https://atlas.microsoft.com/map/copyright/tile/json?api-version=2.1&zoom=6&x=9&y=22&text=yes - response: - body: - string: "{\n \"formatVersion\": \"0.0.1\",\n \"generalCopyrights\": [\n - \ \"\xA9 1992 - 2022 TomTom. All rights reserved. This material is proprietary - and the subject of copyright protection, database right protection and other - intellectual property rights owned by TomTom or its suppliers. The use of - this material is subject to the terms of a license agreement. Any unauthorized - copying or disclosure of this material will lead to criminal and civil liabilities.\",\n - \ \"Data Source \xA9 2022 TomTom\",\n \"based on\"\n ],\n \"regions\": - [\n {\n \"country\": {\n \"ISO3\": \"CAN\",\n \"label\": - \"Canada\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 1992 \u2013 - 2021 TomTom. All rights reserved. This material is proprietary and the subject - of copyright protection and other intellectual property rights owned or licensed - to TomTom. The product includes information copied with permission from Canadian - authorities, including \xA9 Canada Post Corporation. All rights reserved. - The use of this material is subject to the terms of a License Agreement. You - will be held liable for any unauthorized copying or disclosure of this material.\",\n - \ \"The following copyright notice applies to the use of Post- FSA - layer and 6-digit layer: \xA9 1992 \u2013 2021 TomTom. All rights reserved. - This material is proprietary and the subject of copyright protection and other - intellectual property rights owned or licensed to TomTom. The product includes - information copied with permission from Canadian authorities, including \xA9 - Canada Post Corporation, All rights reserved. The use of this material is - subject to the terms of a License Agreement. You will be held liable for any - unauthorized copying or disclosure of this material. The following copyright - notice applies to the use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. - All rights reserved. Portions of the POI database contained in Points of Interest - North America have been provided by Neustar Localeze The following copyright - notice applies to the use of Telecommunications: \xA9 2021 Pitney Bowes Software - Inc. All rights reserved. This product contains information and/or data of - iconectiv, licensed to be included herein. Copyright \xA9 2021 iconectiv. - All rights reserved. The following copyright notice applies to the use of - Logistics: \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - - 2021 ProMiles Software Development Corporation. All rights reserved. This - material is proprietary and the subject of copyright protection and other - intellectual property rights owned or licensed to TomTom.\",\n \"The - 6-digit alpha/numeric Canadian Postal Codes contained in any Licensed Product - cannot be used for bulk mailing of items through the Canadian postal system. - Furthermore, the 6-digit alpha/numeric Canadian Postal Codes must be wholly - contained in the Authorized Application and shall not be extractable. Canadian - Postal Codes cannot be displayed or used for postal code look-up on the Internet, - nor can they be extracted or exported from any application to be utilized - in the creation of any other data set or application. Notwithstanding the - above, an End User may optionally correct or derive Canadian Postal Codes - using the Authorized Application, but only as part of the address information - for locations (e.g.: of delivery points and depots) that have been set up - in the Authorized Application, and optionally extract data for fleet management - purposes.\",\n \"This product contains information adapted from - Statistics Canada: Boundary Files, 2016 Census; Road Network File, 2018; and - Census Population and Dwelling Count Highlight Tables, 2016 Census. This does - not constitute an endorsement by Statistics Canada of this product.\",\n \"Contains - information licensed under Open Government Licence \u2013 Canada.\",\n \"Contains - data made available by GeoNames licensed under CC-BY 4.0. For more information - visit http://www.geonames.org/.\",\n \"Contains information provided - by TransLink (South Coast British Columbia Transportation Authority) under - the modified open GTFS Data Terms of Use Agreement. For specifics: https://developer.translink.ca/ServicesGtfs/GtfsData\",\n - \ \"Contains information licensed under Open Government Licence: - \ * Vancouver * City of Victoria * British Columbia * City of Surrey * - Kamloops * Nanaimo * City of Westminster * City of Prince George * Burnaby - \ * City of Kelowna * Maple Ridge * North Vancouver\"\n ]\n },\n - \ {\n \"country\": {\n \"ISO3\": \"OCP\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OUP\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"USA\",\n \"label\": - \"United States\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"The following - copyright notice applies to the use of Post- FSA layer and 6-digit layer: - \ \xA9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary - and the subject of copyright protection and other intellectual property rights - owned or licensed to TomTom. The product includes information copied with - permission from Canadian authorities, including \xA9 Canada Post Corporation, - All rights reserved. The use of this material is subject to the terms of a - License Agreement. You will be held liable for any unauthorized copying or - disclosure of this material. The following copyright notice applies to the - use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. All rights reserved. - Portions of the POI database contained in Points of Interest North America - have been provided by Neustar Localeze The following copyright notice applies - to the use of Telecommunications: \xA9 2021 Pitney Bowes Software Inc. All - rights reserved. This product contains information and/or data of iconectiv, - licensed to be included herein. Copyright \xA9 2021 iconectiv. All rights - reserved. The following copyright notice applies to the use of Logistics: - \ \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - 2021 ProMiles - Software Development Corporation. All rights reserved. This material is proprietary - and the subject of copyright protection and other intellectual property rights - owned or licensed to TomTom.\",\n \"\xA9 United States Postal Service - 2021\",\n \"You shall not use the Municipal Boundary layer of the - Administrative Areas product to create or derive applications which are used - by third parties for the purpose of tariff, tax jurisdiction, or tax rate - determination for a particular address or range of addresses.\",\n \"This - product is built on basis on the following elevation data: SRTM, GTOPO, NED - data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview\",\n - \ \"This product is built on basis on the following elevation data: - 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department - of Commerce, National Oceanic and Atmospheric Administration, National Geophysical - Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\",\n \"Contains - data made available by City of Everett, WA with the following disclaimer:\",\n - \ \"\\\"The data made available here has been modified for use from - its original source, which is the City of Everett. Neither the City of Everett - nor the Information Technology Department makes any claims as to the completeness, - timeliness, accuracy or content of any data contained in this application; - makes any representation of any kind, including, but not limited to, warranty - of the accuracy or fitness for a particular use; nor are any such warranties - to be implied or inferred with respect to the information or data furnished - herein. The data is subject to change as modifications and updates are complete. - It is understood that the information contained in the web feed is being used - at one's own risk.\\\" For specifics, please reference: https://data.everettwa.gov/\"\n - \ ]\n }\n ]\n}" - headers: - cache-control: - - max-age=86400 - content-length: - - '18516' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jul 2022 06:40:15 GMT - etag: - - W/"9de0508ecdba66c786311c93a8d63f16" - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-azuremaps-region: - - West US 2 - x-msedge-ref: - - 'Ref A: 74DC20C646A14624BDF5C2E523057B00 Ref B: TPE30EDGE0921 Ref C: 2022-07-22T06:40:16Z' - status: - code: 200 - message: OK -version: 1 diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_world.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_world.yaml deleted file mode 100644 index 54aae426e49a..000000000000 --- a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_for_world.yaml +++ /dev/null @@ -1,11521 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) - subscription-key: - - - x-ms-client-id: - - - method: GET - uri: https://atlas.microsoft.com/map/copyright/world/json?api-version=2.1&text=yes - response: - body: - string: "{\n \"formatVersion\": \"0.0.1\",\n \"generalCopyrights\": [\n - \ \"\xA9 1992 - 2022 TomTom. All rights reserved. This material is proprietary - and the subject of copyright protection, database right protection and other - intellectual property rights owned by TomTom or its suppliers. The use of - this material is subject to the terms of a license agreement. Any unauthorized - copying or disclosure of this material will lead to criminal and civil liabilities.\",\n - \ \"Data Source \xA9 2022 TomTom\",\n \"based on\"\n ],\n \"regions\": - [\n {\n \"country\": {\n \"ISO3\": \"ABW\",\n \"label\": - \"Aruba\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"AFG\",\n \"label\": - \"Afghanistan\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"AGO\",\n \"label\": - \"Angola\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"AIA\",\n \"label\": - \"Anguilla\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ALB\",\n \"label\": - \"Albania\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"AND\",\n \"label\": - \"Andorra\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ARE\",\n \"label\": - \"United Arab Emirates\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - from Dubai Municipality.\"\n ]\n },\n {\n \"country\": - {\n \"ISO3\": \"ARG\",\n \"label\": \"Argentina\"\n - \ },\n \"copyrights\": [\n \"You agree to include - as soon as practically possible, but no later than the first new release of - the Authorized Application following Your receipt of any 3D Landmarks, any - copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ARM\",\n \"label\": - \"Armenia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ASM\",\n \"label\": - \"American Samoa\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"The following - copyright notice applies to the use of Post- FSA layer and 6-digit layer: - \ \xA9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary - and the subject of copyright protection and other intellectual property rights - owned or licensed to TomTom. The product includes information copied with - permission from Canadian authorities, including \xA9 Canada Post Corporation, - All rights reserved. The use of this material is subject to the terms of a - License Agreement. You will be held liable for any unauthorized copying or - disclosure of this material. The following copyright notice applies to the - use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. All rights reserved. - Portions of the POI database contained in Points of Interest North America - have been provided by Neustar Localeze The following copyright notice applies - to the use of Telecommunications: \xA9 2021 Pitney Bowes Software Inc. All - rights reserved. This product contains information and/or data of iconectiv, - licensed to be included herein. Copyright \xA9 2021 iconectiv. All rights - reserved. The following copyright notice applies to the use of Logistics: - \ \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - 2021 ProMiles - Software Development Corporation. All rights reserved. This material is proprietary - and the subject of copyright protection and other intellectual property rights - owned or licensed to TomTom.\",\n \"\xA9 United States Postal Service - 2021\",\n \"You shall not use the Municipal Boundary layer of the - Administrative Areas product to create or derive applications which are used - by third parties for the purpose of tariff, tax jurisdiction, or tax rate - determination for a particular address or range of addresses.\",\n \"This - product is built on basis on the following elevation data: SRTM, GTOPO, NED - data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview\",\n - \ \"This product is built on basis on the following elevation data: - 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department - of Commerce, National Oceanic and Atmospheric Administration, National Geophysical - Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\"\n ]\n - \ },\n {\n \"country\": {\n \"ISO3\": \"ATA\",\n - \ \"label\": \"Antarctica\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"ATF\",\n \"label\": \"French Southern and - Antarctic Lands\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ATG\",\n \"label\": - \"Antigua and Barbuda\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"AUS\",\n \"label\": - \"Australia\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Incorporates - modified data from G-NAF \xA9PSMA Australia Limited licensed by the Commonwealth - of Australia under the Open Geo-coded National Address File (G-NAF) End User - Licence Agreement. For more information visit https://data.gov.au/dataset/geocoded-national-address-file-g-naf\",\n - \ \"Contains modified hospitals made available by Western Australia - Department of Health. For more information visit https://catalogue.data.wa.gov.au/dataset/health-establishments\",\n - \ \"Contains heavy vehicle route information made available from - state road controlling authorities as described below and published by NHVR - on their route planner. For more information see https://www.nhvr.gov.au/road-access/route-planner\",\n - \ \"Contains data that is available free of charge from www.transperth.wa.gov.au\",\n - \ \"Contains data made available under open licence from https://www.data.brisbane.qld.gov.au/data/dataset/road-restrictions\",\n - \ \"Contains data licensed under CC-BY 2.5 AU. For more information - visit: * Australian Department of Industry, Science, Energy and Resources - https://data.gov.au/data/dataset/ab59e562-9cbc-410d-a9cc-d74934d302c1\",\n - \ \"Contains data licensed under CC-BY 3.0 AU. For more information - visit: * Queensland Department of Transport and Main Roads http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7bC7CA73D1-D7CD-4B36-BE2B-0A9AEFC770DF%7d, - http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7b2757F8EA-5B2F-4F03-902F-F9D7D038BF1B%7d, - http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={2757F8EA-5B2F-4F03-902F-F9D7D038BF1B} - \ * https://www.data.qld.gov.au/dataset/state-controlled-roads-queensland, - http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7B984B2531-17D6-4E3D-A04A-3BEB9407BBA3%7D - \ * https://www.publications.qld.gov.au/dataset/transport-of-dangerous-goods-by-road/resource/de4f110c-c007-496e-80a9-9b0f5a1aec89http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={14D6B946-F361-4CE7-B156-EA8C324866DC} - \ * Southern Grampians Shire Council https://data.gov.au/dataset/ds-dga-ff90cad8-bbfa-4c62-a957-54da3514f0e1 - \ * SA Department of Planning Transport and Infrastructure https://www.dpti.sa.gov.au/ravnet - \ * NSW Spatial Services https://sdi.nsw.gov.au/catalog/search/resource/details.page?uuid=%7B144289DD-004C-4F66-ABD4-4F269258C677%7D, - https://sdi.nsw.gov.au/catalog/search/resource/details.page?uuid={C5FCA09F-F919-4975-9D8A-B3F3BA82E06B}, - http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/address_data - and https://www.spatial.nsw.gov.au/mapping_and_imagery/address_data * NSW - Roads and Maritime Service https://data.nsw.gov.au/data/dataset/restricted-access-vehicle-map - \ * NSW Ministry of Health https://data.nsw.gov.au/data/dataset/nsw-health-services - \ * Department of Human Services https://data.gov.au/dataset/location-of-medicare-offices - & https://data.gov.au/dataset/location-of-centrelink-offices * Department - of Social Services https://data.gov.au/dataset/national-public-toilet-map - \ * City of Ballarat https://data.gov.au/dataset/ballarat-reserves * Land - Tasmania https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&query=road+segments&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=1ab7e34f-811c-4521-a549-212f295acc97&searchCriteriaURL=query%3Droad+segments%26perPage%3D10%26sortBy%3DTitle%3AASC, - http://listdata.thelist.tas.gov.au/opendata/index.html, https://data.thelist.tas.gov.au/datagn/srv/eng/main.home?uuid=cbd6d180-024b-4ff3-977c-5efd9cc58ca5 - , https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&query=speed&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=707db3e9-b4aa-4651-8be2-b11a07f89d4d&searchCriteriaURL=query%3Dspeed%26perPage%3D10%26sortBy%3DTitle%3AASC%20, - https://data.thelist.tas.gov.au/datagn/srv/eng/main.home?uuid=707db3e9-b4aa-4651-8be2-b11a07f89d4d, - https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&sc_tc_code=structure&sc_tc_code=transportation&sc_tc_code=utilitiesCommunication&query=&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=99c36d4b-7616-436c-84bd-a4a1877fa3dc&searchCriteriaURL=query%3D%26perPage%3D10%26sortBy%3DTitle%3AASC%26sc_tc_code%3Dstructure%26sc_tc_code%3Dtransportation%26sc_tc_code%3DutilitiesCommunication, - https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&query=Structure+Height+Structures&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=56b2d9bd-1f26-4163-b93a-61c7d2be218c&searchCriteriaURL=query%3DStructure+Height+Structures%26perPage%3D10%26sortBy%3DTitle%3AASC - and https://services.thelist.tas.gov.au/arcgis/rest/services/Public/OpenDataWFS/MapServer/42 - \ * City of Gold Coast http://data-goldcoast.opendata.arcgis.com/datasets/4cd43781770e44258fe72014d786bb52_0 - and https://data-goldcoast.opendata.arcgis.com/datasets/ab72b03757444f4c9865c1b1fd7087ae_0 - \ * City of Launceston https://data-launceston.opendata.arcgis.com/datasets/load-limits - and https://opendata.launceston.tas.gov.au/datasets/speed-limits * Australian - Government https://www.australia.gov.au/about-australia/facts-and-figures/time-zones-and-daylight-saving\",\n - \ \"Contains data licensed under CC-BY 4.0. For more information - visit: * Queensland Department of Natural Resources, Mines & Energy https://www.data.qld.gov.au/ - \ * SA Department of Planning Transport and Infrastructure https://data.sa.gov.au/ - \ * Victoria Department of Environment, Land, Water & Planning https://data.vic.gov.au/ - \ * WA Mainroads https://portal-mainroads.opendata.arcgis.com/ and https://catalogue.data.wa.gov.au/ - \ * ACT Environment, Planning and Sustainable Development Directorate https://www.data.act.gov.au/ - \ * Geoscience Australia https://www.ga.gov.au/ * Commonwealth of Australia - https://data.gov.au/ * Australian Capital Territory https://actmapi-actgov.opendata.arcgis.com/ - \ * Transport Canberra Light Rail https://www.data.act.gov.au/ * City of - Darwin https://open-darwin.opendata.arcgis.com/ * Rockhampton Regional Council - https://data.gov.au// * Tasmanian Department of State Growth https://data.gov.au/ - \ * Department of Health https://data.gov.au/ * Department of Finance, Services - & Innovation https://www.gnb.nsw.gov.au/ * Victoria Department of Health - and Human Services https://data.vic.gov.au/ * Queensland Health https://www.data.qld.gov.au/ - \ * SA Health https://data.sa.gov.au/ * Health ACT https://www.data.act.gov.au/ - \ * Brisbane City Council https://www.data.brisbane.qld.gov.au/ * City of - Melbourne https://data.melbourne.vic.gov.au/ * Vicroads http://api.vicroads.vic.gov.au/, - http://vicroadsopendata-vicroadsmaps.opendata.arcgis.com/ and https://data.vic.gov.au/ - \ * ACT Education Directorate https://www.data.act.gov.au/ * Queensland Department - of Education https://www.data.qld.gov.au/ * Victoria Department of Education - and Training https://www.data.vic.gov.au/ * NSW Department of Education https://data.cese.nsw.gov.au/ - \ * SA Department for Education https://data.sa.gov.au/ * Roads ACT https://www.data.act.gov.au/ - \ * State of NSW (NSW Police Force) https://www.police.nsw.gov.au/ * Environment - and Planning Directorate, Transport Canberra and City Services, Emergency - Services Agency - ACT Government https://actmapi-actgov.opendata.arcgis.com/ - \ * NSW Health https://www.health.nsw.gov.au/ * Transport Canberra and City - Services https://www.data.act.gov.au/ * Transport Canberra https://www.transport.act.gov.au/ - \ * Northern Territory Department of Infrastructure, Planning and Logistics - https://dipl.nt.gov.au/ * Public Transport Victoria https://www.data.vic.gov.au/ - \ * Queensland Department of Transport and Main Roads https://www.data.qld.gov.au/ - \ * Transport for New South Wales https://opendata.transport.nsw.gov.au/ * - SA Department for Infrastructure and Transport https://data.sa.gov.au/ * - Action Buses https://www.transport.act.gov.au * Adelaide Metro https://data.sa.gov.au - \ * Canberra Metro Light Rail https://www.transport.act.gov.au * Queensland - Translink https://www.data.qld.gov.au * Australian Department of Foreign - Affairs and Trade https://www.dfat.gov.au/ * New South Wales Legislation - https://www.legislation.nsw.gov.au/ * City of Hobart https://data-1-hobartcc.opendata.arcgis.com/ - \ * Victoria Department of Transport https://data-exchange.vicroads.vic.gov.au - \ * State of Western Australia (Department of Mines, Industry Regulation and - Safety) https://www.dmirs.wa.gov.au/\"\n ]\n },\n {\n \"country\": - {\n \"ISO3\": \"AUT\",\n \"label\": \"Austria\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 BEV, GZ - 1368/2003\",\n \"The location and event code (version 3.4) has - been provided by ASFINAG.\",\n \"Contains data licensed under CC - BY 3.0 AT. For more information visit: * City of Vienna https://www.data.gv.at - \ * Geoland https://www.data.gv.at/ * BEV: \xA9 \xD6sterreichisches Adressregister, - 01.10.2019. http://www.bev.gv.at/ * Open Government Data Wien https://open.wien.gv.at/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"AZE\",\n \"label\": \"Azerbaijan\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"BDI\",\n \"label\": \"Burundi\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BEL\",\n \"label\": - \"Belgium\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - licensed under Free Open Data License Vlaanderen. For more information visit: - \ * CRAB Adressenlijst https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=6EF348E1-69EB-4CAD-8CCD-1C68099AFCF3 - \ * CRAB Stratenlijst https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=FBC603AE-87DC-4418-B16D-832CE7B30335 - \ * Grootschalig Referentiebestand (GRB) https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=7C823055-7BBF-4D62-B55E-F85C30D53162 - \ * 3D GRB https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=42ac31a7-afe6-44c4-a534-243814fe5b58 - \ * AGIV Aerial images https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=0ffd5eee-c197-4f8f-b491-b01bd1792f7c - \ * Wegenregister Flanders and Brussels https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=49515fac-068f-4b41-a4ac-8e29d43df696 - \ * School and University data\",\n \"http://opendataforum.info/Docs/Modellicentie%202%20Gratis%20Open%20Data%20Licentie.htm - \ * City of Antwerp http://opendata.antwerpen.be/gratis-open-data-licentie - \ * Toerisme Vlaanderen http://www.toerismevlaanderen.be/opendata * Gipod - https://overheid.vlaanderen.be/sites/default/files/documenten/ict-egov/licenties/hergebruik/modellicentie_gratis_hergebruik_v1_0.html\",\n - \ \"Contains data licensed under CIRB - CIBG under Open Data License. - For more information visit: * CIRB-CIBG APT's http://www.bric.irisnet.be/en/our-solutions/urbis-solutions/download - \ * Brussels Mobility Zones 30 (30 km/h zones) http://data-mobility.brussels/mobigis/nl/#\",\n - \ \"Contains data licensed under CC-BY 4.0. For more information - visit: * TEC (Public Transport Stops) http://opendata.awt.be/dataset/tec\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"BEN\",\n \"label\": \"Benin\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"BES\",\n \"label\": \"Bonaire, Sint Eustatius - and Saba\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BFA\",\n \"label\": - \"Burkina Faso\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BGD\",\n \"label\": - \"Bangladesh\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BGR\",\n \"label\": - \"Bulgaria\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BHR\",\n \"label\": - \"Bahrain\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"The product - contains 'Points of Interest' (POI) data of Bahrain provided by the iGA via - www.data.gov.bh and governed by the Terms of Use available at http://www.data.gov.bh/en/TermsOfUse\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"BHS\",\n \"label\": \"Bahamas\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"BIH\",\n \"label\": \"Bosnia-Herzegovina\"\n - \ },\n \"copyrights\": [\n \"You agree to include - as soon as practically possible, but no later than the first new release of - the Authorized Application following Your receipt of any 3D Landmarks, any - copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BLM\",\n \"label\": - \"Saint Barthelemy\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BLR\",\n \"label\": - \"Republic of Belarus\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 Source - data. State committee on property of the Republic of Belarus, 2019 \xA9 Republic - unitary organization Belgeodsia, 2019\"\n ]\n },\n {\n \"country\": - {\n \"ISO3\": \"BLZ\",\n \"label\": \"Belize\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BMU\",\n \"label\": - \"Bermuda\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BOL\",\n \"label\": - \"Bolivia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BRA\",\n \"label\": - \"Brazil\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BRB\",\n \"label\": - \"Barbados\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BRN\",\n \"label\": - \"Brunei\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BTN\",\n \"label\": - \"Bhutan\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BVT\",\n \"label\": - \"Bouvet Island\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BWA\",\n \"label\": - \"Botswana\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"CAF\",\n \"label\": - \"Central African Republic\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"CAN\",\n \"label\": - \"Canada\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 1992 \u2013 - 2021 TomTom. All rights reserved. This material is proprietary and the subject - of copyright protection and other intellectual property rights owned or licensed - to TomTom. The product includes information copied with permission from Canadian - authorities, including \xA9 Canada Post Corporation. All rights reserved. - The use of this material is subject to the terms of a License Agreement. You - will be held liable for any unauthorized copying or disclosure of this material.\",\n - \ \"The following copyright notice applies to the use of Post- FSA - layer and 6-digit layer: \xA9 1992 \u2013 2021 TomTom. All rights reserved. - This material is proprietary and the subject of copyright protection and other - intellectual property rights owned or licensed to TomTom. The product includes - information copied with permission from Canadian authorities, including \xA9 - Canada Post Corporation, All rights reserved. The use of this material is - subject to the terms of a License Agreement. You will be held liable for any - unauthorized copying or disclosure of this material. The following copyright - notice applies to the use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. - All rights reserved. Portions of the POI database contained in Points of Interest - North America have been provided by Neustar Localeze The following copyright - notice applies to the use of Telecommunications: \xA9 2021 Pitney Bowes Software - Inc. All rights reserved. This product contains information and/or data of - iconectiv, licensed to be included herein. Copyright \xA9 2021 iconectiv. - All rights reserved. The following copyright notice applies to the use of - Logistics: \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - - 2021 ProMiles Software Development Corporation. All rights reserved. This - material is proprietary and the subject of copyright protection and other - intellectual property rights owned or licensed to TomTom.\",\n \"The - 6-digit alpha/numeric Canadian Postal Codes contained in any Licensed Product - cannot be used for bulk mailing of items through the Canadian postal system. - Furthermore, the 6-digit alpha/numeric Canadian Postal Codes must be wholly - contained in the Authorized Application and shall not be extractable. Canadian - Postal Codes cannot be displayed or used for postal code look-up on the Internet, - nor can they be extracted or exported from any application to be utilized - in the creation of any other data set or application. Notwithstanding the - above, an End User may optionally correct or derive Canadian Postal Codes - using the Authorized Application, but only as part of the address information - for locations (e.g.: of delivery points and depots) that have been set up - in the Authorized Application, and optionally extract data for fleet management - purposes.\",\n \"This product contains information adapted from - Statistics Canada: Boundary Files, 2016 Census; Road Network File, 2018; and - Census Population and Dwelling Count Highlight Tables, 2016 Census. This does - not constitute an endorsement by Statistics Canada of this product.\",\n \"Contains - information licensed under Open Government Licence \u2013 Canada.\",\n \"Contains - data made available by GeoNames licensed under CC-BY 4.0. For more information - visit http://www.geonames.org/.\",\n \"Contains information licensed - under the Open Data License \u2013 City of Grande Prairie.\",\n \"Contains - information licensed under the Open Data License \u2013 City of Airdrie.\",\n - \ \"Contains information licensed under the Open Data License \u2013 - Town of Cochrane.\",\n \"Contains information licensed under the - Open Data License. \u2013 The City of Red Deer\",\n \"Contains - information licensed under Open Government Licence: * Strathcona County * - County of Grand Prairie * City of Calgary * Banff * City of Grant Prairie\",\n - \ \"Contains information provided by TransLink (South Coast British - Columbia Transportation Authority) under the modified open GTFS Data Terms - of Use Agreement. For specifics: https://developer.translink.ca/ServicesGtfs/GtfsData\",\n - \ \"Contains information licensed under Open Government Licence: - \ * Vancouver * City of Victoria * British Columbia * City of Surrey * - Kamloops * Nanaimo * City of Westminster * City of Prince George * Burnaby - \ * City of Kelowna * Maple Ridge * North Vancouver\",\n \"Contains - public sector datasets made available under the City of Brandon\u2019s Open - Data License.\",\n \"Contains information licensed under the Open - Government License \u2013 Winnipeg.\",\n \"Contains information - licensed under Open Government Licence: * New Brunswick * Saint John\",\n - \ \"Contains information licenced under the Open Government License - \u2013 Halifax.\",\n \"Contains public sector Datasets made available - under the City of Yellowknife\u2019s Open Data License v.1.\",\n \"Contains - information provided by the City of Guelph under an open government license.\",\n - \ \"Contains public sector Data made available under the City of - Hamilton\u2019s Open Data Licence.\",\n \"Contains information - licensed under the Open Data Licence \u2013 City of Greater Sudbury.\",\n - \ \"Contains information licensed under the Open Data Licence \u2013 - City of Kingston.\",\n \"Contains information licensed under the - Grey County Open Data Licence.\",\n \"Contains information licensed - under Open Government Licence: * Toronto * Haldimand County * Niagra Region - \ * Town of Oakville * The Corporation of the City of Windsor * The Corporation - of the Municipality of Chatham-Kent * City of Welland * Brantford * Township - of The Archipelago * City of Lambton * Barrie * City of Cambridge * City - of Ottawa * The Corporation of the City of Oshawa * The Corporation of the - County of Hastings\",\n \"Contains information licensed under the - Open Government Licence \u2013 Prince Edward Island.\",\n \"This - product contains information licensed under the Le minist\xE8re des Transports - de la Mobilit\xE9 durable et de l'\xC9lectrification des Transports du Qu\xE9bec - (Transport Qu\xE9bec).\",\n \"Contains data for the Province of - Quebec: \xA9 Gouvernement du Qu\xE9bec.\",\n \"Contains information - provided by Soci\xE9t\xE9 de transport de Montr\xE9al (STM) under the GTFS - Data Terms of Use Agreement.\",\n \"Contains information provided - by Montr\xE9al Metropolitan Transportation Agency (ATM) under the License - of Open Data L'agence M\xE9tropolitaine de Transport (AMT).\",\n \"Contains - data licensed under CC-BY 4.0. For more information visit: * Gatineau, QC - \ * Laval, QC * Longueuil, QC * Montreal, QC * Rimouski, QC\",\n \"Contains - information licensed under Open Government Licence: * City of Regina * City - of Yorkton\"\n ]\n },\n {\n \"country\": {\n \"ISO3\": - \"CCK\",\n \"label\": \"Cocos (Keeling) Islands\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"CHE\",\n \"label\": - \"Switzerland\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 Swisstopo\",\n - \ \"Contains data licensed under CC BY. For more information visit: - \ * SITG https://opendata.swiss/ * BFS (eidgen\xF6ssisches Geb\xE4ude- und - Wohnungsregister) https://data.geo.admin.ch/ * BAV https://opendata.swiss/de\",\n - \ \"Contains data licensed under CC Zero. For more information visit: - \ * the city of Z\xFCrich https://data.stadt-zuerich.ch/\",\n \"Contains - data licensed under CC BY ASK. For more information visit: * swisstopo https://opendata.swiss/de\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"CHL\",\n \"label\": \"Chile\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"CHN\",\n \"label\": \"China\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"You agree that - any Licensed Product which contains data of India may be subject to additional - terms and conditions which shall be provided to You when available to TomTom. - India data shall not be altered or changed during Your product creation / - publication process. India data may not be exported from India.\"\n ]\n - \ },\n {\n \"country\": {\n \"ISO3\": \"CIV\",\n - \ \"label\": \"Cote d'Ivoire\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"CMR\",\n \"label\": \"Cameroon\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"COD\",\n \"label\": - \"Congo (DRC)\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"COG\",\n \"label\": - \"Congo-Brazzaville\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"COK\",\n \"label\": - \"Cook Islands\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"COL\",\n \"label\": - \"Colombia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"COM\",\n \"label\": - \"Comoros\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"CPV\",\n \"label\": - \"Cabo Verde\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"CRI\",\n \"label\": - \"Costa Rica\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"CUB\",\n \"label\": - \"Cuba\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"CUW\",\n \"label\": - \"Cura\xE7ao\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"CXR\",\n \"label\": - \"Christmas Island\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Incorporates - modified data from G-NAF \xA9PSMA Australia Limited licensed by the Commonwealth - of Australia under the Open Geo-coded National Address File (G-NAF) End User - Licence Agreement. For more information visit https://data.gov.au/dataset/geocoded-national-address-file-g-naf\",\n - \ \"Contains modified hospitals made available by Western Australia - Department of Health. For more information visit https://catalogue.data.wa.gov.au/dataset/health-establishments\",\n - \ \"Contains heavy vehicle route information made available from - state road controlling authorities as described below and published by NHVR - on their route planner. For more information see https://www.nhvr.gov.au/road-access/route-planner\",\n - \ \"Contains data that is available free of charge from www.transperth.wa.gov.au\",\n - \ \"Contains data made available under open licence from https://www.data.brisbane.qld.gov.au/data/dataset/road-restrictions\",\n - \ \"Contains data licensed under CC-BY 2.5 AU. For more information - visit: * Australian Department of Industry, Science, Energy and Resources - https://data.gov.au/data/dataset/ab59e562-9cbc-410d-a9cc-d74934d302c1\",\n - \ \"Contains data licensed under CC-BY 3.0 AU. For more information - visit: * Queensland Department of Transport and Main Roads http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7bC7CA73D1-D7CD-4B36-BE2B-0A9AEFC770DF%7d, - http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7b2757F8EA-5B2F-4F03-902F-F9D7D038BF1B%7d, - http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={2757F8EA-5B2F-4F03-902F-F9D7D038BF1B} - \ * https://www.data.qld.gov.au/dataset/state-controlled-roads-queensland, - http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7B984B2531-17D6-4E3D-A04A-3BEB9407BBA3%7D - \ * https://www.publications.qld.gov.au/dataset/transport-of-dangerous-goods-by-road/resource/de4f110c-c007-496e-80a9-9b0f5a1aec89http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={14D6B946-F361-4CE7-B156-EA8C324866DC} - \ * Southern Grampians Shire Council https://data.gov.au/dataset/ds-dga-ff90cad8-bbfa-4c62-a957-54da3514f0e1 - \ * SA Department of Planning Transport and Infrastructure https://www.dpti.sa.gov.au/ravnet - \ * NSW Spatial Services https://sdi.nsw.gov.au/catalog/search/resource/details.page?uuid=%7B144289DD-004C-4F66-ABD4-4F269258C677%7D, - https://sdi.nsw.gov.au/catalog/search/resource/details.page?uuid={C5FCA09F-F919-4975-9D8A-B3F3BA82E06B}, - http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/address_data - and https://www.spatial.nsw.gov.au/mapping_and_imagery/address_data * NSW - Roads and Maritime Service https://data.nsw.gov.au/data/dataset/restricted-access-vehicle-map - \ * NSW Ministry of Health https://data.nsw.gov.au/data/dataset/nsw-health-services - \ * Department of Human Services https://data.gov.au/dataset/location-of-medicare-offices - & https://data.gov.au/dataset/location-of-centrelink-offices * Department - of Social Services https://data.gov.au/dataset/national-public-toilet-map - \ * City of Ballarat https://data.gov.au/dataset/ballarat-reserves * Land - Tasmania https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&query=road+segments&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=1ab7e34f-811c-4521-a549-212f295acc97&searchCriteriaURL=query%3Droad+segments%26perPage%3D10%26sortBy%3DTitle%3AASC, - http://listdata.thelist.tas.gov.au/opendata/index.html, https://data.thelist.tas.gov.au/datagn/srv/eng/main.home?uuid=cbd6d180-024b-4ff3-977c-5efd9cc58ca5 - , https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&query=speed&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=707db3e9-b4aa-4651-8be2-b11a07f89d4d&searchCriteriaURL=query%3Dspeed%26perPage%3D10%26sortBy%3DTitle%3AASC%20, - https://data.thelist.tas.gov.au/datagn/srv/eng/main.home?uuid=707db3e9-b4aa-4651-8be2-b11a07f89d4d, - https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&sc_tc_code=structure&sc_tc_code=transportation&sc_tc_code=utilitiesCommunication&query=&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=99c36d4b-7616-436c-84bd-a4a1877fa3dc&searchCriteriaURL=query%3D%26perPage%3D10%26sortBy%3DTitle%3AASC%26sc_tc_code%3Dstructure%26sc_tc_code%3Dtransportation%26sc_tc_code%3DutilitiesCommunication, - https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=&groupName=&bboxNorth=&bboxWest=&bboxSouth=&bboxEast=&query=Structure+Height+Structures&_keywordCategory=-1&isTasmania=true&custodian=&detailRecordUID=56b2d9bd-1f26-4163-b93a-61c7d2be218c&searchCriteriaURL=query%3DStructure+Height+Structures%26perPage%3D10%26sortBy%3DTitle%3AASC - and https://services.thelist.tas.gov.au/arcgis/rest/services/Public/OpenDataWFS/MapServer/42 - \ * City of Gold Coast http://data-goldcoast.opendata.arcgis.com/datasets/4cd43781770e44258fe72014d786bb52_0 - and https://data-goldcoast.opendata.arcgis.com/datasets/ab72b03757444f4c9865c1b1fd7087ae_0 - \ * City of Launceston https://data-launceston.opendata.arcgis.com/datasets/load-limits - and https://opendata.launceston.tas.gov.au/datasets/speed-limits * Australian - Government https://www.australia.gov.au/about-australia/facts-and-figures/time-zones-and-daylight-saving\",\n - \ \"Contains data licensed under CC-BY 4.0. For more information - visit: * Queensland Department of Natural Resources, Mines & Energy https://www.data.qld.gov.au/ - \ * SA Department of Planning Transport and Infrastructure https://data.sa.gov.au/ - \ * Victoria Department of Environment, Land, Water & Planning https://data.vic.gov.au/ - \ * WA Mainroads https://portal-mainroads.opendata.arcgis.com/ and https://catalogue.data.wa.gov.au/ - \ * ACT Environment, Planning and Sustainable Development Directorate https://www.data.act.gov.au/ - \ * Geoscience Australia https://www.ga.gov.au/ * Commonwealth of Australia - https://data.gov.au/ * Australian Capital Territory https://actmapi-actgov.opendata.arcgis.com/ - \ * Transport Canberra Light Rail https://www.data.act.gov.au/ * City of - Darwin https://open-darwin.opendata.arcgis.com/ * Rockhampton Regional Council - https://data.gov.au// * Tasmanian Department of State Growth https://data.gov.au/ - \ * Department of Health https://data.gov.au/ * Department of Finance, Services - & Innovation https://www.gnb.nsw.gov.au/ * Victoria Department of Health - and Human Services https://data.vic.gov.au/ * Queensland Health https://www.data.qld.gov.au/ - \ * SA Health https://data.sa.gov.au/ * Health ACT https://www.data.act.gov.au/ - \ * Brisbane City Council https://www.data.brisbane.qld.gov.au/ * City of - Melbourne https://data.melbourne.vic.gov.au/ * Vicroads http://api.vicroads.vic.gov.au/, - http://vicroadsopendata-vicroadsmaps.opendata.arcgis.com/ and https://data.vic.gov.au/ - \ * ACT Education Directorate https://www.data.act.gov.au/ * Queensland Department - of Education https://www.data.qld.gov.au/ * Victoria Department of Education - and Training https://www.data.vic.gov.au/ * NSW Department of Education https://data.cese.nsw.gov.au/ - \ * SA Department for Education https://data.sa.gov.au/ * Roads ACT https://www.data.act.gov.au/ - \ * State of NSW (NSW Police Force) https://www.police.nsw.gov.au/ * Environment - and Planning Directorate, Transport Canberra and City Services, Emergency - Services Agency - ACT Government https://actmapi-actgov.opendata.arcgis.com/ - \ * NSW Health https://www.health.nsw.gov.au/ * Transport Canberra and City - Services https://www.data.act.gov.au/ * Transport Canberra https://www.transport.act.gov.au/ - \ * Northern Territory Department of Infrastructure, Planning and Logistics - https://dipl.nt.gov.au/ * Public Transport Victoria https://www.data.vic.gov.au/ - \ * Queensland Department of Transport and Main Roads https://www.data.qld.gov.au/ - \ * Transport for New South Wales https://opendata.transport.nsw.gov.au/ * - SA Department for Infrastructure and Transport https://data.sa.gov.au/ * - Action Buses https://www.transport.act.gov.au * Adelaide Metro https://data.sa.gov.au - \ * Canberra Metro Light Rail https://www.transport.act.gov.au * Queensland - Translink https://www.data.qld.gov.au * Australian Department of Foreign - Affairs and Trade https://www.dfat.gov.au/ * New South Wales Legislation - https://www.legislation.nsw.gov.au/ * City of Hobart https://data-1-hobartcc.opendata.arcgis.com/ - \ * Victoria Department of Transport https://data-exchange.vicroads.vic.gov.au - \ * State of Western Australia (Department of Mines, Industry Regulation and - Safety) https://www.dmirs.wa.gov.au/\"\n ]\n },\n {\n \"country\": - {\n \"ISO3\": \"CYM\",\n \"label\": \"Cayman Islands\"\n - \ },\n \"copyrights\": [\n \"You agree to include - as soon as practically possible, but no later than the first new release of - the Authorized Application following Your receipt of any 3D Landmarks, any - copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"CYP\",\n \"label\": - \"Cyprus\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - licensed under CC-BY 4.0. For more information visit: * GeoNames http://www.geonames.org/ - \ * National Open data Portal Cyprus https://www.data.gov.cy/\"\n ]\n - \ },\n {\n \"country\": {\n \"ISO3\": \"CZE\",\n - \ \"label\": \"Czechia\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"DEU\",\n \"label\": \"Germany\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 GeoBasis-DE - / LDBV 2021\",\n \"Contains data licensed under CC BY 3.0 DE. For - more information visit: * Bayerisches Landesamt f\xFCr Umwelt, www.lfu.bayern.de - \ * Bayerische Vermessungsverwaltung, www.geodaten.bayern.de\",\n \"Contains - cartographic information made available by \xA9 GeoBasis-DE / BKG 2018 (data - modified). https://www.bkg.bund.de\",\n \"Contains data licensed - under dl-de-by-2.0. For more information visit: * Bezirksregierung K\xF6ln, - 2019, https://www.bezreg-koeln.nrw.de/ * geoportal-th.de (data modified), - https://www.geoportal-th.de * Open.NRW \u2013 Das Open Government Portal - f\xFCr das Land Nordrhein-Westfalen\u201D; Landesamt f\xFCr Natur, Umwelt - und Verbraucherschutz Nordrhein-Westfalen, www.open.nrw * transparenz.hamburg.de - (data modified), http://suche.transparenz.hamburg.de/ * Land NRW, 2018, https://www.wms.nrw.de/geobasis/wms_nw_dop?REQUEST=GetCapabilities&SERVICE=WMS - \ * Vermessungs- und Katasterverwaltung Rheinland-Pfalz, 2018, https://lvermgeo.rlp.de/de/ - \ * LVermGeoRP, 2018, https://www.geoportal.rlp.de/\",\n \"Contains - data licensed under CC-BY 4.0. For more information visit: * \u201EOpen.NRW - \u2013 Das Open Government Portal f\xFCr das Land Nordrhein-Westfalen\u201D; - Landesamt f\xFCr Natur, Umwelt und Verbraucherschutz Nordrhein-Westfalen, - www.open.nrw\"\n ]\n },\n {\n \"country\": {\n \"ISO3\": - \"DJI\",\n \"label\": \"Djibouti\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"DMA\",\n \"label\": \"Dominica\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"DNK\",\n \"label\": - \"Denmark\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 DAV, violation - of these copyrights shall cause legal proceedings\",\n \"This product - contains information from Styrelsen for Dataforsyning og Effektiviserings - Adresse Web Services (AWS Suiten)\",\n \"\u201DIndeholder data - fra Styrelsen for Dataforsyning og Effektivisering\\\"; Stedsnavne, Vejmidte\",\n - \ \"\u201DIndeholder oplysninger fra Styrelsen for Dataforsyning - og Effektivisering Adresse Web Services (AWS).\u201D\",\n \"\u201DIndeholder - data fra Styrelsen for Dataforsyning og Effektivisering\\\"; Stedsnavne\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"DOM\",\n \"label\": \"Dominican Republic\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"DZA\",\n \"label\": \"Algeria\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - made available by GeoNames licensed under CC-BY 4.0. For more information - visit: http://www.geonames.org/.\"\n ]\n },\n {\n \"country\": - {\n \"ISO3\": \"ECU\",\n \"label\": \"Ecuador\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"EGY\",\n \"label\": - \"Egypt\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ERI\",\n \"label\": - \"Eritrea\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ESP\",\n \"label\": - \"Spain\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"This product - contains public transport stops and sports centers data made available by - Ayuntamiento de Lorca under Legal Terms available here: http://datos.lorca.es/avisolegal/\",\n - \ \"This product contains several data made available by Ayuntamiento - de Madrid under Legal Terms available here:\",\n \"http://datos.madrid.es/portal/site/egob/menuitem.400a817358ce98c34e937436a8a409a0/?vgnextoid=b4c412b9ace9f310VgnVCM100000171f5a0aRCRD&vgnextchannel=b4c412b9ace9f310VgnVCM100000171f5a0aRCRD&vgnextfmt=default\",\n - \ \"This product contains public transport stops data \u201CPowered - by EMT de Madrid\u201D under license terms available here:\",\n \"https://www.crtm.es/licencia-de-uso\",\n - \ \"This product contains public transport stops data made available - by Ayuntamiento de Zaragoza under Legal Terms available here:\",\n \"https://www.zaragoza.es/ciudad/servicios/avisolegal.htm#condiciones\",\n - \ \"This product contains public transport stops \u201CPowered by - CRTM\u201D under license terms available here:\",\n \"http://www.crtm.es/licencia-de-uso\",\n - \ \"Contains data available on /nap.dgt.es/: * Direcci\xF3n General - de Tr\xE1fico Madrid * Trafiko Zuzendaritza/Direcci\xF3n de Tr\xE1fico San - Sebastian * Servei Catal\xE0 de Tr\xE0nsit Barcelona\",\n \"Contains - data licensed under CC-BY 3.0. For more information visit: * Ajuntament de - El Prat de Llobregat https://seu-e.cat/web/elpratdellobregat/avis-legal * - Xunta de Galicia https://abertos.xunta.gal/condicions-de-uso * Ayuntamiento - de Getxo https://www.getxo.eus/es/gobierno-abierto/opndata/ * Ayuntamiento - de C\xE1ceres https://opendata.caceres.es/terminos * Diputaci\xF3n de Pontevedra - https://ide.depo.gal/web/idepo/aviso-legal * Junta de Castilla y Le\xF3n - https://datosabiertos.jcyl.es/web/es/datos-abiertos-castilla-leon.html * - Ajuntament de Girona https://www.girona.cat/opendata/dataset * Ajuntament - de Sabadell http://web.sabadell.cat/ * Ayuntamiento de Santa Cruz de Tenerife - http://www.santacruzdetenerife.es/opendata/about * Gobierno Vasco https://opendata.euskadi.eus/general/-/informacion-legal-opendata/ - \ * Ayuntamiento de Alcobendas https://datos.alcobendas.org/pages/aviso-legal - \ * Ajuntament de Terrassa https://opendata.terrassa.cat/es/\",\n \"Contains - data licensed under CC-BY 4.0. For more information visit: * Ayuntamiento - de Valencia http://www.valencia.es/ayuntamiento/DatosAbiertos.nsf/ * Ajuntament - de Sant Feu de Llobregat http://opendata.santfeliu.cat/ca/normes-dus/#llicencia - \ * Cartociudad http://www.cartociudad.es/portal/ * Nomecalles http://www.madrid.org/nomecalles/Inicio.icm - \ * Ayuntamiento de Barcelona https://opendata-ajuntament.barcelona.cat/es/ - \ * Gobierno de Navarra https://gobiernoabierto.navarra.es/es/open-data * - Ayuntamiento de Vitoria-Gasteiz https://www.vitoria-gasteiz.org/j34-01w/catalogo/portada - \ * Diputaci\xF3n Foral de Guip\xFAzcoa https://b5m.gipuzkoa.eus/web5000/es/cartoteca/conjuntos-datos/ - \ * Diputaci\xF3n Foral de Vizcaya https://www.opendatabizkaia.eus/es/catalogo - \ * Instituto Geogr\xE1fico Nacional https://www.ign.es/web/ign/portal/politica-datos - \ * Consell Insular de Menorca https://menorca.tib.org/es/open-data * Gobierno - de Arag\xF3n https://opendata.aragon.es/\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"EST\",\n \"label\": - \"Estonia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains map - data made available by Estonian Land Board, 2019:\",\n \"https://geoportaal.maaamet.ee/index.php?lang_id=2&page_id=618&plugin_act=litsents\",\n - \ \"This product contains information from TarkTee with license - listed here: https://tarktee.mnt.ee/#/en/terms\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ETH\",\n \"label\": - \"Ethiopia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"FIN\",\n \"label\": - \"Finland\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"This product - contains information from Finnish Transport agency, with license listed here:\",\n - \ \"https://www.liikennevirasto.fi/web/en/open-data/terms-of-use#.W9GUg7puIjY\",\n - \ \"This product contains information from Finnish Population Registry, - with license listed here:\",\n \"https://www.avoindata.fi/data/en_GB/dataset/rakennusten-osoitetiedot-koko-suomi\",\n - \ \"Suomalaisten rakennusten osoitteet, postinumerot ja WGS84-koordinaatit - by V\xE4est\xF6rekisterikeskus is licensed under a Creative Commons Attribution - 4.0 International License.\",\n \"Contains data licensed under - CC-BY 4.0. For more information visit Fintraffic / digitraffic.fi https://www.digitraffic.fi\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"FJI\",\n \"label\": \"Fiji\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"FLK\",\n \"label\": \"Falkland Islands\"\n - \ },\n \"copyrights\": [\n \"You agree to include - as soon as practically possible, but no later than the first new release of - the Authorized Application following Your receipt of any 3D Landmarks, any - copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"FRA\",\n \"label\": - \"France\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"(navigation - devices only) Michelin data \xA9 Michelin 2019 The following copyright applies - to the Advanced Navigable MAP, Address Points, 2D City Map and Buildings: - \ Source: Direction g\xE9n\xE9rale des Finances Publiques \u2013 Cadastre; - Updated 2019\",\n \"Contains data licensed under Open License Version - 1.0: * Ville de Toulouse * Rennes M\xE9tropole * Grand Lyon dated from - 1/3/2015 * Mulhouse Alsace Agglom\xE9ration dated from 13/2/2015 * Grand - Poitiers * Ville de Chassieu dated from October 2017 * Ville de Chennevi\xE8res-sur-Marne - \ * D\xE9partement des Hauts-de-Seine * M\xE9tropole Europ\xE9enne de Lille - dated from 21/2/2017 * Colmar Agglom\xE9ration dated from 23/09/2016 * Minist\xE8re - des Solidarit\xE9s et de la Sant\xE9 dated from 17/3/2017 * Sodetrel dated - from December 2017 * E.Leclerc dated from December 2017 * Parking EFFIA - Stationnement dated from December 2017 * Centre national du cin\xE9ma et - de l'image anim\xE9e dated from 23/9/2016 * Communaut\xE9 d'Agglom\xE9ration - de Rambouillet Territoires dated from January 2017 * Lannion-Tr\xE9gor Communaut\xE9 - \ * G\xE9oGrandEst * Nissan dated from December 2017 * Seames dated from - December 2017 * Syndicat Intercommunal des Energies du d\xE9partement de - la Loire dated from February 2017 * SOR\xC9GIES dated from June 2017 * Syndicat - D\xE9partemental d\u2019Energie et d\u2019Equipement de la Vend\xE9e dated - from December 2017 * Minist\xE8re de l\u2019Int\xE9rieur dated from July - 2018 * Minist\xE8re des Sports * Office national d'information sur les enseignements - et les professions dated from December 2017 * Administration du Premier ministre - dated from December 2017 * D\xE9partement de Sa\xF4ne-et Loire * Ville d\u2019Istres - dated from December 2017 * Tesla dated from February 2017 * Syndicat D\xE9partemental - d'Energies de la Manche dated from December 2017 * Syndicat D\xE9partemental - d'Energie de Loire-Atlantique dated from December 2017 * M\xE9tropole d'Aix-Marseille-Provence - \ * Ville de Montpellier\",\n \"Contains data licensed under Open - License Version 2.0: * Minist\xE8re de la Transition \xC9cologique * Ville - d'Issy-les-Moulineaux * Ville de Bayonne dated from 23/01/2018 * P\xF4le - Metropolitain du Pays de Brest dated from 1/3/2016 * Bordeaux M\xE9tropole - \ * Communaut\xE9 d'agglom\xE9ration Arles Crau Camargue Montagnette dated - from 29/4/2016 * Rennes M\xE9tropole dated from 30/11/2016 * Angers Loire - M\xE9tropole dated from 21/9/2016 * D\xE9partement de la Moselle dated from - December 2017 * Ville de La Rochelle dated from 23/05/2012 * Grand Paris - Seine Ouest dated from 01/02/2016 * Morbihan Energies dated from December - 2017 * R\xE9gion Bretagne dated from December 2017 * R\xE9gie Culturelle - de la R\xE9gion Sud Provence-Alpes-C\xF4te d'Azur dated from December 2017 - \ * Education Nationale * M\xE9tropole du Grand Nancy * Toulouse M\xE9tropole - \ * Nantes M\xE9tropole * M\xE9tropole Europ\xE9enne de Lille * Orl\xE9ans - M\xE9tropole * Grand Poitiers * D\xE9partement des Hautes-de-Seine * D\xE9partement - de la Mayenne * Mulhouse Alsace Agglom\xE9ration\",\n \"Contains - data licensed under la Licence de r\xE9utilisation des donn\xE9es num\xE9ris\xE9es - d\u2019informations en temps r\xE9el sur la circulation: * Minist\xE8re de - la Transition \xC9cologique * Direction Interd\xE9partementale des Routes - d\u2019\xCEle-de-France\",\n \"Contains data licensed under le - Code des relation sentre le public et l\u2019administration: * Communaut\xE9 - d'Agglom\xE9ration Maubeuge - Val de Sambre dated from September 2017 * Syndicat - des \xE9nergies de la Haute-Savoie dated from November 2017 * Syndicat d\u2019\xE9nergie - de l\u2019Oise dated from December 2017 * Syndicat d'\xE9nergie de l'Orne - dated from March 2017 * Syndicat D\xE9partemental d'Energie de la Haute-Garonne - dated from December 2017 * Syndicat D\xE9partemental d'Energie des Hautes-Pyr\xE9n\xE9es - dated from December 2017 * Syndicat D\xE9partemental d'Energies du Calvados - dated from December 2017 * Syndicat D\xE9partemental d'Energie du Cher dated - from December 2017 * Syndicat D\xE9partemental d'Energies de l'Indre dated - from December 2017 * Syndicat D\xE9partemental d'Equipement et d'Energie - du Finist\xE8re dated from December 2017 * Syndicat D\xE9partemental des - Energies de Seine-et-Marne dated from March 2017 * Syndicat intercommunal - d'\xE9nergie d'Indre-et-Loire dated from December 2017 * Union des Secteurs - d'Energie du D\xE9partement de l'Aisne dated from December 2017 * Ville de - Beauvais dated from March 2017\",\n \"Contains data from D\xE9partement - de Hautes-Alpes. For more information visit: http://inforoute.hautes-alpes.fr/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"FRO\",\n \"label\": \"Faroe Islands\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"FSM\",\n \"label\": \"Federated States - of Micronesia\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GAB\",\n \"label\": - \"Gabon\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GBR\",\n \"label\": - \"United Kingdom\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains Ordnance - Survey data \xA9 Crown copyright and database right 2018. Licensed under the - Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"Contains Ordnance Survey data \xA9 Crown copyright and database - right 2018.\",\n \"Contains Royal Mail data \xA9 Royal Mail copyright - and database right 2018.\",\n \"Contains National Statistics data - \xA9 Crown copyright and database right 2018.\",\n \"Licensed under - the Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information (public transport - stops data) licensed under the Open Government Licence v2.0. This is specified - here: http://data.gov.uk/dataset/naptan\",\n \"The license can - be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n - \ \"This product contains public sector information (publicly accessible - charge points) licensed under the Open Government Licence v2.0. This is specified - here: http://data.gov.uk/dataset/national-charge-point-registry\",\n \"The - license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n - \ \"This product contains Sports venues locations data made available - by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE - AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area - . The license can be found at: https://spogo.co.uk/active-places-license\",\n - \ \"This product contains data made available by the Northern Ireland - Department of Education and licensed under the Open Government Licence v3.0. - Data download page: http://apps.deni.gov.uk/appinstitutes The license can - be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains data made available by Historic England - 2015. Contains Ordnance Survey data \xA9 Crown copyright and database right - 2015 The Historic England GIS Data contained in this material was obtained - on 12/08/2015. The most publicly available up to date Historic England GIS - Data can be obtained from: http://www.HistoricEngland.org.uk\",\n \"Data - download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx\",\n - \ \"The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html\",\n - \ \"This product contains designated Historic Asset GIS Data from - the Welsh Historic Environment Service, licenced under the Open Government - Licence. Data download page: http://lle.wales.gov.uk. The license can be found - at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information licensed under - the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information licensed under - the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains data made available by Visit Wales and - licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"Based upon the Ordnance Survey or Northern Ireland's data of - 2019 with the permission of the Controller of Her Majesty's Stationary Office, - \xA9 Crown copyright and database rights.\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GEO\",\n \"label\": - \"Georgia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"This product - contains data from the National Agency of Public Registry under the Ministry - of Justice of Georgia.\",\n \"For more information visit: http://www.napr.gov.ge/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"GGY\",\n \"label\": \"Guernsey\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\",\n \"Contains Ordnance Survey data \xA9 Crown copyright - and database right 2018. Licensed under the Open Government Licence. The license - can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"Contains Ordnance Survey data \xA9 Crown copyright and database - right 2018.\",\n \"Contains Royal Mail data \xA9 Royal Mail copyright - and database right 2018.\",\n \"Contains National Statistics data - \xA9 Crown copyright and database right 2018.\",\n \"Licensed under - the Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information (public transport - stops data) licensed under the Open Government Licence v2.0. This is specified - here: http://data.gov.uk/dataset/naptan\",\n \"The license can - be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n - \ \"This product contains public sector information (publicly accessible - charge points) licensed under the Open Government Licence v2.0. This is specified - here: http://data.gov.uk/dataset/national-charge-point-registry\",\n \"The - license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n - \ \"This product contains Sports venues locations data made available - by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE - AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area - . The license can be found at: https://spogo.co.uk/active-places-license\",\n - \ \"This product contains data made available by the Northern Ireland - Department of Education and licensed under the Open Government Licence v3.0. - Data download page: http://apps.deni.gov.uk/appinstitutes The license can - be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains data made available by Historic England - 2015. Contains Ordnance Survey data \xA9 Crown copyright and database right - 2015 The Historic England GIS Data contained in this material was obtained - on 12/08/2015. The most publicly available up to date Historic England GIS - Data can be obtained from: http://www.HistoricEngland.org.uk\",\n \"Data - download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx\",\n - \ \"The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html\",\n - \ \"This product contains designated Historic Asset GIS Data from - the Welsh Historic Environment Service, licenced under the Open Government - Licence. Data download page: http://lle.wales.gov.uk. The license can be found - at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information licensed under - the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information licensed under - the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains data made available by Visit Wales and - licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"GHA\",\n \"label\": \"Ghana\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"GIB\",\n \"label\": \"Gibraltar\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GIN\",\n \"label\": - \"Guinea\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GLP\",\n \"label\": - \"Guadeloupe\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GMB\",\n \"label\": - \"The Gambia\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GNB\",\n \"label\": - \"Guinea-Bissau\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GNQ\",\n \"label\": - \"Equatorial Guinea\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GRC\",\n \"label\": - \"Greece\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GRD\",\n \"label\": - \"Grenada\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GRL\",\n \"label\": - \"Greenland\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GTM\",\n \"label\": - \"Guatemala\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GUF\",\n \"label\": - \"French Guiana\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"GUM\",\n \"label\": - \"Guam\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"The following - copyright notice applies to the use of Post- FSA layer and 6-digit layer: - \ \xA9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary - and the subject of copyright protection and other intellectual property rights - owned or licensed to TomTom. The product includes information copied with - permission from Canadian authorities, including \xA9 Canada Post Corporation, - All rights reserved. The use of this material is subject to the terms of a - License Agreement. You will be held liable for any unauthorized copying or - disclosure of this material. The following copyright notice applies to the - use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. All rights reserved. - Portions of the POI database contained in Points of Interest North America - have been provided by Neustar Localeze The following copyright notice applies - to the use of Telecommunications: \xA9 2021 Pitney Bowes Software Inc. All - rights reserved. This product contains information and/or data of iconectiv, - licensed to be included herein. Copyright \xA9 2021 iconectiv. All rights - reserved. The following copyright notice applies to the use of Logistics: - \ \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - 2021 ProMiles - Software Development Corporation. All rights reserved. This material is proprietary - and the subject of copyright protection and other intellectual property rights - owned or licensed to TomTom.\",\n \"\xA9 United States Postal Service - 2021\",\n \"You shall not use the Municipal Boundary layer of the - Administrative Areas product to create or derive applications which are used - by third parties for the purpose of tariff, tax jurisdiction, or tax rate - determination for a particular address or range of addresses.\",\n \"This - product is built on basis on the following elevation data: SRTM, GTOPO, NED - data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview\",\n - \ \"This product is built on basis on the following elevation data: - 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department - of Commerce, National Oceanic and Atmospheric Administration, National Geophysical - Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\"\n ]\n - \ },\n {\n \"country\": {\n \"ISO3\": \"GUY\",\n - \ \"label\": \"Guyana\"\n },\n \"copyrights\": [\n - \ \"You agree to include as soon as practically possible, but no - later than the first new release of the Authorized Application following Your - receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"HKG\",\n \"label\": \"Hong Kong\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - licensed under Open Data Government v1.0.\",\n \"Contains datasets - made available by DATA.GOV.HK. under the following open data license: https://data.gov.hk/en/terms-and-conditions\",\n - \ \"Contains datasets made available by HONG KONG GEODATA STORE - under the following open data license: https://geodata.gov.hk/gs/?p=terms_and_conditions\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"HMD\",\n \"label\": \"Heard Island and McDonald Islands\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"HND\",\n \"label\": - \"Honduras\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"HRV\",\n \"label\": - \"Croatia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"HTI\",\n \"label\": - \"Haiti\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"HUN\",\n \"label\": - \"Hungary\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - under National Access Point Hungary.\"\n ]\n },\n {\n \"country\": - {\n \"ISO3\": \"IDN\",\n \"label\": \"Indonesia\"\n - \ },\n \"copyrights\": [\n \"You agree to include - as soon as practically possible, but no later than the first new release of - the Authorized Application following Your receipt of any 3D Landmarks, any - copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 Base data - Bakosurtanal\"\n ]\n },\n {\n \"country\": {\n \"ISO3\": - \"IMN\",\n \"label\": \"Isle of Man\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\",\n \"Contains Ordnance Survey data \xA9 Crown copyright - and database right 2018. Licensed under the Open Government Licence. The license - can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"Contains Ordnance Survey data \xA9 Crown copyright and database - right 2018.\",\n \"Contains Royal Mail data \xA9 Royal Mail copyright - and database right 2018.\",\n \"Contains National Statistics data - \xA9 Crown copyright and database right 2018.\",\n \"Licensed under - the Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information (public transport - stops data) licensed under the Open Government Licence v2.0. This is specified - here: http://data.gov.uk/dataset/naptan\",\n \"The license can - be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n - \ \"This product contains public sector information (publicly accessible - charge points) licensed under the Open Government Licence v2.0. This is specified - here: http://data.gov.uk/dataset/national-charge-point-registry\",\n \"The - license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n - \ \"This product contains Sports venues locations data made available - by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE - AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area - . The license can be found at: https://spogo.co.uk/active-places-license\",\n - \ \"This product contains data made available by the Northern Ireland - Department of Education and licensed under the Open Government Licence v3.0. - Data download page: http://apps.deni.gov.uk/appinstitutes The license can - be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains data made available by Historic England - 2015. Contains Ordnance Survey data \xA9 Crown copyright and database right - 2015 The Historic England GIS Data contained in this material was obtained - on 12/08/2015. The most publicly available up to date Historic England GIS - Data can be obtained from: http://www.HistoricEngland.org.uk\",\n \"Data - download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx\",\n - \ \"The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html\",\n - \ \"This product contains designated Historic Asset GIS Data from - the Welsh Historic Environment Service, licenced under the Open Government - Licence. Data download page: http://lle.wales.gov.uk. The license can be found - at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information licensed under - the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information licensed under - the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains data made available by Visit Wales and - licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"IND\",\n \"label\": \"India\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\",\n \"You agree that any Licensed Product which - contains data of India may be subject to additional terms and conditions which - shall be provided to You when available to TomTom. India data shall not be - altered or changed during Your product creation / publication process. India - data may not be exported from India.\"\n ]\n },\n {\n \"country\": - {\n \"ISO3\": \"IND.IND\",\n \"label\": \"\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"You agree that - any Licensed Product which contains data of India may be subject to additional - terms and conditions which shall be provided to You when available to TomTom. - India data shall not be altered or changed during Your product creation / - publication process. India data may not be exported from India.\"\n ]\n - \ },\n {\n \"country\": {\n \"ISO3\": \"IRL\",\n - \ \"label\": \"Ireland\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\",\n \"\xA9 2019 GeoDirectory\"\n ]\n },\n - \ {\n \"country\": {\n \"ISO3\": \"IRN\",\n \"label\": - \"Iran\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"IRQ\",\n \"label\": - \"Iraq\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ISL\",\n \"label\": - \"Iceland\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Based on data - from the \xDEj\xF3\xF0skr\xE1 \xCDslands.\",\n \"Contains data - licensed under UK Open Government License.\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ISR\",\n \"label\": - \"Israel\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ISR.ISR\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ITA\",\n \"label\": - \"Italy\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - licensed under IODL 2.0. For more information visit: * Regione Lombardia. - http://www.geoportale.regione.lombardia.it/en/home * Comune di Torino. http://aperto.comune.torino.it - \ * Regione Veneto. For more information visit https://dati.veneto.it/ * - Regione Autonoma Friuli Venezia Giulia. http://www.regione.fvg.it/rafvg/cms/RAFVG/ambiente-territorio/conoscere-ambiente-territorio/ - \ * Regione Basilicata. http://dati.regione.basilicata.it/catalog/ * Regione - Calabria. http://geoportale.regione.calabria.it/opendata * Comune di Reggio - Calabria. http://dati.reggiocal.it/ * Ministero dell\u2019Istruzione. http://www.dati.gov.it - \ * Regione Puglia. http://www.dataset.puglia.it/ * Comune di Verona. http://www.comune.verona.it - \ * Comune di Vicenza. http://www.comune.vicenza.it\",\n \"Contains - data licensed under CC-BY 2.0 For more information visit: * Comune di Bari. - http://opendata.comune.bari.it/dataset/sistema-informativo-territoriale-civilario-unico-comunaleContains - data licensed under CC-BY 2.5. For more information visit * Comune di Milano. - https://geoportale.comune.milano.it/sit/open-data/ and http://geodata-sitmilano.opendata.arcgis.com/ - \ * Regione Toscana according to the legislation available at http://www.regione.toscana.it/documents/10180/492172/Decreto-2014_02_25n663.pdf/162db905-95fd-4b5e-bc41-88a629b5a3e5 - and Regolamento http://raccoltanormativa.consiglio.regione.toscana.it/articolo?urndoc=urn:nir:regione.toscana:regolamento.giunta:2007-02-09;6/R&pr=idx,0;artic,1;articparziale,0\",\n - \ \"http://dati.toscana.it/dataset/grafo-civici * Regione Emilia - Romagna. http://geoportale.regione.emilia-romagna.it/it/catalogo/dati-cartografici/cartografia-di-base - and http://geoportale.regione.emilia-romagna.it/it/catalogo/dati-cartografici/cartografia-di-base/database-topografico-regionale/gestione-viabilita-indirizzi/toponimi-e-numeri-civici - \ * Regione Piemonte. http://www.geoportale.piemonte.it/geocatalogorp/?sca[]=r_piemon:da9b12ba-866a-4f0f-8704-5b7b753e4f15&sezione=dwl - \ * Agenzia Europea dell'Ambiente http://data.europa.eu/euodp/it/data/dataset/data_urban-atlas\",\n - \ \"Contains data licensed under CC-BY 3.0. For more information - visit: * Comune di Milano. https://www.comune.milano.it/wps/portal/ist/it/vivicitta/verde/parchi - \ * Ministero dell\u2019Istruzione, dell\u2019Universit\xE0 e della Ricerca - MIURhttp://www.tper.it/azienda/tper-open-data * Agenzia per la Mobilit\xE0 - Roma http://www.agenziamobilita.roma.it/servizi/open-data/dataset.html * - Comune di Firenze http://opendata.comune.fi.it/mobilita_sicurezza/dataset_0196.html - and http://opendata.comune.fi.it/statistica_territorio/dataset_0040.html and - http://opendata.comune.fi.it/mobilita_sicurezza/dataset_0139.html * Regione - Umbria http://dati.umbria.it/ and http://www.umbriageo.regione.umbria.it/pagine/servizi-wms-attivi - \ * Comune di Cesena http://www.datiopen.it/it/opendata/Comune_di_Cesena_Verde - \ * Comune di Livorno http://www.datiopen.it/it/opendata/Comune_di_Livorno_Area_verde - \ * Comune di Bologna http://dati.comune.bologna.it/node/201 and http://dati.comune.bologna.it/node/217 - \ * Istituto Nazionale di Statistica http://www.istat.it/it/archivio/678 and - http://datiopen.istat.it/\",\n \"Contains data licensed under CC-BY - 4.0. For more information visit: * Regione Veneto https://dati.veneto.it/ - \ * Comune di Fano https://www.comune.fano.pu.it/index.php?id=2020 * Regione - Toscana http://dati.toscana.it/ * Comune di Genova http://dati.comune.genova.it - \ * Comune di Roma http://dati.comune.roma.it * Regione Piemonte http://www.geoportale.piemonte.it - \ * Reggio Emilia http://www.dati.gov.it * Regione Lazio http://www.dati.lazio.it - \ * Regione Autonoma Sardegna http://dati.regione.sardegna.it * Provincia - di Biella http://cartografia.provincia.biella.it * Regione Liguria https://www.regione.liguria.it - \ * Comune di Milano http://dati.comune.milano.it\"\n ]\n },\n - \ {\n \"country\": {\n \"ISO3\": \"JAM\",\n \"label\": - \"Jamaica\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"JEY\",\n \"label\": - \"Jersey\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains Ordnance - Survey data \xA9 Crown copyright and database right 2018. Licensed under the - Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"Contains Ordnance Survey data \xA9 Crown copyright and database - right 2018.\",\n \"Contains Royal Mail data \xA9 Royal Mail copyright - and database right 2018.\",\n \"Contains National Statistics data - \xA9 Crown copyright and database right 2018.\",\n \"Licensed under - the Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information (public transport - stops data) licensed under the Open Government Licence v2.0. This is specified - here: http://data.gov.uk/dataset/naptan\",\n \"The license can - be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n - \ \"This product contains public sector information (publicly accessible - charge points) licensed under the Open Government Licence v2.0. This is specified - here: http://data.gov.uk/dataset/national-charge-point-registry\",\n \"The - license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n - \ \"This product contains Sports venues locations data made available - by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE - AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area - . The license can be found at: https://spogo.co.uk/active-places-license\",\n - \ \"This product contains data made available by the Northern Ireland - Department of Education and licensed under the Open Government Licence v3.0. - Data download page: http://apps.deni.gov.uk/appinstitutes The license can - be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains data made available by Historic England - 2015. Contains Ordnance Survey data \xA9 Crown copyright and database right - 2015 The Historic England GIS Data contained in this material was obtained - on 12/08/2015. The most publicly available up to date Historic England GIS - Data can be obtained from: http://www.HistoricEngland.org.uk\",\n \"Data - download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx\",\n - \ \"The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html\",\n - \ \"This product contains designated Historic Asset GIS Data from - the Welsh Historic Environment Service, licenced under the Open Government - Licence. Data download page: http://lle.wales.gov.uk. The license can be found - at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information licensed under - the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information licensed under - the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains data made available by Visit Wales and - licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"JOR\",\n \"label\": \"Jordan\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\",\n \"\xA9 Royal Jordanian Geographic center\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"JPN\",\n \"label\": \"\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\",\n \"\xA9 Mapple, Inc. \xA9 Mapple\",\n \"Contains - data licensed under: http://its.zenrin.co.jp/legal/jpn/al_mi/index.html\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"KAZ\",\n \"label\": \"Kazakhstan\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"KEN\",\n \"label\": \"Kenya\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"KGZ\",\n \"label\": - \"Kyrgyzstan\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"KHM\",\n \"label\": - \"Cambodia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"KIR\",\n \"label\": - \"Kiribati\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"This product - contains data made available by PacGeo. For more information visit: http://www.pacgeo.org/about/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"KNA\",\n \"label\": \"Saint Kitts and Nevis\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"KOR\",\n \"label\": - \"Republic of Korea\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Based upon electronic - data \xA9 Mappers Co., Ltd. All rights reserved. Korean Association Survey - and Mapping Review Completed No. 2013-016 (2013-04-05)./No. 2008-133 (2008.05.27)/No. - 2011-056 (2011.08.29)/No. 2012-082 (2012.11.16) Spatial Information Quality - Management Service Review Completed No. 2021-004 (2021.03.31)\",\n \"You - agree that any Licensed Product which contains data of Korea may be subject - to additional terms and conditions which shall be provided to You when available - to TomTom. Korea data may not be exported from Korea. Data cannot be shipped - to End Users in an open format (such as ESRI shapefile).\"\n ]\n },\n - \ {\n \"country\": {\n \"ISO3\": \"KWT\",\n \"label\": - \"Kuwait\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"LAO\",\n \"label\": - \"Laos\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"LBN\",\n \"label\": - \"Lebanon\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"LBR\",\n \"label\": - \"Liberia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"LBY\",\n \"label\": - \"Libya\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"LCA\",\n \"label\": - \"Saint Lucia\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"LIE\",\n \"label\": - \"Liechtenstein\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"LKA\",\n \"label\": - \"Sri Lanka\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"LSO\",\n \"label\": - \"Lesotho\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"LTU\",\n \"label\": - \"Lithuania\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - licensed under: http://eismoinfo.lt/#!/news/8592\"\n ]\n },\n - \ {\n \"country\": {\n \"ISO3\": \"LUX\",\n \"label\": - \"Luxembourg\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"LVA\",\n \"label\": - \"Latvia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MAC\",\n \"label\": - \"Macao\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Macao Special - Administrative Region Government \u2013 Cartography and Cadastre Bureau\",\n - \ \"This product contains Road Geometry data made available by Macao - Special Administrative Region Government \u2013 Cartography and Cadastre Bureau: - http://www.dscc.gov.mo/ENG/copyright.html.\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MAF\",\n \"label\": - \"Saint Martin\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MAR\",\n \"label\": - \"Morocco\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MCO\",\n \"label\": - \"Monaco\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MDA\",\n \"label\": - \"Moldova\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"This product - contains data from the Republic of Moldova. For more information visit: http://date.gov.md.\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"MDG\",\n \"label\": \"Madagascar\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"MDV\",\n \"label\": \"Maldives\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MEX\",\n \"label\": - \"Mexico\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MHL\",\n \"label\": - \"Marshall Islands\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MKD\",\n \"label\": - \"North Macedonia\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MLI\",\n \"label\": - \"Mali\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MLT\",\n \"label\": - \"Malta\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 Mapping - Unit, Malta Planning Authority\"\n ]\n },\n {\n \"country\": - {\n \"ISO3\": \"MMR\",\n \"label\": \"Myanmar\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MNE\",\n \"label\": - \"Montenegro\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MNG\",\n \"label\": - \"Mongolia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MNP\",\n \"label\": - \"Northern Mariana Islands\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"The following - copyright notice applies to the use of Post- FSA layer and 6-digit layer: - \ \xA9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary - and the subject of copyright protection and other intellectual property rights - owned or licensed to TomTom. The product includes information copied with - permission from Canadian authorities, including \xA9 Canada Post Corporation, - All rights reserved. The use of this material is subject to the terms of a - License Agreement. You will be held liable for any unauthorized copying or - disclosure of this material. The following copyright notice applies to the - use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. All rights reserved. - Portions of the POI database contained in Points of Interest North America - have been provided by Neustar Localeze The following copyright notice applies - to the use of Telecommunications: \xA9 2021 Pitney Bowes Software Inc. All - rights reserved. This product contains information and/or data of iconectiv, - licensed to be included herein. Copyright \xA9 2021 iconectiv. All rights - reserved. The following copyright notice applies to the use of Logistics: - \ \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - 2021 ProMiles - Software Development Corporation. All rights reserved. This material is proprietary - and the subject of copyright protection and other intellectual property rights - owned or licensed to TomTom.\",\n \"\xA9 United States Postal Service - 2021\",\n \"You shall not use the Municipal Boundary layer of the - Administrative Areas product to create or derive applications which are used - by third parties for the purpose of tariff, tax jurisdiction, or tax rate - determination for a particular address or range of addresses.\",\n \"This - product is built on basis on the following elevation data: SRTM, GTOPO, NED - data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview\",\n - \ \"This product is built on basis on the following elevation data: - 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department - of Commerce, National Oceanic and Atmospheric Administration, National Geophysical - Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\"\n ]\n - \ },\n {\n \"country\": {\n \"ISO3\": \"MOZ\",\n - \ \"label\": \"Mozambique\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"MRT\",\n \"label\": \"Mauritania\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MSR\",\n \"label\": - \"Montserrat\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MTQ\",\n \"label\": - \"Martinique\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MUS\",\n \"label\": - \"Mauritius\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MWI\",\n \"label\": - \"Malawi\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MYS\",\n \"label\": - \"Malaysia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"The product - contains data made available by Government Open Data Portal. For more information - visit: http://www.data.gov.my/page/termsofuse.\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MYT\",\n \"label\": - \"Mayotte\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"NAM\",\n \"label\": - \"Namibia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"NCL\",\n \"label\": - \"New Caledonia\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"NER\",\n \"label\": - \"Niger\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"NFK\",\n \"label\": - \"Norfolk Island\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"NGA\",\n \"label\": - \"Nigeria\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"NIC\",\n \"label\": - \"Nicaragua\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"NIU\",\n \"label\": - \"Niue\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"NLD\",\n \"label\": - \"Netherlands\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - licensed under CC-BY 4.0. For more information visit: * Kadaster Top10NL - http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/29d5310f-dd0d-45ba-abad-b4ffc6b8785f?tab=general - \ * Kadaster BGT http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2cb4769c-b56e-48fa-8685-c48f61b9a319?tab=general - \ * CBS Bestand Bodemgebruik http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2d3dd6d2-2d2b-4b5f-9e30-86e19ed77a56?tab=general\",\n - \ \"Contains data licensed under CC-BY 2.0. For more information - visit: * Municipality of Amsterdam Datasets Parkeergarages https://data.amsterdam.nl/index.html#?dte=https:%2F%2Fapi.datapunt.amsterdam.nl%2Fcatalogus%2Fapi%2F3%2Faction%2Fpackage_show%3Fid%3Df06f5a77-04f6-432f-9fd9-ce9d740631aa&dtfs=T&mpb=topografie&mpz=9&mpv=52.3719:4.9012\",\n - \ \"Contains data licensed under CC-BY 3.0. For more information - visit: * Municipality of Amsterdam Multiple cat POI's https://data.amsterdam.nl/index.html#?dsd=dcatd&dsp=1&dsq=open%2520data&dsv=CATALOG&mpb=topografie&mpz=11&mpv=52.3731081:4.8932945\",\n - \ \"This product contains public transport stops data made available - under 9292 Open Data framework as documented on March 2013. This is specified - in their terms available here: http://9292opendata.org/sla\",\n \"This - product contains traffic incident information made available by NDW under - open source data policy:\_https://www.ndw.nu/pagina/nl/103/datalevering/120/open_data/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"NOR\",\n \"label\": \"Norway\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\",\n \"Contains data under CC BY3.0 as distributed - by Nobil https://creativecommons.org/licenses/by/3.0/\",\n \"Contains - data made available by Statens Kartverk licensed under CC-BY 4.0. For more - information visit https://creativecommons.org/licenses/by/4.0/\",\n \"Contains - data made available by Statens Vegvesen licensed under the Norwegian licence - for Open Government data (NLOD). For more information visit https://data.norge.no/nlod/en/2.0 - .\"\n ]\n },\n {\n \"country\": {\n \"ISO3\": - \"NPL\",\n \"label\": \"Nepal\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"NRU\",\n \"label\": \"Nauru\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"NZL\",\n \"label\": - \"New Zealand\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - licensed under CC-BY 3.0 NZ. For more information visit: * New Zealand Transport - Agency https://www.nzta.govt.nz/resources/grouped-crash-sites\",\n \"Contains - data licensed under CC-BY 4.0. For more information visit: * Land Information - New Zealand https://data.linz.govt.nz * Statistics New Zealand https://datafinder.stats.govt.nz - \ * Christchurch City Council https://opendata.ccc.govt.nz/public-portal/ - \ * Wellington City Council https://data-wcc.opendata.arcgis.com/ * Auckland - Transport https://data-wcc.opendata.arcgis.com * Ministry of Education https://www.educationcounts.govt.nz/ - \ * Ministry of Health https://www.health.govt.nz/ * Ministry of Justice - https://www.justice.govt.nz * Ministry for Primary Industries http://mpiportal.force.com/publicregister - \ * Ministry of Social Development https://www.familyservices.govt.nz/ * - Department of Conservation Te Papa Atawhai https://doc-deptconservation.opendata.arcgis.com/ - \ * New Zealand Transport Agency https://www.nzta.govt.nz\"\n ]\n - \ },\n {\n \"country\": {\n \"ISO3\": \"OAS\",\n - \ \"label\": \"\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OAT\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OBE\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OCA\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OCP\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ODE\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ODK\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OES\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OFI\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OFR\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OGB\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OGR\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OIE\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OIN\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OIT\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OMN\",\n \"label\": - \"Oman\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OMX\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ONL\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ONO\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OPA\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OPL\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OPT\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ORU\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OSE\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OTR\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OUA\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OUP\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"PAK\",\n \"label\": - \"Pakistan\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"You agree that - any Licensed Product which contains data of India may be subject to additional - terms and conditions which shall be provided to You when available to TomTom. - India data shall not be altered or changed during Your product creation / - publication process. India data may not be exported from India.\"\n ]\n - \ },\n {\n \"country\": {\n \"ISO3\": \"PAN\",\n - \ \"label\": \"Panama\"\n },\n \"copyrights\": [\n - \ \"You agree to include as soon as practically possible, but no - later than the first new release of the Authorized Application following Your - receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"PCN\",\n \"label\": \"Pitcairn Islands\"\n - \ },\n \"copyrights\": [\n \"You agree to include - as soon as practically possible, but no later than the first new release of - the Authorized Application following Your receipt of any 3D Landmarks, any - copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"PER\",\n \"label\": - \"Peru\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"PHL\",\n \"label\": - \"Philippines\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"PLW\",\n \"label\": - \"Palau\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"PNG\",\n \"label\": - \"Papua New Guinea\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"POL\",\n \"label\": - \"Poland\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"PRI\",\n \"label\": - \"Puerto Rico\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"The following - copyright notice applies to the use of Post- FSA layer and 6-digit layer: - \ \xA9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary - and the subject of copyright protection and other intellectual property rights - owned or licensed to TomTom. The product includes information copied with - permission from Canadian authorities, including \xA9 Canada Post Corporation, - All rights reserved. The use of this material is subject to the terms of a - License Agreement. You will be held liable for any unauthorized copying or - disclosure of this material. The following copyright notice applies to the - use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. All rights reserved. - Portions of the POI database contained in Points of Interest North America - have been provided by Neustar Localeze The following copyright notice applies - to the use of Telecommunications: \xA9 2021 Pitney Bowes Software Inc. All - rights reserved. This product contains information and/or data of iconectiv, - licensed to be included herein. Copyright \xA9 2021 iconectiv. All rights - reserved. The following copyright notice applies to the use of Logistics: - \ \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - 2021 ProMiles - Software Development Corporation. All rights reserved. This material is proprietary - and the subject of copyright protection and other intellectual property rights - owned or licensed to TomTom.\",\n \"\xA9 United States Postal Service - 2021\",\n \"You shall not use the Municipal Boundary layer of the - Administrative Areas product to create or derive applications which are used - by third parties for the purpose of tariff, tax jurisdiction, or tax rate - determination for a particular address or range of addresses.\",\n \"This - product is built on basis on the following elevation data: SRTM, GTOPO, NED - data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview\",\n - \ \"This product is built on basis on the following elevation data: - 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department - of Commerce, National Oceanic and Atmospheric Administration, National Geophysical - Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\"\n ]\n - \ },\n {\n \"country\": {\n \"ISO3\": \"PRK\",\n - \ \"label\": \"North Korea\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"PRT\",\n \"label\": \"Portugal\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - licensed under CC-BY 4.0. For more information visit: * C\xE2mara Municipal - de Guimar\xE3es https://sig.cm-guimaraes.pt/dadosabertos/#one * C\xE2mara - Municipal de Cascais https://data.cascais.pt/pt-pt/node/254 * C\xE2mara Municipal - de Lisboa http://lisboaaberta.cm-lisboa.pt/index.php/pt/dados/conjuntos-de-dados - \ * C\xE2mara Municipal de Agueda http://ckan.sig.cm-agueda.pt/dataset\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"PRY\",\n \"label\": \"Paraguay\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"PYF\",\n \"label\": \"French Polynesia\"\n - \ },\n \"copyrights\": [\n \"You agree to include - as soon as practically possible, but no later than the first new release of - the Authorized Application following Your receipt of any 3D Landmarks, any - copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"QAT\",\n \"label\": - \"Qatar\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"REU\",\n \"label\": - \"Reunion\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ROU\",\n \"label\": - \"Romania\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains public - information based on Open Government License v1.0.\"\n ]\n },\n - \ {\n \"country\": {\n \"ISO3\": \"RUS\",\n \"label\": - \"Russia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 ROSREESTR\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"RWA\",\n \"label\": \"Rwanda\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"SAU\",\n \"label\": \"Saudi Arabia\"\n - \ },\n \"copyrights\": [\n \"You agree to include - as soon as practically possible, but no later than the first new release of - the Authorized Application following Your receipt of any 3D Landmarks, any - copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SDN\",\n \"label\": - \"Sudan\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SEN\",\n \"label\": - \"Senegal\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SGP\",\n \"label\": - \"Singapore\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - made available by the Land Transport Authority under the following license: - https://www.mytransport.sg/content/mytransport/home/dataMall/SingaporeOpenDataLicence.html\",\n - \ \"Contains information from ACRA Information on Corporate Entities - accessed on Sep-7, 2020 from data.gov.sg which is made available under the - terms of the Singapore Open Data Licence version 1.0 {https://data.gov.sg/open-data-licence}\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"SGS\",\n \"label\": \"South Georgia and the South Sandwich Islands\"\n - \ },\n \"copyrights\": [\n \"You agree to include - as soon as practically possible, but no later than the first new release of - the Authorized Application following Your receipt of any 3D Landmarks, any - copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SHN\",\n \"label\": - \"Saint Helena\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SLB\",\n \"label\": - \"Solomon Islands\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SLE\",\n \"label\": - \"Sierra Leone\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SLV\",\n \"label\": - \"El Salvador\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SMR\",\n \"label\": - \"San Marino\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SOM\",\n \"label\": - \"Somalia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SPM\",\n \"label\": - \"Saint Pierre and Miquelon\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SRB\",\n \"label\": - \"Serbia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains open - data with free license. The free license is defined in Article 26 of the Law - on Electronic Administration (\\\"Official Gazette of RS\\\", No. 27/18).\",\n - \ \"For more information:\",\n \"https://geosrbija.rs/en/\",\n - \ \"http://metakatalog.geosrbija.rs/geonetwork/srv/eng/catalog.search#/home\",\n - \ \"Data was downloaded on 02.03.2020\"\n ]\n },\n - \ {\n \"country\": {\n \"ISO3\": \"SSD\",\n \"label\": - \"South Sudan\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"STP\",\n \"label\": - \"Sao Tome and Principe\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SUR\",\n \"label\": - \"Suriname\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SVK\",\n \"label\": - \"Slovakia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SVN\",\n \"label\": - \"Slovenia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - (street names) from Surveying and mapping authority of the republic of Slovenia - licensed under CC-BA2.5. For more information visit https://egp.gu.gov.si/egp/?lang=en.\",\n - \ \"Contains data licensed under: https://www.promet.si/portal/en/etd.aspx\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"SWE\",\n \"label\": \"Sweden\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\",\n \"Contains data made available by Lantm\xE4teriet - under legal terms listed here:\",\n \"https://www.lantmateriet.se/en/maps-and-geographic-information/oppna-data/anvandarvillkor/\",\n - \ \"Contains data made available by Trafikverket under legal terms - listed here:\",\n \"https://www.trafikverket.se/tjanster/Oppna_data/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"SWZ\",\n \"label\": \"Eswatini\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"SXM\",\n \"label\": \"Sint Maarten\"\n - \ },\n \"copyrights\": [\n \"You agree to include - as soon as practically possible, but no later than the first new release of - the Authorized Application following Your receipt of any 3D Landmarks, any - copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SYC\",\n \"label\": - \"Seychelles\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SYR\",\n \"label\": - \"Syria\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"TCA\",\n \"label\": - \"Turks and Caicos Islands\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"TCD\",\n \"label\": - \"Chad\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"TGO\",\n \"label\": - \"Togo\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"THA\",\n \"label\": - \"Thailand\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"The product - contains \u2018Points of Interest\u2019 (POI) data of Thailand made available - by Governmnet Open Data Portal: https://data.go.th Data and information are - subject to the Open Government License \u2013 Thailand: https://data.go.th/TermsAndConditions.aspx\",\n - \ \"Contains data made available under DGA Open Government License. - For more information visit https://data.go.th/en/pages/dga-open-government-license\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"TJK\",\n \"label\": \"Tajikistan\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"TKL\",\n \"label\": \"Tokelau\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"TKM\",\n \"label\": - \"Turkmenistan\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"TLS\",\n \"label\": - \"Timor-Leste\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"TON\",\n \"label\": - \"Tonga\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"TTO\",\n \"label\": - \"Trinidad and Tobago\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"TUN\",\n \"label\": - \"Tunisia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"TUR\",\n \"label\": - \"T\xFCrkiye\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"TUV\",\n \"label\": - \"Tuvalu\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"TWN\",\n \"label\": - \"Taiwan\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"This product - contains traffic incident data made available by the Police Broadcasting Service - of Taiwan under the following open data license: https://data.gov.tw/license\",\n - \ \"Contains source of the original data made available by National - Land Surveying and Mapping Center, Ministry of the Interior.\",\n \"Contains - datasets made available by DATA.GOV.TW. licensed under Open Government Data - License v1.0. For specifics, please reference: https://data.gov.tw/en/license\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"TZA\",\n \"label\": \"Tanzania\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"UGA\",\n \"label\": \"Uganda\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"UKR\",\n \"label\": - \"Ukraine\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"UMI\",\n \"label\": - \"United States Minor Outlying Islands\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"URY\",\n \"label\": \"Uruguay\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"USA\",\n \"label\": - \"United States\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"The following - copyright notice applies to the use of Post- FSA layer and 6-digit layer: - \ \xA9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary - and the subject of copyright protection and other intellectual property rights - owned or licensed to TomTom. The product includes information copied with - permission from Canadian authorities, including \xA9 Canada Post Corporation, - All rights reserved. The use of this material is subject to the terms of a - License Agreement. You will be held liable for any unauthorized copying or - disclosure of this material. The following copyright notice applies to the - use of Points of Interest: \xA9 1992 \u2013 2021 TomTom. All rights reserved. - Portions of the POI database contained in Points of Interest North America - have been provided by Neustar Localeze The following copyright notice applies - to the use of Telecommunications: \xA9 2021 Pitney Bowes Software Inc. All - rights reserved. This product contains information and/or data of iconectiv, - licensed to be included herein. Copyright \xA9 2021 iconectiv. All rights - reserved. The following copyright notice applies to the use of Logistics: - \ \xA9 1992 \u2013 2021 TomTom. Truck Attribute Data \xA9 2004 - 2021 ProMiles - Software Development Corporation. All rights reserved. This material is proprietary - and the subject of copyright protection and other intellectual property rights - owned or licensed to TomTom.\",\n \"\xA9 United States Postal Service - 2021\",\n \"You shall not use the Municipal Boundary layer of the - Administrative Areas product to create or derive applications which are used - by third parties for the purpose of tariff, tax jurisdiction, or tax rate - determination for a particular address or range of addresses.\",\n \"This - product is built on basis on the following elevation data: SRTM, GTOPO, NED - data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview\",\n - \ \"This product is built on basis on the following elevation data: - 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department - of Commerce, National Oceanic and Atmospheric Administration, National Geophysical - Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\",\n \"Contains - data made available by City of Tempe, AZ licensed under CC-BY 4.0. For specifics, - please reference: https://data.tempe.gov/\",\n \"Contains data - made available by Coconino County, AZ licensed under CC-BY 4.0. For specifics, - please reference: https://datahub-coconinocounty.opendata.arcgis.com/search\",\n - \ \"Contains data made available by the City of Mesa, AZ. The City - of Mesa Open Data Terms of Use License Agreement can be found here: https://data.mesaaz.gov/stories/s/2dcd-j2nx/\",\n - \ \"Contains data made available by Kern County, CA licensed under - CC-BY 4.0. For specifics, please reference: https://geodat-kernco.opendata.arcgis.com/\",\n - \ \"Contains data made available by the City of Bakersfield, CA. - The GIS Data disclaimer can be found here: https://bakersfieldcity.us/gov/depts/geographic_information_services/gis_data_disclaimer.htm\",\n - \ \"Contains data made available by the Sacramento Area Council - of Governments (SACOG) licensed under CC-BY 4.0. For specifics, please reference: - http://data-sacog.opendata.arcgis.com/\",\n \"This product contains - traffic incident data made available by Caltrans DOT licensed under this page: - http://www.dot.ca.gov/cwwp2/. For specifics, please reference: http://www.dot.ca.gov/use.html\",\n - \ \"Contains data made available by the City of Garden Grove, CA. - The City of Garden Grove Open Data Terms of Use License Agreement can be found - here: https://ggcity.org/maps/data-portal/\",\n \"Contains data - made available by Adams County, CO licensed under CC-BY 4.0. For specifics, - please reference: http://data-adcogov.opendata.arcgis.com/#data\",\n \"Contains - data made available by City of Greeley, CO GIS licensed under CC-BY 4.0. For - specifics, please reference: http://greeleygis2017-02-01t212304815z-greeley.opendata.arcgis.com/\",\n - \ \"Contains data made available by the City of Hartford, CT licensed - under CC-BY 4.0. For specifics, please reference: https://openhartford-hartfordgis.opendata.arcgis.com/\",\n - \ \"Contains data made available by Open Data DC licensed under - CC-BY 4.0. For specifics, please reference: https://opendata.dc.gov/\",\n - \ \"Contains data made available by City of Miami, FL licensed under - CC-BY 4.0. For specifics, please reference: http://datahub-miamigis.opendata.arcgis.com/\",\n - \ \"Contains data made available by Hillsboro County, FL licensed - under the CC-BY 4.0. For specifics, please reference: http://gis2017-01-10t133755357z-hillsborough.opendata.arcgis.com/\",\n - \ \"Contains data made available by Lee County, FL licensed under - the CC-BY 4.0. For specifics, please reference: http://leegisopendata2-leegis.opendata.arcgis.com/\",\n - \ \"Contains data made available by Manatee County, FL licensed - under the CC-BY 4.0. For specifics, please reference: https://www.mymanatee.org/\",\n - \ \"Contains data made available by City of Sandy Springs, GA licensed - under CC-BY 4.0. For specifics, please reference: https://data-coss.opendata.arcgis.com\",\n - \ \"Contains data made available by State of Iowa, licensed under - CC-BY 4.0. For specifics, please reference: https://data.iowadot.gov/datasets/\",\n - \ \"Contains data made available by DuPage County, IL licensed under - the Open Geo-Spatial Data License. For specifics, please reference: http://gisdata-dupage.opendata.arcgis.com/\",\n - \ \"Contains data made available by Indianapolis and Marion County, - IN. For specifics, please reference: http://data.indy.gov/\",\n \"Contains - data made available by MassDOT under the Massachusetts Department of Transportation - Developers License Agreement. For specifics, please reference: https://www.mass.gov/files/documents/2017/10/27/develop_license_agree_0.pdf\",\n - \ \"Contains data made available by the Bureau of Geographic Information - (MassGIS), Commonwealth of Massachusetts, Executive Office of Technology and - Security Services. For specifics, please reference: https://docs.digital.mass.gov/massgis\",\n - \ \"Contains data made available by Calvert County GIS licensed - under CC-BY 4.0. For specifics, please reference: https://www.co.cal.md.us/1534/Geographic-Information-Systems-GIS\",\n - \ \"Contains data made available by State of Maryland and MD iMAP. - For specifics, please reference: http://imap.maryland.gov\",\n \"Contains - data licensed under CC-BY 4.0. For more information visit Howard County: https://data.howardcountymd.gov/\",\n - \ \"Contains data made available by Maine Department of Transportation.\",\n - \ \"Contains data made available by Minnesota Department of Natural - Resources (MNDNR).\",\n \"Contains data made available by North - Dakota Department of Transportation licensed under CC-BY 4.0. For specifics, - please reference: https://gishubdata.nd.gov/\",\n \"Contains data - made available by New Hampshire Department of Transportation.\",\n \"This - product contains traffic incident data made available by NY State 511 licensed - under this page: https://511ny.org/\",\n \"This product contains - traffic incident data made available by NY State 511 licensed under this page: - https://www.511pa.com/\",\n \"Contains data made available by the - Rhode Island Geographic Information System (RIGIS) consortium, the State of - Rhode Island, and the University of Rhode Island. For specifics, please reference: - http://www.rigis.org/\",\n \"Contains data made available by the - State of Utah Automated Geographic Reference Center (AGRC), licensed under - CC-BY 4.0. For specifics, please reference: https://gis.utah.gov/\",\n \"Contains - data made available by the City of Charlottesville, VA licensed under CC-BY - 4.0. For specifics, please reference: https://opendata.charlottesville.org/\",\n - \ \"Contains data made available by Vermont Department of Transportation.\",\n - \ \"Contains data made available by City of Everett, WA with the - following disclaimer:\",\n \"\\\"The data made available here has - been modified for use from its original source, which is the City of Everett. - Neither the City of Everett nor the Information Technology Department makes - any claims as to the completeness, timeliness, accuracy or content of any - data contained in this application; makes any representation of any kind, - including, but not limited to, warranty of the accuracy or fitness for a particular - use; nor are any such warranties to be implied or inferred with respect to - the information or data furnished herein. The data is subject to change as - modifications and updates are complete. It is understood that the information - contained in the web feed is being used at one's own risk.\\\" For specifics, - please reference: https://data.everettwa.gov/\",\n \"Contains data - made available by the Dane County Land Information Office.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make TomTom Traffic Licensed - Product available except to authorized End Users; and (iii) use the feed or - information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"You specifically - agrees that it shall not: (i) store the data for more than twenty-four (24) - hours on Your servers; (ii) broadcast or make TomTom Traffic Licensed Product - available except to authorized End Users; and (iii) use the feed or information - received via the feed for historical data purposes (including but not limited - to collection or analysis).\",\n \"The following copyright notice - applies to the use of Post- FSA layer and 6-digit layer: \xA9 1992 \u2013 - 2020 TomTom. All rights reserved. This material is proprietary and the subject - of copyright protection and other intellectual property rights owned or licensed - to TomTom. The product includes information copied with permission from Canadian - authorities, including \xA9 Canada Post Corporation, All rights reserved. - The use of this material is subject to the terms of a License Agreement. You - will be held liable for any unauthorized copying or disclosure of this material - \ The following copyright notice applies to the use of Points of Interest: - \ \xA9 1992 \u2013 2020 TomTom. All rights reserved. Portions of the POI database - contained in Points of Interest North America have been provided by Neustar - Localeze\",\n \"The following copyright notice applies to the use - of Telecommunications: \xA9 2019 Pitney Bowes Software Inc. All rights reserved. - This product contains information and/or data of iconectiv, licensed to be - included herein. Copyright \xA9 2019 iconectiv. All rights reserved\",\n \"The - following copyright notice applies to the use of Logistics: \xA9 1992 \u2013 - 2020 TomTom. Truck Attribute Data \xA9 2004 - 2019 ProMiles Software Development - Corporation. All rights reserved. This material is proprietary and the subject - of copyright protection and other intellectual property rights owned or licensed - to TomTom.\",\n \"\xA9 United States Postal Service 2020\"\n ]\n - \ },\n {\n \"country\": {\n \"ISO3\": \"UZB\",\n - \ \"label\": \"Uzbekistan\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"VAT\",\n \"label\": \"Vatican City\"\n - \ },\n \"copyrights\": [\n \"You agree to include - as soon as practically possible, but no later than the first new release of - the Authorized Application following Your receipt of any 3D Landmarks, any - copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"VCT\",\n \"label\": - \"Saint Vincent and the Grenadines\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"VEN\",\n \"label\": \"Venezuela\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"VGB\",\n \"label\": - \"British Virgin Islands\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"VIR\",\n \"label\": - \"United States Virgin Islands\"\n },\n \"copyrights\": [\n - \ \"You agree to include as soon as practically possible, but no - later than the first new release of the Authorized Application following Your - receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\",\n \"The following copyright notice applies to - the use of Post- FSA layer and 6-digit layer: \xA9 1992 \u2013 2021 TomTom. - All rights reserved. This material is proprietary and the subject of copyright - protection and other intellectual property rights owned or licensed to TomTom. - The product includes information copied with permission from Canadian authorities, - including \xA9 Canada Post Corporation, All rights reserved. The use of this - material is subject to the terms of a License Agreement. You will be held - liable for any unauthorized copying or disclosure of this material. The following - copyright notice applies to the use of Points of Interest: \xA9 1992 \u2013 - 2021 TomTom. All rights reserved. Portions of the POI database contained in - Points of Interest North America have been provided by Neustar Localeze The - following copyright notice applies to the use of Telecommunications: \xA9 - 2021 Pitney Bowes Software Inc. All rights reserved. This product contains - information and/or data of iconectiv, licensed to be included herein. Copyright - \xA9 2021 iconectiv. All rights reserved. The following copyright notice - applies to the use of Logistics: \xA9 1992 \u2013 2021 TomTom. Truck Attribute - Data \xA9 2004 - 2021 ProMiles Software Development Corporation. All rights - reserved. This material is proprietary and the subject of copyright protection - and other intellectual property rights owned or licensed to TomTom.\",\n \"\xA9 - United States Postal Service 2021\",\n \"You shall not use the - Municipal Boundary layer of the Administrative Areas product to create or - derive applications which are used by third parties for the purpose of tariff, - tax jurisdiction, or tax rate determination for a particular address or range - of addresses.\",\n \"This product is built on basis on the following - elevation data: SRTM, GTOPO, NED data available from the US Geological Survey: - https://lta.cr.usgs.gov/products_overview\",\n \"This product is - built on basis on the following elevation data: 2-minute Gridded Global Relief - Data (ETOPO2v2) available from U.S. Department of Commerce, National Oceanic - and Atmospheric Administration, National Geophysical Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"VNM\",\n \"label\": \"Vietnam\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"VUT\",\n \"label\": \"Vanuatu\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"WLF\",\n \"label\": - \"Wallis and Futuna\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"WSM\",\n \"label\": - \"Samoa\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"XAM\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - from Dubai Municipality.\"\n ]\n },\n {\n \"country\": - {\n \"ISO3\": \"XAN\",\n \"label\": \"Abyei\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"XCP\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"XES\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"XHT\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"XKS\",\n \"label\": - \"Kosovo\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"XKX\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"You agree that - any Licensed Product which contains data of India may be subject to additional - terms and conditions which shall be provided to You when available to TomTom. - India data shall not be altered or changed during Your product creation / - publication process. India data may not be exported from India.\"\n ]\n - \ },\n {\n \"country\": {\n \"ISO3\": \"XPX\",\n - \ \"label\": \"\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"You agree that - any Licensed Product which contains data of India may be subject to additional - terms and conditions which shall be provided to You when available to TomTom. - India data shall not be altered or changed during Your product creation / - publication process. India data may not be exported from India.\"\n ]\n - \ },\n {\n \"country\": {\n \"ISO3\": \"XSV\",\n - \ \"label\": \"\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - under CC BY3.0 as distributed by Nobil https://creativecommons.org/licenses/by/3.0/\",\n - \ \"Contains data made available by Statens Kartverk licensed under - CC-BY 4.0. For more information visit https://creativecommons.org/licenses/by/4.0/\",\n - \ \"Contains data made available by Statens Vegvesen licensed under - the Norwegian licence for Open Government data (NLOD). For more information - visit https://data.norge.no/nlod/en/2.0 .\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"XSX\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"You agree that - any Licensed Product which contains data of India may be subject to additional - terms and conditions which shall be provided to You when available to TomTom. - India data shall not be altered or changed during Your product creation / - publication process. India data may not be exported from India.\"\n ]\n - \ },\n {\n \"country\": {\n \"ISO3\": \"XTU\",\n - \ \"label\": \"\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - from Dubai Municipality.\"\n ]\n },\n {\n \"country\": - {\n \"ISO3\": \"XXG\",\n \"label\": \"\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"XXH\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"XXJ\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - under CC BY3.0 as distributed by Nobil https://creativecommons.org/licenses/by/3.0/\",\n - \ \"Contains data made available by Statens Kartverk licensed under - CC-BY 4.0. For more information visit https://creativecommons.org/licenses/by/4.0/\",\n - \ \"Contains data made available by Statens Vegvesen licensed under - the Norwegian licence for Open Government data (NLOD). For more information - visit https://data.norge.no/nlod/en/2.0 .\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"XXK\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 ROSREESTR\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"XXW\",\n \"label\": \"\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"YEM\",\n \"label\": \"Yemen\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ZAF\",\n \"label\": - \"South Africa\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ZMB\",\n \"label\": - \"Zambia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ZWE\",\n \"label\": - \"Zimbabwe\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n }\n ]\n}" - headers: - cache-control: - - max-age=86400 - content-length: - - '887956' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jul 2022 06:40:16 GMT - etag: - - W/"9c2ad45a381cb92a3a99cfa5bbcb3cf1" - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-azuremaps-region: - - West US 2 - x-msedge-ref: - - 'Ref A: CC441F1970CF412BA7320257A51A19C0 Ref B: TPE30EDGE0618 Ref C: 2022-07-22T06:40:16Z' - status: - code: 200 - message: OK -version: 1 diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_from_bounding_box.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_from_bounding_box.yaml deleted file mode 100644 index c31764711158..000000000000 --- a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_copyright_from_bounding_box.yaml +++ /dev/null @@ -1,1797 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) - subscription-key: - - - x-ms-client-id: - - - method: GET - uri: https://atlas.microsoft.com/map/copyright/bounding/json?api-version=2.1&mincoordinates=42.982261,24.980233&maxcoordinates=56.526017,1.355233&text=yes - response: - body: - string: "{\n \"formatVersion\": \"0.0.1\",\n \"generalCopyrights\": [\n - \ \"\xA9 1992 - 2022 TomTom. All rights reserved. This material is proprietary - and the subject of copyright protection, database right protection and other - intellectual property rights owned by TomTom or its suppliers. The use of - this material is subject to the terms of a license agreement. Any unauthorized - copying or disclosure of this material will lead to criminal and civil liabilities.\",\n - \ \"Data Source \xA9 2022 TomTom\",\n \"based on\"\n ],\n \"regions\": - [\n {\n \"country\": {\n \"ISO3\": \"AUT\",\n \"label\": - \"Austria\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 BEV, GZ - 1368/2003\",\n \"The location and event code (version 3.4) has - been provided by ASFINAG.\",\n \"Contains data licensed under CC - BY 3.0 AT. For more information visit: * City of Vienna https://www.data.gv.at - \ * Geoland https://www.data.gv.at/ * BEV: \xA9 \xD6sterreichisches Adressregister, - 01.10.2019. http://www.bev.gv.at/ * Open Government Data Wien https://open.wien.gv.at/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"BEL\",\n \"label\": \"Belgium\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\",\n \"Contains data licensed under Free Open Data - License Vlaanderen. For more information visit: * CRAB Adressenlijst https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=6EF348E1-69EB-4CAD-8CCD-1C68099AFCF3 - \ * CRAB Stratenlijst https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=FBC603AE-87DC-4418-B16D-832CE7B30335 - \ * Grootschalig Referentiebestand (GRB) https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=7C823055-7BBF-4D62-B55E-F85C30D53162 - \ * 3D GRB https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=42ac31a7-afe6-44c4-a534-243814fe5b58 - \ * AGIV Aerial images https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=0ffd5eee-c197-4f8f-b491-b01bd1792f7c - \ * Wegenregister Flanders and Brussels https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=49515fac-068f-4b41-a4ac-8e29d43df696 - \ * School and University data\",\n \"http://opendataforum.info/Docs/Modellicentie%202%20Gratis%20Open%20Data%20Licentie.htm - \ * City of Antwerp http://opendata.antwerpen.be/gratis-open-data-licentie - \ * Toerisme Vlaanderen http://www.toerismevlaanderen.be/opendata * Gipod - https://overheid.vlaanderen.be/sites/default/files/documenten/ict-egov/licenties/hergebruik/modellicentie_gratis_hergebruik_v1_0.html\",\n - \ \"Contains data licensed under CIRB - CIBG under Open Data License. - For more information visit: * CIRB-CIBG APT's http://www.bric.irisnet.be/en/our-solutions/urbis-solutions/download - \ * Brussels Mobility Zones 30 (30 km/h zones) http://data-mobility.brussels/mobigis/nl/#\",\n - \ \"Contains data licensed under CC-BY 4.0. For more information - visit: * TEC (Public Transport Stops) http://opendata.awt.be/dataset/tec\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"BGR\",\n \"label\": \"Bulgaria\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"BIH\",\n \"label\": \"Bosnia-Herzegovina\"\n - \ },\n \"copyrights\": [\n \"You agree to include - as soon as practically possible, but no later than the first new release of - the Authorized Application following Your receipt of any 3D Landmarks, any - copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"BLR\",\n \"label\": - \"Republic of Belarus\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 Source - data. State committee on property of the Republic of Belarus, 2019 \xA9 Republic - unitary organization Belgeodsia, 2019\"\n ]\n },\n {\n \"country\": - {\n \"ISO3\": \"CHE\",\n \"label\": \"Switzerland\"\n - \ },\n \"copyrights\": [\n \"You agree to include - as soon as practically possible, but no later than the first new release of - the Authorized Application following Your receipt of any 3D Landmarks, any - copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 Swisstopo\",\n - \ \"Contains data licensed under CC BY. For more information visit: - \ * SITG https://opendata.swiss/ * BFS (eidgen\xF6ssisches Geb\xE4ude- und - Wohnungsregister) https://data.geo.admin.ch/ * BAV https://opendata.swiss/de\",\n - \ \"Contains data licensed under CC Zero. For more information visit: - \ * the city of Z\xFCrich https://data.stadt-zuerich.ch/\",\n \"Contains - data licensed under CC BY ASK. For more information visit: * swisstopo https://opendata.swiss/de\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"CZE\",\n \"label\": \"Czechia\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"DEU\",\n \"label\": \"Germany\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 GeoBasis-DE - / LDBV 2021\",\n \"Contains data licensed under CC BY 3.0 DE. For - more information visit: * Bayerisches Landesamt f\xFCr Umwelt, www.lfu.bayern.de - \ * Bayerische Vermessungsverwaltung, www.geodaten.bayern.de\",\n \"Contains - cartographic information made available by \xA9 GeoBasis-DE / BKG 2018 (data - modified). https://www.bkg.bund.de\",\n \"Contains data licensed - under dl-de-by-2.0. For more information visit: * Bezirksregierung K\xF6ln, - 2019, https://www.bezreg-koeln.nrw.de/ * geoportal-th.de (data modified), - https://www.geoportal-th.de * Open.NRW \u2013 Das Open Government Portal - f\xFCr das Land Nordrhein-Westfalen\u201D; Landesamt f\xFCr Natur, Umwelt - und Verbraucherschutz Nordrhein-Westfalen, www.open.nrw * transparenz.hamburg.de - (data modified), http://suche.transparenz.hamburg.de/ * Land NRW, 2018, https://www.wms.nrw.de/geobasis/wms_nw_dop?REQUEST=GetCapabilities&SERVICE=WMS - \ * Vermessungs- und Katasterverwaltung Rheinland-Pfalz, 2018, https://lvermgeo.rlp.de/de/ - \ * LVermGeoRP, 2018, https://www.geoportal.rlp.de/\",\n \"Contains - data licensed under CC-BY 4.0. For more information visit: * \u201EOpen.NRW - \u2013 Das Open Government Portal f\xFCr das Land Nordrhein-Westfalen\u201D; - Landesamt f\xFCr Natur, Umwelt und Verbraucherschutz Nordrhein-Westfalen, - www.open.nrw\"\n ]\n },\n {\n \"country\": {\n \"ISO3\": - \"DNK\",\n \"label\": \"Denmark\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\",\n \"\xA9 DAV, violation of these copyrights shall - cause legal proceedings\",\n \"This product contains information - from Styrelsen for Dataforsyning og Effektiviserings Adresse Web Services - (AWS Suiten)\",\n \"\u201DIndeholder data fra Styrelsen for Dataforsyning - og Effektivisering\\\"; Stedsnavne, Vejmidte\",\n \"\u201DIndeholder - oplysninger fra Styrelsen for Dataforsyning og Effektivisering Adresse Web - Services (AWS).\u201D\",\n \"\u201DIndeholder data fra Styrelsen - for Dataforsyning og Effektivisering\\\"; Stedsnavne\"\n ]\n },\n - \ {\n \"country\": {\n \"ISO3\": \"FRA\",\n \"label\": - \"France\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"(navigation - devices only) Michelin data \xA9 Michelin 2019 The following copyright applies - to the Advanced Navigable MAP, Address Points, 2D City Map and Buildings: - \ Source: Direction g\xE9n\xE9rale des Finances Publiques \u2013 Cadastre; - Updated 2019\",\n \"Contains data licensed under Open License Version - 1.0: * Ville de Toulouse * Rennes M\xE9tropole * Grand Lyon dated from - 1/3/2015 * Mulhouse Alsace Agglom\xE9ration dated from 13/2/2015 * Grand - Poitiers * Ville de Chassieu dated from October 2017 * Ville de Chennevi\xE8res-sur-Marne - \ * D\xE9partement des Hauts-de-Seine * M\xE9tropole Europ\xE9enne de Lille - dated from 21/2/2017 * Colmar Agglom\xE9ration dated from 23/09/2016 * Minist\xE8re - des Solidarit\xE9s et de la Sant\xE9 dated from 17/3/2017 * Sodetrel dated - from December 2017 * E.Leclerc dated from December 2017 * Parking EFFIA - Stationnement dated from December 2017 * Centre national du cin\xE9ma et - de l'image anim\xE9e dated from 23/9/2016 * Communaut\xE9 d'Agglom\xE9ration - de Rambouillet Territoires dated from January 2017 * Lannion-Tr\xE9gor Communaut\xE9 - \ * G\xE9oGrandEst * Nissan dated from December 2017 * Seames dated from - December 2017 * Syndicat Intercommunal des Energies du d\xE9partement de - la Loire dated from February 2017 * SOR\xC9GIES dated from June 2017 * Syndicat - D\xE9partemental d\u2019Energie et d\u2019Equipement de la Vend\xE9e dated - from December 2017 * Minist\xE8re de l\u2019Int\xE9rieur dated from July - 2018 * Minist\xE8re des Sports * Office national d'information sur les enseignements - et les professions dated from December 2017 * Administration du Premier ministre - dated from December 2017 * D\xE9partement de Sa\xF4ne-et Loire * Ville d\u2019Istres - dated from December 2017 * Tesla dated from February 2017 * Syndicat D\xE9partemental - d'Energies de la Manche dated from December 2017 * Syndicat D\xE9partemental - d'Energie de Loire-Atlantique dated from December 2017 * M\xE9tropole d'Aix-Marseille-Provence - \ * Ville de Montpellier\",\n \"Contains data licensed under Open - License Version 2.0: * Minist\xE8re de la Transition \xC9cologique * Ville - d'Issy-les-Moulineaux * Ville de Bayonne dated from 23/01/2018 * P\xF4le - Metropolitain du Pays de Brest dated from 1/3/2016 * Bordeaux M\xE9tropole - \ * Communaut\xE9 d'agglom\xE9ration Arles Crau Camargue Montagnette dated - from 29/4/2016 * Rennes M\xE9tropole dated from 30/11/2016 * Angers Loire - M\xE9tropole dated from 21/9/2016 * D\xE9partement de la Moselle dated from - December 2017 * Ville de La Rochelle dated from 23/05/2012 * Grand Paris - Seine Ouest dated from 01/02/2016 * Morbihan Energies dated from December - 2017 * R\xE9gion Bretagne dated from December 2017 * R\xE9gie Culturelle - de la R\xE9gion Sud Provence-Alpes-C\xF4te d'Azur dated from December 2017 - \ * Education Nationale * M\xE9tropole du Grand Nancy * Toulouse M\xE9tropole - \ * Nantes M\xE9tropole * M\xE9tropole Europ\xE9enne de Lille * Orl\xE9ans - M\xE9tropole * Grand Poitiers * D\xE9partement des Hautes-de-Seine * D\xE9partement - de la Mayenne * Mulhouse Alsace Agglom\xE9ration\",\n \"Contains - data licensed under la Licence de r\xE9utilisation des donn\xE9es num\xE9ris\xE9es - d\u2019informations en temps r\xE9el sur la circulation: * Minist\xE8re de - la Transition \xC9cologique * Direction Interd\xE9partementale des Routes - d\u2019\xCEle-de-France\",\n \"Contains data licensed under le - Code des relation sentre le public et l\u2019administration: * Communaut\xE9 - d'Agglom\xE9ration Maubeuge - Val de Sambre dated from September 2017 * Syndicat - des \xE9nergies de la Haute-Savoie dated from November 2017 * Syndicat d\u2019\xE9nergie - de l\u2019Oise dated from December 2017 * Syndicat d'\xE9nergie de l'Orne - dated from March 2017 * Syndicat D\xE9partemental d'Energie de la Haute-Garonne - dated from December 2017 * Syndicat D\xE9partemental d'Energie des Hautes-Pyr\xE9n\xE9es - dated from December 2017 * Syndicat D\xE9partemental d'Energies du Calvados - dated from December 2017 * Syndicat D\xE9partemental d'Energie du Cher dated - from December 2017 * Syndicat D\xE9partemental d'Energies de l'Indre dated - from December 2017 * Syndicat D\xE9partemental d'Equipement et d'Energie - du Finist\xE8re dated from December 2017 * Syndicat D\xE9partemental des - Energies de Seine-et-Marne dated from March 2017 * Syndicat intercommunal - d'\xE9nergie d'Indre-et-Loire dated from December 2017 * Union des Secteurs - d'Energie du D\xE9partement de l'Aisne dated from December 2017 * Ville de - Beauvais dated from March 2017\",\n \"Contains data from D\xE9partement - de Hautes-Alpes. For more information visit: http://inforoute.hautes-alpes.fr/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"GBR\",\n \"label\": \"United Kingdom\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\",\n \"Contains Ordnance Survey data \xA9 Crown copyright - and database right 2018. Licensed under the Open Government Licence. The license - can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"Contains Ordnance Survey data \xA9 Crown copyright and database - right 2018.\",\n \"Contains Royal Mail data \xA9 Royal Mail copyright - and database right 2018.\",\n \"Contains National Statistics data - \xA9 Crown copyright and database right 2018.\",\n \"Licensed under - the Open Government Licence. The license can be found at:\",\n \"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information (public transport - stops data) licensed under the Open Government Licence v2.0. This is specified - here: http://data.gov.uk/dataset/naptan\",\n \"The license can - be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n - \ \"This product contains public sector information (publicly accessible - charge points) licensed under the Open Government Licence v2.0. This is specified - here: http://data.gov.uk/dataset/national-charge-point-registry\",\n \"The - license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/\",\n - \ \"This product contains Sports venues locations data made available - by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE - AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area - . The license can be found at: https://spogo.co.uk/active-places-license\",\n - \ \"This product contains data made available by the Northern Ireland - Department of Education and licensed under the Open Government Licence v3.0. - Data download page: http://apps.deni.gov.uk/appinstitutes The license can - be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains data made available by Historic England - 2015. Contains Ordnance Survey data \xA9 Crown copyright and database right - 2015 The Historic England GIS Data contained in this material was obtained - on 12/08/2015. The most publicly available up to date Historic England GIS - Data can be obtained from: http://www.HistoricEngland.org.uk\",\n \"Data - download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx\",\n - \ \"The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html\",\n - \ \"This product contains designated Historic Asset GIS Data from - the Welsh Historic Environment Service, licenced under the Open Government - Licence. Data download page: http://lle.wales.gov.uk. The license can be found - at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information licensed under - the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains public sector information licensed under - the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\n - \ \"This product contains data made available by Visit Wales and - licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. - The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"HRV\",\n \"label\": \"Croatia\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"HUN\",\n \"label\": \"Hungary\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - under National Access Point Hungary.\"\n ]\n },\n {\n \"country\": - {\n \"ISO3\": \"ITA\",\n \"label\": \"Italy\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - licensed under IODL 2.0. For more information visit: * Regione Lombardia. - http://www.geoportale.regione.lombardia.it/en/home * Comune di Torino. http://aperto.comune.torino.it - \ * Regione Veneto. For more information visit https://dati.veneto.it/ * - Regione Autonoma Friuli Venezia Giulia. http://www.regione.fvg.it/rafvg/cms/RAFVG/ambiente-territorio/conoscere-ambiente-territorio/ - \ * Regione Basilicata. http://dati.regione.basilicata.it/catalog/ * Regione - Calabria. http://geoportale.regione.calabria.it/opendata * Comune di Reggio - Calabria. http://dati.reggiocal.it/ * Ministero dell\u2019Istruzione. http://www.dati.gov.it - \ * Regione Puglia. http://www.dataset.puglia.it/ * Comune di Verona. http://www.comune.verona.it - \ * Comune di Vicenza. http://www.comune.vicenza.it\",\n \"Contains - data licensed under CC-BY 2.0 For more information visit: * Comune di Bari. - http://opendata.comune.bari.it/dataset/sistema-informativo-territoriale-civilario-unico-comunaleContains - data licensed under CC-BY 2.5. For more information visit * Comune di Milano. - https://geoportale.comune.milano.it/sit/open-data/ and http://geodata-sitmilano.opendata.arcgis.com/ - \ * Regione Toscana according to the legislation available at http://www.regione.toscana.it/documents/10180/492172/Decreto-2014_02_25n663.pdf/162db905-95fd-4b5e-bc41-88a629b5a3e5 - and Regolamento http://raccoltanormativa.consiglio.regione.toscana.it/articolo?urndoc=urn:nir:regione.toscana:regolamento.giunta:2007-02-09;6/R&pr=idx,0;artic,1;articparziale,0\",\n - \ \"http://dati.toscana.it/dataset/grafo-civici * Regione Emilia - Romagna. http://geoportale.regione.emilia-romagna.it/it/catalogo/dati-cartografici/cartografia-di-base - and http://geoportale.regione.emilia-romagna.it/it/catalogo/dati-cartografici/cartografia-di-base/database-topografico-regionale/gestione-viabilita-indirizzi/toponimi-e-numeri-civici - \ * Regione Piemonte. http://www.geoportale.piemonte.it/geocatalogorp/?sca[]=r_piemon:da9b12ba-866a-4f0f-8704-5b7b753e4f15&sezione=dwl - \ * Agenzia Europea dell'Ambiente http://data.europa.eu/euodp/it/data/dataset/data_urban-atlas\",\n - \ \"Contains data licensed under CC-BY 3.0. For more information - visit: * Comune di Milano. https://www.comune.milano.it/wps/portal/ist/it/vivicitta/verde/parchi - \ * Ministero dell\u2019Istruzione, dell\u2019Universit\xE0 e della Ricerca - MIURhttp://www.tper.it/azienda/tper-open-data * Agenzia per la Mobilit\xE0 - Roma http://www.agenziamobilita.roma.it/servizi/open-data/dataset.html * - Comune di Firenze http://opendata.comune.fi.it/mobilita_sicurezza/dataset_0196.html - and http://opendata.comune.fi.it/statistica_territorio/dataset_0040.html and - http://opendata.comune.fi.it/mobilita_sicurezza/dataset_0139.html * Regione - Umbria http://dati.umbria.it/ and http://www.umbriageo.regione.umbria.it/pagine/servizi-wms-attivi - \ * Comune di Cesena http://www.datiopen.it/it/opendata/Comune_di_Cesena_Verde - \ * Comune di Livorno http://www.datiopen.it/it/opendata/Comune_di_Livorno_Area_verde - \ * Comune di Bologna http://dati.comune.bologna.it/node/201 and http://dati.comune.bologna.it/node/217 - \ * Istituto Nazionale di Statistica http://www.istat.it/it/archivio/678 and - http://datiopen.istat.it/\",\n \"Contains data licensed under CC-BY - 4.0. For more information visit: * Regione Veneto https://dati.veneto.it/ - \ * Comune di Fano https://www.comune.fano.pu.it/index.php?id=2020 * Regione - Toscana http://dati.toscana.it/ * Comune di Genova http://dati.comune.genova.it - \ * Comune di Roma http://dati.comune.roma.it * Regione Piemonte http://www.geoportale.piemonte.it - \ * Reggio Emilia http://www.dati.gov.it * Regione Lazio http://www.dati.lazio.it - \ * Regione Autonoma Sardegna http://dati.regione.sardegna.it * Provincia - di Biella http://cartografia.provincia.biella.it * Regione Liguria https://www.regione.liguria.it - \ * Comune di Milano http://dati.comune.milano.it\"\n ]\n },\n - \ {\n \"country\": {\n \"ISO3\": \"LIE\",\n \"label\": - \"Liechtenstein\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"LTU\",\n \"label\": - \"Lithuania\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - licensed under: http://eismoinfo.lt/#!/news/8592\"\n ]\n },\n - \ {\n \"country\": {\n \"ISO3\": \"LUX\",\n \"label\": - \"Luxembourg\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"LVA\",\n \"label\": - \"Latvia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MCO\",\n \"label\": - \"Monaco\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"MNE\",\n \"label\": - \"Montenegro\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"NLD\",\n \"label\": - \"Netherlands\"\n },\n \"copyrights\": [\n \"You - agree to include as soon as practically possible, but no later than the first - new release of the Authorized Application following Your receipt of any 3D - Landmarks, any copyright notices related to the display of such landmarks - on every Authorized Application and in the \u201Cabout box\u201D of the Authorized - Application. Notwithstanding the aforementioned, TomTom has the right to - decide, at its sole discretion, to remove specific 3D Landmarks in subsequent - releases of the Licensed Products. In such case, You will remove those 3D - Landmarks from the Authorized Application as soon as practically possible, - but not later than the first new release of the Authorized Application following - Your receipt of the Update to the Licensed Product. TomTom shall not be held - responsible for any possible damages, costs or expenses incurred by You related - to such removal of a 3D Landmark by TomTom from the Licensed Product or failure - to remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - licensed under CC-BY 4.0. For more information visit: * Kadaster Top10NL - http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/29d5310f-dd0d-45ba-abad-b4ffc6b8785f?tab=general - \ * Kadaster BGT http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2cb4769c-b56e-48fa-8685-c48f61b9a319?tab=general - \ * CBS Bestand Bodemgebruik http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2d3dd6d2-2d2b-4b5f-9e30-86e19ed77a56?tab=general\",\n - \ \"Contains data licensed under CC-BY 2.0. For more information - visit: * Municipality of Amsterdam Datasets Parkeergarages https://data.amsterdam.nl/index.html#?dte=https:%2F%2Fapi.datapunt.amsterdam.nl%2Fcatalogus%2Fapi%2F3%2Faction%2Fpackage_show%3Fid%3Df06f5a77-04f6-432f-9fd9-ce9d740631aa&dtfs=T&mpb=topografie&mpz=9&mpv=52.3719:4.9012\",\n - \ \"Contains data licensed under CC-BY 3.0. For more information - visit: * Municipality of Amsterdam Multiple cat POI's https://data.amsterdam.nl/index.html#?dsd=dcatd&dsp=1&dsq=open%2520data&dsv=CATALOG&mpb=topografie&mpz=11&mpv=52.3731081:4.8932945\",\n - \ \"This product contains public transport stops data made available - under 9292 Open Data framework as documented on March 2013. This is specified - in their terms available here: http://9292opendata.org/sla\",\n \"This - product contains traffic incident information made available by NDW under - open source data policy:\_https://www.ndw.nu/pagina/nl/103/datalevering/120/open_data/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"OBE\",\n \"label\": \"\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"ODE\",\n \"label\": \"\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ODK\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OFI\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OFR\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OGB\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OIT\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ONL\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ONO\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OPL\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"OSE\",\n \"label\": - \"\"\n },\n \"copyrights\": [\n \"You agree to - include as soon as practically possible, but no later than the first new release - of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"POL\",\n \"label\": - \"Poland\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"ROU\",\n \"label\": - \"Romania\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains public - information based on Open Government License v1.0.\"\n ]\n },\n - \ {\n \"country\": {\n \"ISO3\": \"RUS\",\n \"label\": - \"Russia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"\xA9 ROSREESTR\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"SMR\",\n \"label\": \"San Marino\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"SRB\",\n \"label\": \"Serbia\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains open - data with free license. The free license is defined in Article 26 of the Law - on Electronic Administration (\\\"Official Gazette of RS\\\", No. 27/18).\",\n - \ \"For more information:\",\n \"https://geosrbija.rs/en/\",\n - \ \"http://metakatalog.geosrbija.rs/geonetwork/srv/eng/catalog.search#/home\",\n - \ \"Data was downloaded on 02.03.2020\"\n ]\n },\n - \ {\n \"country\": {\n \"ISO3\": \"SVK\",\n \"label\": - \"Slovakia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n },\n {\n - \ \"country\": {\n \"ISO3\": \"SVN\",\n \"label\": - \"Slovenia\"\n },\n \"copyrights\": [\n \"You agree - to include as soon as practically possible, but no later than the first new - release of the Authorized Application following Your receipt of any 3D Landmarks, - any copyright notices related to the display of such landmarks on every Authorized - Application and in the \u201Cabout box\u201D of the Authorized Application. - \ Notwithstanding the aforementioned, TomTom has the right to decide, at its - sole discretion, to remove specific 3D Landmarks in subsequent releases of - the Licensed Products. In such case, You will remove those 3D Landmarks from - the Authorized Application as soon as practically possible, but not later - than the first new release of the Authorized Application following Your receipt - of the Update to the Licensed Product. TomTom shall not be held responsible - for any possible damages, costs or expenses incurred by You related to such - removal of a 3D Landmark by TomTom from the Licensed Product or failure to - remove a 3D Landmark by You from the Authorized Application.\",\n \"TomTom - hereby grants to You a non-exclusive, non-transferable license to use the - Software Licensed Products for the sole and limited purpose of assisting You - in viewing, analyzing and sectioning the Licensed Products. In no event shall - You use the Software Licensed Products to view, analyze, section or in any - way manipulate spatial map data that is not provided by TomTom. You shall - not derive or attempt to derive the source code of all or any portion of the - Licensed Products by reverse engineering, disassembly, decompilation, translation - or any other means. You shall affix the following copyright notice on any - copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware - \xA92011-2020 TomTom North America, Inc. All rights reserved.\",\n \"Neither - the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic - or any derivatives thereof shall be used for the purpose of enforcement of - traffic laws including but not limited to the selection of potential locations - for the installation of speed cameras, speed traps or other speed tracking - devices. With regards to Speed Profiles, You acknowledge and agrees that the - actual speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\",\n \"Contains data - (street names) from Surveying and mapping authority of the republic of Slovenia - licensed under CC-BA2.5. For more information visit https://egp.gu.gov.si/egp/?lang=en.\",\n - \ \"Contains data licensed under: https://www.promet.si/portal/en/etd.aspx\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"SWE\",\n \"label\": \"Sweden\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\",\n \"Contains data made available by Lantm\xE4teriet - under legal terms listed here:\",\n \"https://www.lantmateriet.se/en/maps-and-geographic-information/oppna-data/anvandarvillkor/\",\n - \ \"Contains data made available by Trafikverket under legal terms - listed here:\",\n \"https://www.trafikverket.se/tjanster/Oppna_data/\"\n - \ ]\n },\n {\n \"country\": {\n \"ISO3\": - \"UKR\",\n \"label\": \"Ukraine\"\n },\n \"copyrights\": - [\n \"You agree to include as soon as practically possible, but - no later than the first new release of the Authorized Application following - Your receipt of any 3D Landmarks, any copyright notices related to the display - of such landmarks on every Authorized Application and in the \u201Cabout box\u201D - of the Authorized Application. Notwithstanding the aforementioned, TomTom - has the right to decide, at its sole discretion, to remove specific 3D Landmarks - in subsequent releases of the Licensed Products. In such case, You will remove - those 3D Landmarks from the Authorized Application as soon as practically - possible, but not later than the first new release of the Authorized Application - following Your receipt of the Update to the Licensed Product. TomTom shall - not be held responsible for any possible damages, costs or expenses incurred - by You related to such removal of a 3D Landmark by TomTom from the Licensed - Product or failure to remove a 3D Landmark by You from the Authorized Application.\",\n - \ \"TomTom hereby grants to You a non-exclusive, non-transferable - license to use the Software Licensed Products for the sole and limited purpose - of assisting You in viewing, analyzing and sectioning the Licensed Products. - In no event shall You use the Software Licensed Products to view, analyze, - section or in any way manipulate spatial map data that is not provided by - TomTom. You shall not derive or attempt to derive the source code of all or - any portion of the Licensed Products by reverse engineering, disassembly, - decompilation, translation or any other means. You shall affix the following - copyright notice on any copy of the GDF Viewer, or any portion of the Licensed - Products: \u201CSoftware \xA92011-2020 TomTom North America, Inc. All rights - reserved.\",\n \"Neither the Data nor the Licensed Products such - as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used - for the purpose of enforcement of traffic laws including but not limited to - the selection of potential locations for the installation of speed cameras, - speed traps or other speed tracking devices. With regards to Speed Profiles, - You acknowledge and agrees that the actual speeds may not reflect the legally - imposed speed limits.\",\n \"You specifically agree that it shall - not: (i) store the data for more than twenty-four (24) hours on Your servers; - (ii) broadcast or make Live Services Licensed Products available except to - authorized End Users; and (iii) use the feed or information received via the - feed for historical data purposes (including but not limited to collection - or analysis).\"\n ]\n },\n {\n \"country\": {\n - \ \"ISO3\": \"XKS\",\n \"label\": \"Kosovo\"\n },\n - \ \"copyrights\": [\n \"You agree to include as soon as - practically possible, but no later than the first new release of the Authorized - Application following Your receipt of any 3D Landmarks, any copyright notices - related to the display of such landmarks on every Authorized Application and - in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding - the aforementioned, TomTom has the right to decide, at its sole discretion, - to remove specific 3D Landmarks in subsequent releases of the Licensed Products. - In such case, You will remove those 3D Landmarks from the Authorized Application - as soon as practically possible, but not later than the first new release - of the Authorized Application following Your receipt of the Update to the - Licensed Product. TomTom shall not be held responsible for any possible damages, - costs or expenses incurred by You related to such removal of a 3D Landmark - by TomTom from the Licensed Product or failure to remove a 3D Landmark by - You from the Authorized Application.\",\n \"TomTom hereby grants - to You a non-exclusive, non-transferable license to use the Software Licensed - Products for the sole and limited purpose of assisting You in viewing, analyzing - and sectioning the Licensed Products. In no event shall You use the Software - Licensed Products to view, analyze, section or in any way manipulate spatial - map data that is not provided by TomTom. You shall not derive or attempt to - derive the source code of all or any portion of the Licensed Products by reverse - engineering, disassembly, decompilation, translation or any other means. You - shall affix the following copyright notice on any copy of the GDF Viewer, - or any portion of the Licensed Products: \u201CSoftware \xA92011-2020 TomTom - North America, Inc. All rights reserved.\",\n \"Neither the Data - nor the Licensed Products such as Speed Profiles or TomTom Traffic or any - derivatives thereof shall be used for the purpose of enforcement of traffic - laws including but not limited to the selection of potential locations for - the installation of speed cameras, speed traps or other speed tracking devices. - With regards to Speed Profiles, You acknowledge and agrees that the actual - speeds may not reflect the legally imposed speed limits.\",\n \"You - specifically agree that it shall not: (i) store the data for more than twenty-four - (24) hours on Your servers; (ii) broadcast or make Live Services Licensed - Products available except to authorized End Users; and (iii) use the feed - or information received via the feed for historical data purposes (including - but not limited to collection or analysis).\"\n ]\n }\n ]\n}" - headers: - cache-control: - - max-age=86400 - content-length: - - '136121' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 05 Sep 2022 07:01:03 GMT - etag: - - W/"d47aa6e25ea9cd76a5149c8d068fb41b" - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-azuremaps-region: - - West US 2 - x-msedge-ref: - - 'Ref A: D0B11100E2B7417A83004F96504682B9 Ref B: TPE30EDGE0512 Ref C: 2022-09-05T07:01:03Z' - status: - code: 200 - message: OK -version: 1 diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_attribution.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_attribution.yaml deleted file mode 100644 index 244b871c646d..000000000000 --- a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_attribution.yaml +++ /dev/null @@ -1,43 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) - subscription-key: - - - x-ms-client-id: - - - method: GET - uri: https://atlas.microsoft.com/map/attribution?api-version=2.1&tilesetId=microsoft.base&zoom=6&bounds=42.982261,24.980233,56.526017,1.355233 - response: - body: - string: '{"copyrights":["
©2022 - TomTom"]}' - headers: - content-length: - - '98' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 05 Sep 2022 07:01:03 GMT - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-azuremaps-region: - - West US 2 - x-msedge-ref: - - 'Ref A: E25D00F325CA48199E1E03BF39E22128 Ref B: TPE30EDGE0616 Ref C: 2022-09-05T07:01:03Z' - status: - code: 200 - message: OK -version: 1 diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tile.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tile.yaml deleted file mode 100644 index f734115296d1..000000000000 --- a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tile.yaml +++ /dev/null @@ -1,266 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json, image/jpeg, image/png, image/pbf, application/vnd.mapbox-vector-tile - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) - subscription-key: - - - x-ms-client-id: - - - method: GET - uri: https://atlas.microsoft.com/map/tile?api-version=2.1&tilesetId=microsoft.base&zoom=6&x=9&y=22&tileSize=512 - response: - body: - string: !!binary | - Gq8TCg1OYXRpb25hbCBwYXJrEpYBGAMikQEJ+C/gAaIEAAYDCDICDg4mAiITtAFuDUZgLB4BDgYq - LSAmChADEhcWCQUJCgUFEQYDDAQgAwAXDR8ADQsLABUVJxMbARkLEQATDRMDKw8ZAw0KEQUVFwEP - CQULHwYAAyEWIQEJDwsTGAAMDwwBDA8NAgkNCxMCDwwDCwkKCRMQAAkJCgUSAg4JAw8ICxABCAsP - EpQBGAMijwEJyCi/AhIJCAkHDwk8ACIFCAIKBQsNBQ8JygEAwgMSFFpEEjQTGgAaGAABDgICDA4c - BAQoBgYFAwMDAwsRCxMdAQMBCQ8IBRIaEgoKDwYUChABBQYKAxweCQoUDhkGBR8JCgEPHQURDwMR - BwAGARUDAx0PBwoXIyETBRMIAwwNDwgCDREIFRkjHRUdHxEPDxKTARgDIo4BCYo20AKaBAICDiYJ - GAQMBxYGDAkMBxoaAgILHAQIBQAeJAABIg0gGxIdAwUOChQIAAYWFhACHQwABhYQBBoNDgIUEwoE - CBQNHBsmGwgJDh8SCxRBFx8AAAkfAAARHwIBBw8ACRMGHQsAAQ0UEwgPAR8NDQYdFAUKCxwREiEC - EQ8TEhsFCQQZGgUIDRQFDxJMGAMiSAn8PNIBggICAhQKCgwEHAkCPjIIAxIKLgAEBxQABBgHCBgC - EgsBChgMBgMFDh0NCQEXBQ8BCQQJDzEAOx0VGQATDAkJBQ0ZDxIXGAMiEwm0Mb8CMgACDyoNAhkP - Bw8ADQ8SOhICAAAYAyIyCeA9vkKqAQAVPAAAG1cAAD0eAAAbDgEADQ4CAA4gAgEOHgACDjoAAEoa - AAAQCQABFA8SPBICAAAYAyI0Cdw/3juyAQAORAEMBgVIFgAALgsAAA8XAgARDQIAHjsAACsdAAAO - HQABOyAAAR8QAAINDxK0AhICAAAYAyKrAgngPro8igkWAAAcEAIBDicAADw2AAALHgEADRABAB5K - AAAdDgACHgoAAA0YAQAQHgAAHSABABsfAAAdPAI6AwI8GAICHg0AAAwOAgA8DQAAEA0CAFRnAEkB - AJYBEQAAHBwAASRfAAAWFQAAHh0BABsbAQA5GwACKgwAABANAAAeGgICHjkBAB49AAIrDwEACSUB - AhoWAgEuGQEBDR0AAA8jAAorBggSCgQUFAUECgEJFQMDDRMRFQMGBwEXCgkDCQYRDAlMAAANPAEC - Kw8CAA8NAAEOHQICLw4AABAuAgAPDgACLg4AAEseAAANLQEAEBsAAA8PAAANHgAAJToAAjsaAQA5 - FwABHh0AAQ4rAAAQRwACVxoAAB0QAgAPDgAADx4AACsgAAEOHgAPErIBEgIAABgDIqkBCdY5/gzy - BAACIgQAHkAAAB7MAwoBRMABBEwBACADAwAZXwAANjcBIw8XAiUHGwERCQEoCwUJBhcAHwwCGh4U - DgMcEBIYEg4CWgUICSIPCgAQEQUVEA0JEwIDCCEKJwQRAyMWGRErEB0GBwsRAAsJDQILDR8DGQ8L - BACYAQECAQFZAgS/AR8AAB8dAAFdDAUyBAAxyAEEAUE/AAIfXQAAHxkABVsdAAAfDxJbEgIAABgD - IlMJvkKQG6ICNwATA0cAABlbAgBgGwIABTkBAjNLBW8DABunAQMoJ6ABzwEeGQ4NDQ8KExIEBg0Y - Ah4leAAAMhwAHAcMBAwHJCIgFwwdGAseAxwADxLYAxgDItMDCb5CgBiqDhsAIQYTCgseHxYjHwsI - DQMZCBsAAEsJBAMLGQAPBhMFDQ4VAwcaHyYVAwMMEwERDAUNFwwRFBsIFRQRBQAjDgsKFR4JDgAc - EToCAF0OAAwLAxMQHQULAB0TAw0JLQcTBAkHEQQvEx0MAAoPAh0LFQwHBQ0ECwUHEAAUJwQACB8A - BxAdAAAYBwAAFjUAAAgfAA8IABAdEBcAAAgVAAAINxEYFQ4GDgAIAQwIAgIMAgQBFA8CAQgNAgAc - DRoCCAkIBAYEAwUFAwMCGQQHBBsMAQIHDAECExARAAkJAQARBBEHGRgNAwALDQYACyoABAUYAQAI - NgAQDRAXDgAQDyYAAB8gBxAPHgcABSAAIicQAAAtEAMgFxYCEA0SJRQDCA0eFQMLCB8LBw0fGwcJ - CAcRAm0fAAAPXQENEAcHFhEAIz0AAA19AAIPTQAADS8BAMkBHgIICiAECg4SAAoIEgAIDB4FLA8a - EiQVIgQ6CwQJFAEOChYPEgYADw4HDCMGBwFZDw0TFQcACw8VAhkNBR8gCxgACAUOCAIpDggcAiwK - FgEkEB4BGgQANV4AAhoIFAcAADAkBDgWCgccARoCCAggBB4AFBEWABAIEhYGAQ8SmQIYAyKUAgnE - NZILqggEAAMCAQADAgIuDwgBkAEHAAAgHggAEBAIDwYIHBQaDgQBFgsCCxEFIAIoCBYJJAoJChYC - AA4QBgUKHAYGBwEHFwsABw8JAAEPCQQBAAGEAQgWCAAALgYQGB4AHgYQIAIACBgCAEQkAgYQAxAg - DgAgFgAAGBAIMAAAGAgAABgIEBAAAB4OEAIYBgACIBIOGgABDhsDDQkNFyMDDgcPJwATDSkTCw0C - Bw0fCQQNEQkJEQAVEwULEREHGRAEDxcTCREcAgEfFwcLCwUZDx0LAwUnDwMIIQ0nBA0FHQAdAx0L - FQMXAiUKDwsxFREGDQ0VCx8LCwQFLgAAGR0AEAcKDxA1AA8JDQkfBgsWEQgrDxJWGAMiUgmSPpAq - qgIGAgYABQgBFg0BAA4PAgEeEwIBKggCAE4DAgkHCykLAQcPAA0ZBgEYMQQDCAQjLAMYFSQJACAI - GwEjEgEEExYRBAkCAwEEAgEEBQ8SRBgDIkAJujiSFOIBAAIEEhAOEAIALg8AACgQAgAmCAAAHggI - ACYQEgAeBggYAgBoAQATAwk7CycHMRVJFTUPVw4BABkPEl0SAgAAGAMiVQmOPo4WsgICACgWEgMM - CBIDMggMChQEAB4GDA8eBBYLCg0AAF49ARcSDQAbCAsYDQwAJE8dDw1NGQA1AZEBBgkoAwATDA8I - Bg4DCAYYDRYMFgAACQ8SZhgDImIJrj2AKeoCBBAKCgMSBQMBAAIAAwAFCQAIBAQIBA0IAAQCCgAJ - DBACFQYFCgwHDggNAgEgEgAMERIDBwMCDQQOAQYMDgsAKhAWCxYfBAUdBhMJDxUJFSEODgQXBQcC - KQwTDxI5EgIAABgDIjEJvkKYD6IBAwITFQ8HFQATEh8AHQMfCR0CCQg3FSMDAi8CAAAMQAA2BwoE - IgCOAQIPGghjYXRlZ29yeSIICgZmb3Jlc3QogCB4AhrbLAoMT2NlYW4gb3Igc2VhEt0CGAMi2AIJ - 5jS0BZoKAgIIDAAMDgoeDAYFGhIUBBoSPhQwDBICOBQFACQKHhcQDyAJEAsYCQEJDAEDBQYEAgIA - AQMDAAEBAAABAQUCBgACAAMABAADAAICAAABAAIAAgIAAAICAAEAAAEAAgABAAICAAYCAwYNCA4Q - AhYUEQoICwEDCBsMAQACAAEAAgEBABEGAwgZDg8SAAgQDhACBgQUABIKCAUECBoMKApACA4MChAA - DhwKIBQOBjIWPhIUCjIODhAQBw4OGA4kBgQBEggKAhIMGgoICgAOEgYYBw4CChQYEg4CBgUeBSgI - Fg4SBhQcJA8QABAJAAYSAA4OBQYYDAoCGAsFEgoWEAMUCggBBg4QCgEGGhIWAwQRCgMHAQQPGgMI - BAgHDAAKCQUgDxICCBAAAhIUrgGdARthF7UBL7sBLw8FkQE9DQPrApcBswFJtwFLrwFHARUENQpl - DxKIBRgDIoMFCYhBvwKCCwAYEiIUBAgOFh4MDg4LDSkhOQUHjgEAAMoBGR0jNwUICQMAEAUKDBgE - Ag4WAgABAAACEBgeIAgEAFAVBx8bDQ8XDQEAAgIDCAASECAHDAYaAwoYFgsDEhQDAiYaFxQCBg0Q - AiQBFhIMEhQSEAQEABAFAQ0ACwoIBgYMBw4TDgAMFBYBBhwYAIYBAAsHHRkTABcREwsFEQ8hDREA - Iw0OCwQCEggRCQMLBgEODwoEEhIIBQIVEiQKAQQQCggADw0bAQsYGwoBCw0EGQ0DFQ8JCgUUDykC - BxALEAICDQcPBAcFEx8LBw8bBQcVAgkJDQMIDQAFCx0lCQUFCwEDAgQAAwshBBYJAgcXHxEPIQsN - GQsRDwkDFSMCDQ0DAgEEAQMCFxcTDwAFDQQFBwwRAAgsIAQBICIUCBQaAREKBAgPBx8REQ8BBQcA - DRIDFAQOEwwBAAcNBwALBwkBAQICAQAHBwIFCQsPCaQC9AGqAQACGhgAAgEBAgIKCAsHCgoGBAIC - AQECAgICBAIDAQICBAIGBgUFCAIVFw8JnwFXkgEBAAAICwESHgcGBgoFBg4cFgoDBAwKBg0BHwMh - BxEECQkCBAgPCTIQKgECFBgUCgIFJRsPCXtxkgEAEAkGBQkPBwYOBiIQJBICBhoKAwsbCgIYDwEL - CxMLBwkVDQcPCeIB3gZCExsHAwUVBQIIBxQKCAsEEw8JAIwCmgEHAgEeBhIBFhEiAxQECgcHABcI - EQEJCgsDEQ0RBRECDQwRFAMGAw8JAOQDIgcCCSEKBwgRDwkAtAKiAQ0EMQcTtQEIAggJFAQACBgR - CgMCCxMTCRMPBwkDCgIBAwQCFAweDgYFDxI+GAMiOgnMQKIJygEAAggMEQIdFhgQAQQHCgEMCAwB - DA0XBhETCg0AFQsEAxwMDgMUBwcBDQYHDwgPHhcKAw8S5QIYAyLgAgmwKL8CqgoECgoBBAcYAAgE - BgYECAEHBAk2ABIQHiAeFhgiABYGFAUADg4KAgQPCgUUBgwOGBQCCAsQDAYKFAcBChASAAUEBgAI - Eg4ICAwYAgIQCgkIDgcQFgEOIMoC0gFeMhwODAUCDBALBggABxABDgwGFAgEAAsKAAoPAwUWGRQO - AQgTHgMACCQFAgIUEhQADhoaCAMICA4JGgQSCC4MEAwWAhwMHAIcEgoEFhQOABYMGAAQDgwDBRkA - AwYLEAMGBgoJBgYcFQQbEBsMBwgNDAAQGQwHDAIDDQARDhkaFRwpDAsGEwQGCgsKBAAOBgAREAMK - AhYRDgkEBQoRChckBhQLFg0SEQEPDhUwAgYJDhMMBRAVAgUFBwgTCQsIBBoCCAoCEhAUBRAUBBAK - DBYKBgwMCAgaBgEMDAoFDggFQAt2ADyrA60B0QTzAYEDnwHfBPkB8wKZAbME5wFfJw8SbBgDImgJ - 0jO/AoIDAxYCHAcGBRoHCgUUARYJDBMMEQ4DEhESOwcfDBEQAAoJBhIIDQQAFgQMFQcJDQQDBQIR - CAUMDSUIAwQPDgQUCQQRJBkEBiQFDggiAxoXAg8cEQwfABUGCwAfFwkBCRgFDxIjGAMiHwmQMMMB - YgIMCQgOAhAMAwoKBgEUMQsEGQYBBwsODw8SRhgDIkIJijC/AuoBBBAOHAkICAgHBgkYABATEB0i - AA4aAgIGGxANCQETBAsBDwwNBAgMFwoKDA8ECwIVCwsDDx4FCRsDAw8S9QIYAyLwAgnyL4sBogQC - ACYMHgIABhoKDhAuEiYEDCYLCggIChQGAwYMCAUEDgkMAw4IBg0GERIDChcABAoJBgYPJQEEBgsE - JSQHGgAEAAMXCgcSCQATIA0KBQ4RAgUKCAgREg0DDQoKCg0DAhB1Pd8BjwHAAcEBFgUYAhYSEAIM - CgAMCggOCRAFCAcDBRgJCBUCAQQHCAAMCw8JMcICSgEADxgIDgoHAgkMAQoLBwIPBQ8JFCFCAQIJ - CAgBAQwQEAQMDCUXBw8JnwFFSgACBhATAQEEAgwMCB4HDxsJAQ8JgAIlggEBAgMGBgMDBAcGAxIJ - AQ0GBQoECg4FEA0EAhQHDhELCQ8JVn3KAQEABw4PAg0YFxYIEAkABwoGAQYMBQgPBAYSCAYOBxYA - CBcUAwYRBgMCAwMCCCUMCwUVDwnHAjw6BAgXCgEGGgkDCBIDDxEPCRQbOg8SFgMKCgUIGgkTDw0F - DwlgTTIBAgEMCxoOBgAJCBkPEh0YAyIZCZwwuAFKAAICIgsOEQQBBgcFCgECARQRDxJNGAMiSQma - K3uKAgIADBwGAAgQEAwYHgYMCgAIBgcIDAIEDAYBAwQBABUBAgURDwoBHR8RBwEGEwcQBQcJFwsB - AAACAAEBAAoRAwUKBw8SUhgDIk4J1C3DAZICFAYoBhgODAAELgQGDQEhEA4CAQi/AcIBaUELJQYG - JAAFCQgGEgYMCQ4DAAkGBQQNFAMCDxILDBMMACQfAQ0QDxQNAwsOBw8SMhgDIi4JvDHpAZoBBgYN - FAgCGBQUCh4gDQYCCA0IBQUFFQ0NAQcnEQkHAwkMCQoEChMPEi4YAyIqCeotgwKKAQIADAQIEBAJ - CgQEJhEIAAgMBgUCFQEnCQYTBw8KDQEJDAMPEmgYAyJkCaAxqQG6AQASFgcIBg0IDAYIAwwGBAoP - AQMGCgoNFAcWEQATAy0RDQ8NAQgFDAYSCRodGhEPCQgYogEJBhUADQoBCA8MCgQFCBgKDg0QAwIT - CAQMDQkUDAADCQYECAcLBw0HDxIwGAMiLAnAL4MCkgEDCC8SDwAfDA0CAQwRBxMMBwMDHwYEHAwo - BxYJCAAaDQQIHgsPEkIYAyI+CaJBngnaAQYCARoCAhAEDwMADhkEAQoLAwwDBQkFChcHBRMLBA0B - CQYNFBICBQwABQsFCwceFzgBFgQMDQ8SJxgDIiMJikGMCXICAAgSDgcIAgcGERYVAyMCCBMMBRYA - AgYICQkEDxIfGAMiGwmgMLgBUhAUDhEKAg8SCAAHBA8BAAcJDQEBDxJNGAMiSQnsHL8CmgFgKMIC - hAHmBP4B4AT6AYIDoAHSBPQBqAOsARMA2QFHVR27AT+HA4MBuwE/zQXzAa8DkQHLA5sBvwTDAcEd - AACTAQ8SGxgDIhcJvwK4QTrUPgADLgAYBx4FHgIEwz4ADxL+AxgDIvkDCb8CqwGCD8IdAMAExAHM - A5wBsAOSAc4F9AG8AUCIA4QBvAFAVh7aAUgHCgMWABoKHgYKFhYbCCEWGyAHDgUcABwKIgoQAAwK - HA4cGBIBEAYYChQXHA0YAQwDJgIMDiIjCCEYGSoDDgAeCCIQGAwoDBASEgwkDhYDKgQODxoFGgYs - CSYAHAYgDBgUFBwSAyQKJBAYIBgOHggcGiYUEhIOIAoMIggOAAEOEh4UCBQODgooDhYOEA4IEBoN - EhUoCSACJAgYEBgSEBgMGAgeAiIHCBoAFAIaCBQKDhqkAQYmBRwCHBQ8ER4DEAAcDDYUPAwYLiwA - IgwkFiAsHBBOFlAMHgEcDCoURAQ2BhoAVgQoARYJSAAUBD4EEg4mJCIWQgoyCjoMUBpuFFwMegHa - AQQQAS4CEABcBBQBUhFaBQwHIgEaBxIDJhZSDhwUHBIOIBIgCBgqKGQUSAY0BD4HJA8OHSYPBh0S - Ex4HFAEiCCQKEhQUHhACCAIeARoCGAYQER4HFgQoCxAHFgMiAhoMFhgaHA4IEAwKAUIFIAA8AwwN - HgEoBxoAJAwkAhATEBMiAxgCHA0sACIIFBYgDAoBEgk8FxIRKAUeABgEGhIcFhYGFgQcBTYPGgce - AhQMKAgOAB4HNAcgDSQJEAseEUADHAEcCCAIEgEG0z4ADxKTAxgDIo4DCYQ8vkKaDAEDBh0IHQAV - BjUHEQcfAhsEGxI/DB0KDw4jCB8IMwAdBw0LJwETCB0QGQY1AxsFFRUVERsDGQAXBh0SJxgRCjsC - EQsJFR8HEwAhDisBGwQXFCEUDwEPCyMAIwgZAicSKQA7Bh8CQQsJBw8bDRcZCxUBGQQhCBUMDwMn - CBUSHQUPARcCHQMfHRETEwkRByMCIQgTFB0eERAFHiUQDQgjAz0FMxNHJ2MXKR8HHxERDRMbDRsR - QRgBeAMeAQQSBAwUKAEGEAgCBh4+GDgMKBAgDjQCHg48CGoFLgkgEwINBA8MAxgZFAASDggIEAAS - CAIIEgIuBCIBHAQoAy4FIAEqExoCDA4DCAwBDAYQFhIGCgQYABoECABWBA4FCglcBRgAGAUcCggH - BAYgBSQAEgMaDSQFAQsQCgQEGAcSCg4MHA4SDQwFVgtEERIhDgYGJgMIBgwmAhQAOAdIBQwBIgkO - DgQEHAEcATwDCAlCCzoPDhEYBg4JDAIWAwoQAAISCQ4CNAtQByoDHA8SbBgDImgJ1D2cOIIDEgQO - EBIGGAQACw4BBxQJCgoSBBoQEgESCggBCBABBgEFAgMYBxIPAgQQHg4CBgsFBQEEBgAEARgCFwMB - AQMBAAQEAQoBCwEBBwkPCwUNFRMPCRMTBycADQoFAA0MFxETDxInGAMiIwncPbQ6cgACAgoOBgwu - BxQLEA0KBxgFEQIdDi8IAQsXBgkPEiUYAyIhCe494DxqAwoNAAEGAQ4KBgsSBQADEQAJDAkACRIA - AgUPEuoBGAMi5QEJvkKyDdIGAwUXCw8DEwYHChMABwQVAR8JEw8fCw0AJwkGBhEMDwUCBw8KCwEX - BBMKOQENCwUIEwYdAgkLCwMVBB0AHwMHCycGDQEVBQMJEwIRBw8AFQULBQMLLxcNCwETBgkNCRkA - BQUfEx0NFQ0nDxsVEwBFCRUJJQkLDQ0JHwYTBR0dIQ0NEwkBKx0HAQcJKRkPAA8LGR0LBAUJDQAJ - BwkXJQUhAQ0DCwYNBRUCFQgNBxMQBRcFAQlvAXEAAwwGpAFCuAFMtAFK7AKYAQ4EkgE+EAa8ATC2 - ATBiGMQBIgwCDgMPEvAEGAMi6wQJ1jScCIITAAIKbgYCBiYEChQMChACDA4KAAoMDApaAAoJDgwa - ARYDFhUSCRAUIAIaDzYJEAcBERYHBAEQEBQIFg4aBQ4UDggQARAKEAsUASYGCgEODBQEIAAgBhwD - Dg4mByIGCAoABiYKBA4UCCYBDgcABA4GAxIUBwYKEBoSAxIyAgYICgEKDgASCgQADAwCBgoDDhAA - EAYKEhYADAwIFgYwDhwNCBAACgYIAxAaFhIIEggcAhYKNBg4CCAEFggSCDIMKAgsBjAIKg5sACYI - SAIwCg4GJAIeCBYDBB4MChYKHAwwIAAUFAoQFlIEFgwmCCQMQgo8CB4ADgxKAigGdAJEAzgDJgAe - BwI8LgYCDC4IEBBKDEAIUAIkAxgEEAoGHI4BAhgHIgQiAjAEFAI0BBoCYAJoAUQAPAEmBAYFVgUq - BR4JDAQGBR4BHiAbCgwOAQYUAQRVBFcCAxUEHQgRAhkIIQYLElkCUQMTAFsBDwItAw8C2QELeRNb - GW0LTwk5CTEVQSMhDSUDEQM9ABMMXQMnAFUFGQM1E0MLKQIbCx0VTw9NKxsVHwsjACEtKwsXEzsL - NQAbBA8SHRM7ARsGGwk3FZEBCQ0HEwEZABMHGSEIHQEVBRkNEQ8PFwcXASMKHxYnDhEPFw0JDQ8N - FQklDQ8HEx0TDREAAgsXBxcfCRENExEZJQcbDR0bExMbCSMEIxsRExMLFwUfABsKJQUrBhkQGQMN - BCkNFQsjERELDwsnCQsLHwEdBBsaKSIXJAcNIQELBCUCCw4XGBsJEwUXAg8XEQ0bCRsACwkPCSEA - GwYbCA0cHyIVFAUPEpMEGAMijgQJrj60JPoMBAAJAgECCRQMDAQCBAQDAwEDAAkCDAoKBg4SBBMB - Bw4IAQ4WIgwIDgwCCwQMBgAICQ4XBiseEQ4LAQ8QBQMMDAMqDQYLChkIAiQBDgQWGA4ODgocAhQO - EgYOEgQEGgcGAhwEEAgABQIJAgIQDwUFDQ0IAhAFEhcOARwIEgYAGhAOFAMUCg4QARQIGAITAhYO - DgQKGAYsDgECAAECAwgCDAQCCgIFDAQLBwEDAAMDAAcCAQQHDQABAAUZESMXCwEKAQsJCQsABBIC - EAEPCxMZAQECAwYCBwkHABUBEw0JAxAKGAMMDAwGDhUSAxQRBAAOCRAPCgMICQERCB0ABQ0AEwEG - ABsDRwURARUAHQUjARkCAAgBBwACEQgHAxkANQQdACUJFwsHAxEPHQERCBMLIQkCCQ4EEwEXG40B - KBAeEh4YCgEJAw0NCwMACQsDEAIAChQAGA4AEgcHBggEBAIPLg4CBxEFDQ8UCAIHEw0OAQYPAw0G - DQAKAQYQBhgWHAAUAwIHAw0BBQIGAAkKCxYFCAQBCwMBDwkFCQAHCg0CAQ8Jd8wEggMBAAcCByIA - HAYGAxgNDRYiFgoKEAUSBhYBChIDEgAKFQ8XACcJBAEOAw8RABIFBggOEQILDw0PAwACBwwGDQcJ - BwQAGAcHBAsJBAAKAQkAAwoBAgcJAwAJEAwEDwkJAQ8PEiEYAyIdCcI1+AlaBgQLABIQCBgLDAYU - BRgPCgUFCVkOCw8SbhgDImoJiDymIooDAgIYCi4GAwYHLA8QBgISAxIPBAMGARIICwAJAQQKEQYO - EgwEChIOBgsEBAAJAAUMAQkdIxEBAg4KAhMGCRAEDQkEBxEEBQQFAwYCBwoFDQAFBgQFBQYBDQcE - DSUMBQQXBQsPEjkYAyI1Cbw8+B+yAQICFBIaChAgAQwWDBcaAgaDAWIFCQsGCQEHJQcXARcEHQsR - Bx0GEyQTFgMuBA8SggEYAyJ+Cfo87iDaAwIAFg5AABABKAQDCAsBBQoRAgMIJgUiAAwGCgUkCAoD - BQgKAwUEDgoMAhIJFhEEBg8MDRIpDB0WEwQ3EikUJwENDgkYCwEXCB0QLQUfDwIBCQINDQgBCwAH - EhUDOy0eBRwVEAAEAyECCQgICRYJBQgaARQCeFcPEhsYAyIXCeA5ogtCDAA6CgACBQYXCg0FFwUB - CQ8SIRgDIh0J9DWaCVoQACQIEBoVDAsCCQENEQoDCwALEQQDDxInGAMiIwmSQpwNcgQEFRgRDAkA - GwcTAAkFCw0GAyAKFgIIAxQAEg0PEh0YAyIZCbw0pAdKEgAGAgJ2FRUFCQkdAQ0GIQgHDyiAIHgC - GvQCCgtPdGhlciB3YXRlchLPARgDIsoBCb5Cqi2KBgcAAwQNCg4JAxAdEh8gAR4PCAsFGworGA0B - CwkVDjUAExcDBAUECQgAFAwBAgIGDAgDDAMIAgUQAwUEBwYBBQIVBAUCAA0NAAATCAkDCQoGBxUH - Ag0ZChULBAMOEwoGBg8CCQAKAQkCLQwbBREKGQIPECEFCwoHGycVAgchDQcKDwMRHRIAFyETEhMn - BxsEAQQbBQsEGw4FAgAAAg4MFCgkCBwUEBYYGFQIVB82BzQfQCAfCggGIAsGBDoRWgZGCQoDDxKN - ARgDIogBCb5C8iyCBAkERQpZBTkSTSczIDUIUyBTByctGxMjBxMnDQsPBAMcBgwABAEYBREGBRcL - ARUQGwgGGBsCACIGHBQgBwMGEwQCFhAODh4iHgIKFAwgChgACA0KAQwVEAUMDRYBCBUYByQWEAMO - ISAEBhcyBwQOCgYEFAEeDgowBBQKUgEIByoDDyiAIHgCGkgKDVJlZ2lvbmFsIHBhcmsSMhgDIi4J - zEDoF5oBAEggAA4MFQYfFAkUERINAhMSExUXAB0ZFQ8cIRwPEhUkExgBHgkPKIAgeAIapQUKFlN0 - YXRlIG9yIHByb3ZpbmNlIHBhcmsSGxgDIhcJvkKSB0IFCAIKEQAQHwITBRUCGwgBDxJOGAMiSgna - OY4HigIKAAAeCAoCAhYAHA0ZGAIMMBgOBwUMKBQ6DiYQLAgIBiYCCB4AAiEZDQgPDzENEwkbBR8L - QRsfExsJAA0HCQkLABMPEskBGAMixAEJvkLwNSoRBAsLDwcSFRwADwkAlgPyAQ0ACwYdBxsACw8e - Cx8MBRkQAAwJFAUOEwEdFwsJIQgPDQENBgcNGQAADwsACAMgCB4DDgkeCAwWDAUGBQ8JAPABggED - AQsQAw0PAxUREQgDDRUZAQ8SEhwAIAoOEg0RDgUMAA8JAKoDigIxAAcXEAkJCwMIDxMCIxYGAwMJ - BQkTFxUBIQkZAgkCCiIECx0cGQISDAsFDQgXCg0XDAYHEQEiGQ4FCA0HCwoEBgEPEi4YAyIqCdI9 - ujqKAQYUCSQBDgMwCBANGAYSABgFAAEHLwYHBSoPDBEMVwINAicPEkIYAyI+CYg9pC3aAQgEBgwO - CAAIAQERAhYgCgQKCx4KBRINAA4KAAoBBQAIDCYBDgsECRkLBg0bDgANBSVPDwUUEw8SMBgDIiwJ - zD3SMZIBAAQIDg0ABxgNDgAWCAACFAoQCgADDgkACwsAExMVAREaEwYZDxIuGAMiKgnEPbY0igEC - ABAEAyYSDgoAABAVDAAiIAAIDwAeKQANBwspDQQBDRQXDxJUGAMiUAnoQMAxogIEAgoODgAAEBAB - AB5LAgcRCQwDEgYAAAYPAgcYBBIAAgsYDQYODQINCAMFFQwTAgMMAQUAAAEEFQwHAAEICAATDwAA - DRAAAA8PEiEYAyIdCb48tCZaAgAOJgcSAhIQHgQSEBA3AAlpBhEKCw8ogCB4AhqGCAoLRWFydGgg - Q292ZXISIBICAAAYAyIYCeA8vkI6AEkiAACRASEAAGGgAwAAvgIPEhgSAgAAGAMiEAmAQL5CGgC9 - Ar4CAAC+Ag8SIRICAAAYAyIZCbhBvwI6aJwBHhgAjAHRAQAjNSOjASJlDxI0EgIAABgDIiwJiCu/ - AnoAVpoBOTcblhQAAMAC6w8AADlNAAA6vQQAlwFzAHVNOb0BAAkbDxI4EgIAABgDIjAJvkKAIFq9 - AgAA5wskNW4AAGttACM3AMUFtgEAADiIAQAPCWHYBBoA2gEkbADFAg8SIRICAAAYAyIZCb5C5go6 - zwEAbW0A4QckACM3AN0BvgIADxIsEgIAABgDIiQJvkLmIGJtAAAybgAA6B69AgAAmRJoAABjIQBF - MQDPDL4CAA8SlwESAgAAGAMijgEJ7jSKCaID3AEAADhsAJQBpAGSATa2AQBuOCRukgE2ygIAAKQB - SQAAOEoAAKwR7QQAAKEBIwAA1QEjAABrJQAANUcAJWsAayMAAMMCIwAAoQEjAABrJQAAowFHACWh - AUcAIzcANUkAIzUAbSUAAKMBIwAjjwIjACU3ADVuAADJAiMADwluuAMSANoBSG0PEokBEgIAABgD - IoABCeA8gCCqA6ADAACCDYkBAAAyiwEAAJUBZwAhZCMAITEAlQEiAADFAyEAAJUBIjMkAABmIgAA - ygFGAABkRDEhZQBjIQAAlwEiMSIAQzEAMWcAADIjAAAxIQAhMwCXASIxRQAAlwEkAABmRAAAZWgA - ADHSAQAiMyEAaTEAMqsBAA8STRICAAAYAyJFCYAwAMIB7ggAJHCSAQBtb8oGAAD4CbUBAAA1twEA - R2+lAjVHbbcBAJEBbbUBALcBbyNtbQBtbdkBACVvkQE1I6cBbjUPEoMBEgIAABgDInsJgj2CLaID - IgAAZEYAAGRGMmgAAGMhAAAxRABGMQC4DIkBAABhaQAkMAAyIgAAYiQyRAAAMUYAALIF/QIAIjEA - pQIkAACTAUUAIjEALyQAAJMBIwAAYyQAAPUBIgAA9wFFAACNAyEAAGMiMWgAAKsCQzIAYyMAADEh - AA8SFxICAAAYAyIPCbYtABqAAgBrpgGTAQAPEhsSAgABGAMiEwmMPvwuKgD6ASEAAJUBIQAAMQ8S - FRICAAEYAyINCb5CmCEabQAAMW4ADxIeEgIAABgDIhYJkDuAIDpoAAAyIwAAmgEhAAAzIQAPEhoS - AgABGAMiEgnqPeYtKiIyjAEAAGRnAEUxDxIkEgIAARgDIhwJsD6KOVJGAABiigEAAGJFAAAyQwAj - MQBhIQAPGghjYXRlZ29yeSISChB3b29keSB2ZWdldGF0aW9uIgoKCGNyb3BsYW5kKIAgeAIaqgEK - EkludGVybmF0aW9uYWwgcm9hZBJfEgQAAAEBGAIiVQmgQuwHQhwcAgABABsTBYcBFz86IwICCQ0E - Gi0YIKoBAgAJGu0BmgE3ywG7Ab0BGUUJcyBHQ0tZnQFFPRtDACkccHB6MGBCSB1QCnAaRsIBxgEu - rAEaDGNvdW50cnlfY29kZRoTY291bnRyeV9zdWJkaXZpc2lvbiIFCgNDQU4iBAoCQkMogCB4Ahou - CgxTdGF0ZSBib3JkZXISGRgCIhUJ2DzuLDIQSZABflAIwgFFSCTsARcogCB4AhpKCgxJc2xhbmQg - bGFiZWwSEQgAEgQAAAEBGAEiBQnKN4UCGgRpY29uGgRuYW1lIgIgASISChBWYW5jb3V2ZXIgSXNs - YW5kKIAgeAIa0AMKE05hdGlvbmFsIHBhcmsgbGFiZWwSERIGAAABAQICGAEiBQnaP7MCEhESBgAA - AQMCBBgBIgUJ9Dq8ARIREgYAAAEFAgYYASIFCeg9jgkSERIGAAABBwIIGAEiBQn6KpkBEhESBgAA - AQkCChgBIgUJpkLQBxIREgYAAAELAgwYASIFCf5AkBAaBGljb24aAmlkGgRuYW1lIgMgqQEiEQoP - MTI0NTk4MDAwMDI5MDUyIiIKIFJvYmVydHMgTWVtb3JpYWwgUHJvdmluY2lhbCBQYXJrIhEKDzEy - NDU5NzAwMDAwMTgwMCIcChpHb3Jkb24gQmF5IFByb3ZpbmNpYWwgUGFyayIRCg8xMjQ1OTgwMDAw - MjkwNDIiEwoRRnJlbmNoIEJlYWNoIFBhcmsiEQoPMTI0NTk5MDAwNTQ1NzUzIi0KK1BhY2lmaWMg - UmltIE5hdGlvbmFsIFBhcmsgUmVzZXJ2ZSBvZiBDYW5hZGEiEQoPMTI0NTk5MDAyNjc3MzY1IhwK - GkdvbGRzdHJlYW0gUHJvdmluY2lhbCBQYXJrIhEKDzg0MDUzOTAwMDUyMTEwMSIXChVPbHltcGlj - IE5hdGlvbmFsIFBhcmsogCB4AhrPAwoSTmF0aW9uYWwgcGFyayBuYW1lEhESBgAAAQECAhgBIgUJ - 2j+zAhIREgYAAAEDAgQYASIFCfQ6vAESERIGAAABBQIGGAEiBQnoPY4JEhESBgAAAQcCCBgBIgUJ - +iqZARIREgYAAAEJAgoYASIFCaZC0AcSERIGAAABCwIMGAEiBQn+QJAQGgRpY29uGgJpZBoEbmFt - ZSIDIKkBIhEKDzEyNDU5ODAwMDAyOTA1MiIiCiBSb2JlcnRzIE1lbW9yaWFsIFByb3ZpbmNpYWwg - UGFyayIRCg8xMjQ1OTcwMDAwMDE4MDAiHAoaR29yZG9uIEJheSBQcm92aW5jaWFsIFBhcmsiEQoP - MTI0NTk4MDAwMDI5MDQyIhMKEUZyZW5jaCBCZWFjaCBQYXJrIhEKDzEyNDU5OTAwMDU0NTc1MyIt - CitQYWNpZmljIFJpbSBOYXRpb25hbCBQYXJrIFJlc2VydmUgb2YgQ2FuYWRhIhEKDzEyNDU5OTAw - MjY3NzM2NSIcChpHb2xkc3RyZWFtIFByb3ZpbmNpYWwgUGFyayIRCg84NDA1MzkwMDA1MjExMDEi - FwoVT2x5bXBpYyBOYXRpb25hbCBQYXJrKIAgeAIakwUKEVBvaW50IG9mIEludGVyZXN0EiEI/Jqg - 3KOqHBIOAAABAQICAwMEBAUFBgYYASIFCdo/swISIQiIsrP/n6ocEg4AAAEBAgIDBwQIBQUGBhgB - IgUJ9Dq8ARIhCPKaoNyjqhwSDgAAAQECAgMJBAoFBQYGGAEiBQnoPY4JEiEI2fOquaeqHBIOAAAB - AQICAwsEDAUFBgYYASIFCfoqmQESIQj1gK26p6ocEg4AAAEBAgIDDQQOBQUGBhgBIgUJpkLQBxIi - CI2Dr+Tzjr8BEg4AAAEBAgIDDwQQBQUGBhgBIgUJ/kCQEBoIY2F0ZWdvcnkaC2NhdGVnb3J5X2lk - GgRpY29uGgJpZBoEbmFtZRoIcHJpb3JpdHkaC3N1YmNhdGVnb3J5IhgKFlBhcmsgJiBSZWNyZWF0 - aW9uIEFyZWEiBSDYtLsEIgMgqQEiEQoPMTI0NTk4MDAwMDI5MDUyIiIKIFJvYmVydHMgTWVtb3Jp - YWwgUHJvdmluY2lhbCBQYXJrIgIgPCIPCg1OYXRpb25hbCBQYXJrIhEKDzEyNDU5NzAwMDAwMTgw - MCIcChpHb3Jkb24gQmF5IFByb3ZpbmNpYWwgUGFyayIRCg8xMjQ1OTgwMDAwMjkwNDIiEwoRRnJl - bmNoIEJlYWNoIFBhcmsiEQoPMTI0NTk5MDAwNTQ1NzUzIi0KK1BhY2lmaWMgUmltIE5hdGlvbmFs - IFBhcmsgUmVzZXJ2ZSBvZiBDYW5hZGEiEQoPMTI0NTk5MDAyNjc3MzY1IhwKGkdvbGRzdHJlYW0g - UHJvdmluY2lhbCBQYXJrIhEKDzg0MDUzOTAwMDUyMTEwMSIXChVPbHltcGljIE5hdGlvbmFsIFBh - cmsogCB4Ag== - headers: - cache-control: - - max-age=86400 - content-length: - - '12262' - content-type: - - application/vnd.mapbox-vector-tile - copyright: - - 2022 TomTom - date: - - Fri, 22 Jul 2022 06:40:18 GMT - etag: - - W/"8965532552c70374d66b13cefe06beb809bf7ce411d3bff917e723f7ba01e0f356d045f05b565b0341e57d4373f10a6d" - expires: - - Sat, 23 Jul 2022 06:40:18 GMT - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-azuremaps-region: - - West US 2 - x-msedge-ref: - - 'Ref A: F4013D3EF1CD469883426CAB05497665 Ref B: TPE30EDGE0708 Ref C: 2022-07-22T06:40:18Z' - status: - code: 200 - message: OK -version: 1 diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tileset.yaml b/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tileset.yaml deleted file mode 100644 index 2ab48c82415b..000000000000 --- a/sdk/maps/azure-maps-render/tests/recordings/test_client_e2e.test_get_map_tileset.yaml +++ /dev/null @@ -1,45 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-maps-render/2.1-preview Python/3.9.13 (Windows-10-10.0.22000-SP0) - subscription-key: - - - x-ms-client-id: - - - method: GET - uri: https://atlas.microsoft.com/map/tileset?api-version=2.1&tilesetId=microsoft.base - response: - body: - string: '{"tilejson":"2.2.0","name":"microsoft.base","version":"1.0.0","attribution":"©2022 TomTom","scheme":"xyz","tiles":["https://atlas.microsoft.com/map/tile?api-version=2.1&tilesetId=microsoft.base&zoom={z}&x={x}&y={y}"],"grids":[],"data":[],"minzoom":0,"maxzoom":22,"bounds":[-180.0,-90.0,180.0,90.0]}' - headers: - content-length: - - '365' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jul 2022 06:40:18 GMT - expires: - - Fri, 29 Jul 2022 06:40:19 GMT - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-azuremaps-region: - - West US 2 - x-msedge-ref: - - 'Ref A: 31F23EFA999C49A4B64A7CAEF7916397 Ref B: TPE30EDGE0908 Ref C: 2022-07-22T06:40:19Z' - status: - code: 200 - message: OK -version: 1 diff --git a/sdk/maps/azure-maps-render/tests/render_preparer.py b/sdk/maps/azure-maps-render/tests/render_preparer.py new file mode 100644 index 000000000000..804dd89bd312 --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/render_preparer.py @@ -0,0 +1,15 @@ +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- +import functools +from devtools_testutils import EnvironmentVariableLoader + +MapsRenderPreparer = functools.partial( + EnvironmentVariableLoader, "maps", + subscription_key="", + maps_client_id="fake_client_id", + maps_client_secret="fake_secret", + maps_tenant_id="fake_tenant_id", +) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/tests/test_client_unit.py b/sdk/maps/azure-maps-render/tests/test_client_unit.py deleted file mode 100644 index a8902533a141..000000000000 --- a/sdk/maps/azure-maps-render/tests/test_client_unit.py +++ /dev/null @@ -1,68 +0,0 @@ -import sys -import pytest -from unittest.mock import Mock -from devtools_testutils import AzureTestCase -from azure.core.credentials import AzureKeyCredential -from azure.maps.render import MapsRenderClient -from azure.maps.render.models import LatLon, TilesetID, BoundingBox - - -# cSpell:disable -def create_mock_client(): - return MapsRenderClient( - credential=Mock(AzureKeyCredential) - ) - -class AzureMapsRenderClientUnitTest(AzureTestCase): - - def test_get_map_tile_invalid_index_y(self): - client = create_mock_client() - with pytest.raises(TypeError): - client.get_map_tile( - tileset_id=TilesetID.MICROSOFT_BASE, - tile_index_z=6, - tile_index_x=9, - tile_index_y="two", - tile_size="512" - ) - - def test_get_map_tileset_invalid_tileset_id(self): - client = create_mock_client() - with pytest.raises(TypeError): - client.get_map_tileset() - - def test_get_map_attribution_invalid_zoom(self): - client = create_mock_client() - with pytest.raises(TypeError): - client.get_map_attribution( - tileset_id=TilesetID.MICROSOFT_BASE, - zoom="six", - bounds=BoundingBox(bottom_left=(LatLon(42.982261, 24.980233)), top_right=(LatLon(56.526017, 1.355233))) - ) - - def test_get_copyright_from_bounding_box_invalid_LatLon(self): - client = create_mock_client() - with pytest.raises(TypeError): - client.get_copyright_from_bounding_box( - bounding_box=BoundingBox(bottom_left=LatLon("random"), top_right=LatLon(52.41072,4.84239)) - ) - - def test_get_copyright_for_tile_invalid_index_x(self): - client = create_mock_client() - with pytest.raises(TypeError): - client.get_copyright_for_tile( - tile_index_z=6, - tile_index_x="nine", - tile_index_y="two" - ) - -if __name__ == "__main__" : - testArgs = [ "-v" , "-s" ] if len(sys.argv) == 1 else sys.argv[1:] - #testArgs = [ "-s" , "-n" , "auto" , "--dist=loadscope" ] if len(sys.argv) == 1 else sys.argv[1:] - #pytest-xdist: -n auto --dist=loadscope - #pytest-parallel: --tests-per-worker auto - #print( "testArgs={}".format(testArgs) ) - - pytest.main(args=testArgs) - - print("main() Leave") \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/tests/test_client_e2e.py b/sdk/maps/azure-maps-render/tests/test_render_client.py similarity index 52% rename from sdk/maps/azure-maps-render/tests/test_client_e2e.py rename to sdk/maps/azure-maps-render/tests/test_render_client.py index e5bacff99c0f..18450474ed66 100644 --- a/sdk/maps/azure-maps-render/tests/test_client_e2e.py +++ b/sdk/maps/azure-maps-render/tests/test_render_client.py @@ -1,48 +1,29 @@ -import sys -import pytest - -from devtools_testutils import AzureTestCase -from azure_devtools.scenario_tests import RecordingProcessor -from azure.core.credentials import AzureKeyCredential +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- +import logging +import os +from azure.core.credentials import AccessToken, AzureKeyCredential from azure.maps.render import MapsRenderClient +from devtools_testutils import AzureRecordedTestCase, recorded_by_proxy, is_live +from render_preparer import MapsRenderPreparer from azure.maps.render.models import TilesetID, BoundingBox -# cSpell:disable -class HeaderReplacer(RecordingProcessor): - def __init__(self): - self.headers = [] - - def register_header(self, header_name, new_val): - self.headers.append((header_name, new_val)) - - def process_request(self, request): - for header_name, new_val in self.headers: - for key in request.headers.keys(): - if key.lower() == header_name.lower(): - request.headers[key] = new_val - break - return request - +logger = logging.getLogger(__name__) -# cSpell:disable -class AzureMapsRenderClientE2ETest(AzureTestCase): - def __init__(self, *args, **kwargs): - super(AzureMapsRenderClientE2ETest, self).__init__(*args, **kwargs) - header_replacer = HeaderReplacer() - header_replacer.register_header("subscription-key", "") - header_replacer.register_header("x-ms-client-id", "") - self.recording_processors.append(header_replacer) - def setUp(self): - super(AzureMapsRenderClientE2ETest, self).setUp() +class TestMapsRenderClient(AzureRecordedTestCase): + def setup_method(self, method): self.client = MapsRenderClient( - client_id=self.get_settings_value('CLIENT_ID'), - credential=AzureKeyCredential(self.get_settings_value('SUBSCRIPTION_KEY')), + credential=AzureKeyCredential(os.environ.get('AZURE_SUBSCRIPTION_KEY', "AzureMapsSubscriptionKey")) ) assert self.client is not None - @pytest.mark.live_test_only + @MapsRenderPreparer() + @recorded_by_proxy def test_get_map_tile(self): result = self.client.get_map_tile( tileset_id=TilesetID.MICROSOFT_BASE, @@ -51,19 +32,21 @@ def test_get_map_tile(self): tile_index_y=22, tile_size="512" ) + import types assert isinstance(result, types.GeneratorType) - - @pytest.mark.live_test_only + # cSpell:ignore CEST + @MapsRenderPreparer() + @recorded_by_proxy def test_get_map_tileset(self): result = self.client.get_map_tileset(tileset_id=TilesetID.MICROSOFT_BASE) assert result.name == "microsoft.base" assert "TomTom" in result.attribution assert len(result.tiles) > 0 - - @pytest.mark.live_test_only + @MapsRenderPreparer() + @recorded_by_proxy def test_get_map_attribution(self): result = self.client.get_map_attribution( tileset_id=TilesetID.MICROSOFT_BASE, @@ -72,8 +55,8 @@ def test_get_map_attribution(self): ) assert len(result.copyrights) > 0 - - @pytest.mark.live_test_only + @MapsRenderPreparer() + @recorded_by_proxy def test_get_copyright_from_bounding_box(self): result = self.client.get_copyright_from_bounding_box( bounding_box=BoundingBox(south=42.982261, west=24.980233, north=56.526017, east=1.355233) @@ -83,38 +66,26 @@ def test_get_copyright_from_bounding_box(self): assert "TomTom" in copyrights assert len(result.regions) > 0 - - @pytest.mark.live_test_only + @MapsRenderPreparer() + @recorded_by_proxy def test_get_copyright_for_tile(self): result = self.client.get_copyright_for_tile(tile_index_z=6, tile_index_x=9, tile_index_y=22) assert len(result.general_copyrights) > 0 copyrights = result.general_copyrights[0] assert "TomTom" in copyrights - - @pytest.mark.live_test_only + @MapsRenderPreparer() + @recorded_by_proxy def test_get_copyright_caption(self): result = self.client.get_copyright_caption() assert result.copyrights_caption is not None assert "TomTom" in result.copyrights_caption - - @pytest.mark.live_test_only + @MapsRenderPreparer() + @recorded_by_proxy def test_get_copyright_for_world(self): result = self.client.get_copyright_for_world() assert len(result.general_copyrights) > 0 copyrights = result.general_copyrights[0] assert "TomTom" in copyrights assert len(result.regions) > 0 - - -if __name__ == "__main__" : - testArgs = [ "-v" , "-s" ] if len(sys.argv) == 1 else sys.argv[1:] - #testArgs = [ "-s" , "-n" , "auto" , "--dist=loadscope" ] if len(sys.argv) == 1 else sys.argv[1:] - #pytest-xdist: -n auto --dist=loadscope - #pytest-parallel: --tests-per-worker auto - #print( "testArgs={}".format(testArgs) ) - - pytest.main(args=testArgs) - - print("main() Leave") diff --git a/sdk/maps/azure-maps-search/samples/async_samples/sample_search_inside_geometry_async.py b/sdk/maps/azure-maps-search/samples/async_samples/sample_search_inside_geometry_async.py index e70bdeb21cee..ab39cbb641d8 100644 --- a/sdk/maps/azure-maps-search/samples/async_samples/sample_search_inside_geometry_async.py +++ b/sdk/maps/azure-maps-search/samples/async_samples/sample_search_inside_geometry_async.py @@ -19,7 +19,6 @@ import asyncio import os - subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") diff --git a/sdk/maps/tests.yml b/sdk/maps/tests.yml index 6f3c0c15bb33..73874fac5ff8 100644 --- a/sdk/maps/tests.yml +++ b/sdk/maps/tests.yml @@ -1,3 +1,4 @@ + trigger: none stages: From f7759ed32f61e6db172bb1ccb41d68ba00f483ad Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Mon, 26 Sep 2022 23:17:32 +0800 Subject: [PATCH 08/14] Add recording files --- .../maps/render/aio/_render_client_async.py | 2 +- ...enderClienttest_get_copyright_caption.json | 34 + ...nderClienttest_get_copyright_for_tile.json | 103 + ...derClienttest_get_copyright_for_world.json | 3942 +++++++++++++++++ ...ttest_get_copyright_from_bounding_box.json | 682 +++ ...sRenderClienttest_get_map_attribution.json | 33 + ...TestMapsRenderClienttest_get_map_tile.json | 33 + ...tMapsRenderClienttest_get_map_tileset.json | 49 + 8 files changed, 4877 insertions(+), 1 deletion(-) create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_caption.json create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_tile.json create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_world.json create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_from_bounding_box.json create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_attribution.json create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tile.json create mode 100644 sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tileset.json diff --git a/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py index 6dbbf17ad599..a505d3a87847 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py @@ -287,7 +287,7 @@ async def get_map_static_image( """ _center=kwargs.pop("center", None) if _center is not None: - _center = f"{_center[0]}, {_center[1]}" + _center = [_center[0], _center[1]] _bbox = kwargs.pop("bounding_box_private", None) if _bbox is not None: diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_caption.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_caption.json new file mode 100644 index 000000000000..150b5a74991c --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_caption.json @@ -0,0 +1,34 @@ +{ + "Entries": [ + { + "RequestUri": "https://atlas.microsoft.com/map/copyright/caption/json?api-version=2022-08-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "subscription-key": "AzureMapsSubscriptionKey", + "User-Agent": "azsdk-python-maps-render/unknown Python/3.9.13 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "max-age=86400", + "Content-Length": "81", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 26 Sep 2022 15:11:13 GMT", + "ETag": "W/\u0022f3cfa19fc3c68912b94faa097ee62351\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-ms-azuremaps-region": "West US 2", + "X-MSEdge-Ref": "Ref A: 2C66E332CDE04E8A9730F83EE93FF3E2 Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:13Z" + }, + "ResponseBody": { + "formatVersion": "0.0.1", + "copyrightsCaption": "\u00A9 1992 - 2022 TomTom." + } + } + ], + "Variables": {} +} diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_tile.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_tile.json new file mode 100644 index 000000000000..0d38215b621b --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_tile.json @@ -0,0 +1,103 @@ +{ + "Entries": [ + { + "RequestUri": "https://atlas.microsoft.com/map/copyright/tile/json?api-version=2022-08-01\u0026zoom=6\u0026x=9\u0026y=22\u0026text=yes", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "subscription-key": "AzureMapsSubscriptionKey", + "User-Agent": "azsdk-python-maps-render/unknown Python/3.9.13 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "max-age=86400", + "Content-Length": "18516", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 26 Sep 2022 15:11:13 GMT", + "ETag": "W/\u00229de0508ecdba66c786311c93a8d63f16\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-ms-azuremaps-region": "West US 2", + "X-MSEdge-Ref": "Ref A: 878FECD5265E4C1C80048C76DBF4B6CB Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:13Z" + }, + "ResponseBody": { + "formatVersion": "0.0.1", + "generalCopyrights": [ + "\u00A9 1992 - 2022 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection, database right protection and other intellectual property rights owned by TomTom or its suppliers. The use of this material is subject to the terms of a license agreement. Any unauthorized copying or disclosure of this material will lead to criminal and civil liabilities.", + "Data Source \u00A9 2022 TomTom", + "based on" + ], + "regions": [ + { + "country": { + "ISO3": "CAN", + "label": "Canada" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom. The product includes information copied with permission from Canadian authorities, including \u00A9 Canada Post Corporation. All rights reserved. The use of this material is subject to the terms of a License Agreement. You will be held liable for any unauthorized copying or disclosure of this material.", + "The following copyright notice applies to the use of Post- FSA layer and 6-digit layer: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom. The product includes information copied with permission from Canadian authorities, including \u00A9 Canada Post Corporation, All rights reserved. The use of this material is subject to the terms of a License Agreement. You will be held liable for any unauthorized copying or disclosure of this material. The following copyright notice applies to the use of Points of Interest: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. Portions of the POI database contained in Points of Interest North America have been provided by Neustar Localeze The following copyright notice applies to the use of Telecommunications: \u00A9 2021 Pitney Bowes Software Inc. All rights reserved. This product contains information and/or data of iconectiv, licensed to be included herein. Copyright \u00A9 2021 iconectiv. All rights reserved. The following copyright notice applies to the use of Logistics: \u00A9 1992 \u2013 2021 TomTom. Truck Attribute Data \u00A9 2004 - 2021 ProMiles Software Development Corporation. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom.", + "The 6-digit alpha/numeric Canadian Postal Codes contained in any Licensed Product cannot be used for bulk mailing of items through the Canadian postal system. Furthermore, the 6-digit alpha/numeric Canadian Postal Codes must be wholly contained in the Authorized Application and shall not be extractable. Canadian Postal Codes cannot be displayed or used for postal code look-up on the Internet, nor can they be extracted or exported from any application to be utilized in the creation of any other data set or application. Notwithstanding the above, an End User may optionally correct or derive Canadian Postal Codes using the Authorized Application, but only as part of the address information for locations (e.g.: of delivery points and depots) that have been set up in the Authorized Application, and optionally extract data for fleet management purposes.", + "This product contains information adapted from Statistics Canada: Boundary Files, 2016 Census; Road Network File, 2018; and Census Population and Dwelling Count Highlight Tables, 2016 Census. This does not constitute an endorsement by Statistics Canada of this product.", + "Contains information licensed under Open Government Licence \u2013 Canada.", + "Contains data made available by GeoNames licensed under CC-BY 4.0. For more information visit http://www.geonames.org/.", + "Contains information provided by TransLink (South Coast British Columbia Transportation Authority) under the modified open GTFS Data Terms of Use Agreement. For specifics: https://developer.translink.ca/ServicesGtfs/GtfsData", + "Contains information licensed under Open Government Licence: * Vancouver * City of Victoria * British Columbia * City of Surrey * Kamloops * Nanaimo * City of Westminster * City of Prince George * Burnaby * City of Kelowna * Maple Ridge * North Vancouver" + ] + }, + { + "country": { + "ISO3": "OCP", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OUP", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "USA", + "label": "United States" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "The following copyright notice applies to the use of Post- FSA layer and 6-digit layer: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom. The product includes information copied with permission from Canadian authorities, including \u00A9 Canada Post Corporation, All rights reserved. The use of this material is subject to the terms of a License Agreement. You will be held liable for any unauthorized copying or disclosure of this material. The following copyright notice applies to the use of Points of Interest: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. Portions of the POI database contained in Points of Interest North America have been provided by Neustar Localeze The following copyright notice applies to the use of Telecommunications: \u00A9 2021 Pitney Bowes Software Inc. All rights reserved. This product contains information and/or data of iconectiv, licensed to be included herein. Copyright \u00A9 2021 iconectiv. All rights reserved. The following copyright notice applies to the use of Logistics: \u00A9 1992 \u2013 2021 TomTom. Truck Attribute Data \u00A9 2004 - 2021 ProMiles Software Development Corporation. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom.", + "\u00A9 United States Postal Service 2021", + "You shall not use the Municipal Boundary layer of the Administrative Areas product to create or derive applications which are used by third parties for the purpose of tariff, tax jurisdiction, or tax rate determination for a particular address or range of addresses.", + "This product is built on basis on the following elevation data: SRTM, GTOPO, NED data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview", + "This product is built on basis on the following elevation data: 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department of Commerce, National Oceanic and Atmospheric Administration, National Geophysical Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html", + "Contains data made available by City of Everett, WA with the following disclaimer:", + "\u0022The data made available here has been modified for use from its original source, which is the City of Everett. Neither the City of Everett nor the Information Technology Department makes any claims as to the completeness, timeliness, accuracy or content of any data contained in this application; makes any representation of any kind, including, but not limited to, warranty of the accuracy or fitness for a particular use; nor are any such warranties to be implied or inferred with respect to the information or data furnished herein. The data is subject to change as modifications and updates are complete. It is understood that the information contained in the web feed is being used at one\u0027s own risk.\u0022 For specifics, please reference: https://data.everettwa.gov/" + ] + } + ] + } + } + ], + "Variables": {} +} diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_world.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_world.json new file mode 100644 index 000000000000..c53d91a26267 --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_world.json @@ -0,0 +1,3942 @@ +{ + "Entries": [ + { + "RequestUri": "https://atlas.microsoft.com/map/copyright/world/json?api-version=2022-08-01\u0026text=yes", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "subscription-key": "AzureMapsSubscriptionKey", + "User-Agent": "azsdk-python-maps-render/unknown Python/3.9.13 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "max-age=86400", + "Content-Length": "912858", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 26 Sep 2022 15:11:14 GMT", + "ETag": "W/\u00225f623b123f86e7eaac582e7d4b3dbda4\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-ms-azuremaps-region": "West US 2", + "X-MSEdge-Ref": "Ref A: CD9AE628EE7F46D2BB7F729F152B9574 Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:14Z" + }, + "ResponseBody": { + "formatVersion": "0.0.1", + "generalCopyrights": [ + "\u00A9 1992 - 2022 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection, database right protection and other intellectual property rights owned by TomTom or its suppliers. The use of this material is subject to the terms of a license agreement. Any unauthorized copying or disclosure of this material will lead to criminal and civil liabilities.", + "Data Source \u00A9 2022 TomTom", + "based on" + ], + "regions": [ + { + "country": { + "ISO3": "ABW", + "label": "Aruba" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "AFG", + "label": "Afghanistan" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "AGO", + "label": "Angola" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "AIA", + "label": "Anguilla" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ALB", + "label": "Albania" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "AND", + "label": "Andorra" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ARE", + "label": "United Arab Emirates" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data from Dubai Municipality." + ] + }, + { + "country": { + "ISO3": "ARG", + "label": "Argentina" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ARM", + "label": "Armenia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ASM", + "label": "American Samoa" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "The following copyright notice applies to the use of Post- FSA layer and 6-digit layer: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom. The product includes information copied with permission from Canadian authorities, including \u00A9 Canada Post Corporation, All rights reserved. The use of this material is subject to the terms of a License Agreement. You will be held liable for any unauthorized copying or disclosure of this material. The following copyright notice applies to the use of Points of Interest: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. Portions of the POI database contained in Points of Interest North America have been provided by Neustar Localeze The following copyright notice applies to the use of Telecommunications: \u00A9 2021 Pitney Bowes Software Inc. All rights reserved. This product contains information and/or data of iconectiv, licensed to be included herein. Copyright \u00A9 2021 iconectiv. All rights reserved. The following copyright notice applies to the use of Logistics: \u00A9 1992 \u2013 2021 TomTom. Truck Attribute Data \u00A9 2004 - 2021 ProMiles Software Development Corporation. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom.", + "\u00A9 United States Postal Service 2021", + "You shall not use the Municipal Boundary layer of the Administrative Areas product to create or derive applications which are used by third parties for the purpose of tariff, tax jurisdiction, or tax rate determination for a particular address or range of addresses.", + "This product is built on basis on the following elevation data: SRTM, GTOPO, NED data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview", + "This product is built on basis on the following elevation data: 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department of Commerce, National Oceanic and Atmospheric Administration, National Geophysical Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html" + ] + }, + { + "country": { + "ISO3": "ATA", + "label": "Antarctica" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ATF", + "label": "French Southern and Antarctic Lands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ATG", + "label": "Antigua and Barbuda" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "AUS", + "label": "Australia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Incorporates modified data from G-NAF \u00A9PSMA Australia Limited licensed by the Commonwealth of Australia under the Open Geo-coded National Address File (G-NAF) End User Licence Agreement. For more information visit https://data.gov.au/dataset/geocoded-national-address-file-g-naf", + "Contains modified hospitals made available by Western Australia Department of Health. For more information visit https://catalogue.data.wa.gov.au/dataset/health-establishments", + "Contains heavy vehicle route information made available from state road controlling authorities as described below and published by NHVR on their route planner. For more information see https://www.nhvr.gov.au/road-access/route-planner", + "Contains data that is available free of charge from www.transperth.wa.gov.au", + "Contains data made available under open licence from https://www.data.brisbane.qld.gov.au/data/dataset/road-restrictions", + "Contains data licensed under CC-BY 2.5 AU. For more information visit: * Australian Department of Industry, Science, Energy and Resources https://data.gov.au/data/dataset/ab59e562-9cbc-410d-a9cc-d74934d302c1", + "Contains data licensed under CC-BY 3.0 AU. For more information visit: * Queensland Department of Transport and Main Roads http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7bC7CA73D1-D7CD-4B36-BE2B-0A9AEFC770DF%7d, http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7b2757F8EA-5B2F-4F03-902F-F9D7D038BF1B%7d, http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={2757F8EA-5B2F-4F03-902F-F9D7D038BF1B} * https://www.data.qld.gov.au/dataset/state-controlled-roads-queensland, http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7B984B2531-17D6-4E3D-A04A-3BEB9407BBA3%7D * https://www.publications.qld.gov.au/dataset/transport-of-dangerous-goods-by-road/resource/de4f110c-c007-496e-80a9-9b0f5a1aec89http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={14D6B946-F361-4CE7-B156-EA8C324866DC} * Southern Grampians Shire Council https://data.gov.au/dataset/ds-dga-ff90cad8-bbfa-4c62-a957-54da3514f0e1 * SA Department of Planning Transport and Infrastructure https://www.dpti.sa.gov.au/ravnet * NSW Spatial Services https://sdi.nsw.gov.au/catalog/search/resource/details.page?uuid=%7B144289DD-004C-4F66-ABD4-4F269258C677%7D, https://sdi.nsw.gov.au/catalog/search/resource/details.page?uuid={C5FCA09F-F919-4975-9D8A-B3F3BA82E06B}, http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/address_data and https://www.spatial.nsw.gov.au/mapping_and_imagery/address_data * NSW Roads and Maritime Service https://data.nsw.gov.au/data/dataset/restricted-access-vehicle-map * NSW Ministry of Health https://data.nsw.gov.au/data/dataset/nsw-health-services * Department of Human Services https://data.gov.au/dataset/location-of-medicare-offices \u0026 https://data.gov.au/dataset/location-of-centrelink-offices * Department of Social Services https://data.gov.au/dataset/national-public-toilet-map * City of Ballarat https://data.gov.au/dataset/ballarat-reserves * Land Tasmania https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=\u0026groupName=\u0026bboxNorth=\u0026bboxWest=\u0026bboxSouth=\u0026bboxEast=\u0026query=road\u002Bsegments\u0026_keywordCategory=-1\u0026isTasmania=true\u0026custodian=\u0026detailRecordUID=1ab7e34f-811c-4521-a549-212f295acc97\u0026searchCriteriaURL=query%3Droad\u002Bsegments%26perPage%3D10%26sortBy%3DTitle%3AASC, http://listdata.thelist.tas.gov.au/opendata/index.html, https://data.thelist.tas.gov.au/datagn/srv/eng/main.home?uuid=cbd6d180-024b-4ff3-977c-5efd9cc58ca5 , https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=\u0026groupName=\u0026bboxNorth=\u0026bboxWest=\u0026bboxSouth=\u0026bboxEast=\u0026query=speed\u0026_keywordCategory=-1\u0026isTasmania=true\u0026custodian=\u0026detailRecordUID=707db3e9-b4aa-4651-8be2-b11a07f89d4d\u0026searchCriteriaURL=query%3Dspeed%26perPage%3D10%26sortBy%3DTitle%3AASC%20, https://data.thelist.tas.gov.au/datagn/srv/eng/main.home?uuid=707db3e9-b4aa-4651-8be2-b11a07f89d4d, https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=\u0026groupName=\u0026bboxNorth=\u0026bboxWest=\u0026bboxSouth=\u0026bboxEast=\u0026sc_tc_code=structure\u0026sc_tc_code=transportation\u0026sc_tc_code=utilitiesCommunication\u0026query=\u0026_keywordCategory=-1\u0026isTasmania=true\u0026custodian=\u0026detailRecordUID=99c36d4b-7616-436c-84bd-a4a1877fa3dc\u0026searchCriteriaURL=query%3D%26perPage%3D10%26sortBy%3DTitle%3AASC%26sc_tc_code%3Dstructure%26sc_tc_code%3Dtransportation%26sc_tc_code%3DutilitiesCommunication, https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=\u0026groupName=\u0026bboxNorth=\u0026bboxWest=\u0026bboxSouth=\u0026bboxEast=\u0026query=Structure\u002BHeight\u002BStructures\u0026_keywordCategory=-1\u0026isTasmania=true\u0026custodian=\u0026detailRecordUID=56b2d9bd-1f26-4163-b93a-61c7d2be218c\u0026searchCriteriaURL=query%3DStructure\u002BHeight\u002BStructures%26perPage%3D10%26sortBy%3DTitle%3AASC and https://services.thelist.tas.gov.au/arcgis/rest/services/Public/OpenDataWFS/MapServer/42 * City of Gold Coast http://data-goldcoast.opendata.arcgis.com/datasets/4cd43781770e44258fe72014d786bb52_0 and https://data-goldcoast.opendata.arcgis.com/datasets/ab72b03757444f4c9865c1b1fd7087ae_0 * City of Launceston https://data-launceston.opendata.arcgis.com/datasets/load-limits and https://opendata.launceston.tas.gov.au/datasets/speed-limits * Australian Government https://www.australia.gov.au/about-australia/facts-and-figures/time-zones-and-daylight-saving", + "Contains data licensed under CC-BY 4.0. For more information visit: * Queensland Department of Natural Resources, Mines \u0026 Energy https://www.data.qld.gov.au/ * SA Department of Planning Transport and Infrastructure https://data.sa.gov.au/ * Victoria Department of Environment, Land, Water \u0026 Planning https://data.vic.gov.au/ * WA Mainroads https://portal-mainroads.opendata.arcgis.com/ and https://catalogue.data.wa.gov.au/ * ACT Environment, Planning and Sustainable Development Directorate https://www.data.act.gov.au/ * Geoscience Australia https://www.ga.gov.au/ * Commonwealth of Australia https://data.gov.au/ * Australian Capital Territory https://actmapi-actgov.opendata.arcgis.com/ * Transport Canberra Light Rail https://www.data.act.gov.au/ * City of Darwin https://open-darwin.opendata.arcgis.com/ * Rockhampton Regional Council https://data.gov.au// * Tasmanian Department of State Growth https://data.gov.au/ * Department of Health https://data.gov.au/ * Department of Finance, Services \u0026 Innovation https://www.gnb.nsw.gov.au/ * Victoria Department of Health and Human Services https://data.vic.gov.au/ * Queensland Health https://www.data.qld.gov.au/ * SA Health https://data.sa.gov.au/ * Health ACT https://www.data.act.gov.au/ * Brisbane City Council https://www.data.brisbane.qld.gov.au/ * City of Melbourne https://data.melbourne.vic.gov.au/ * Vicroads http://api.vicroads.vic.gov.au/, http://vicroadsopendata-vicroadsmaps.opendata.arcgis.com/ and https://data.vic.gov.au/ * ACT Education Directorate https://www.data.act.gov.au/ * Queensland Department of Education https://www.data.qld.gov.au/ * Victoria Department of Education and Training https://www.data.vic.gov.au/ * NSW Department of Education https://data.cese.nsw.gov.au/ * SA Department for Education https://data.sa.gov.au/ * Roads ACT https://www.data.act.gov.au/ * State of NSW (NSW Police Force) https://www.police.nsw.gov.au/ * Environment and Planning Directorate, Transport Canberra and City Services, Emergency Services Agency - ACT Government https://actmapi-actgov.opendata.arcgis.com/ * NSW Health https://www.health.nsw.gov.au/ * Transport Canberra and City Services https://www.data.act.gov.au/ * Transport Canberra https://www.transport.act.gov.au/ * Northern Territory Department of Infrastructure, Planning and Logistics https://dipl.nt.gov.au/ * Public Transport Victoria https://www.data.vic.gov.au/ * Queensland Department of Transport and Main Roads https://www.data.qld.gov.au/ * Transport for New South Wales https://opendata.transport.nsw.gov.au/ * SA Department for Infrastructure and Transport https://data.sa.gov.au/ * Action Buses https://www.transport.act.gov.au * Adelaide Metro https://data.sa.gov.au * Canberra Metro Light Rail https://www.transport.act.gov.au * Queensland Translink https://www.data.qld.gov.au * Australian Department of Foreign Affairs and Trade https://www.dfat.gov.au/ * New South Wales Legislation https://www.legislation.nsw.gov.au/ * City of Hobart https://data-1-hobartcc.opendata.arcgis.com/ * Victoria Department of Transport https://data-exchange.vicroads.vic.gov.au * State of Western Australia (Department of Mines, Industry Regulation and Safety) https://www.dmirs.wa.gov.au/" + ] + }, + { + "country": { + "ISO3": "AUT", + "label": "Austria" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 BEV, GZ 1368/2003", + "The location and event code (version 3.4) has been provided by ASFINAG.", + "Contains data licensed under CC BY 3.0 AT. For more information visit: * City of Vienna https://www.data.gv.at * Geoland https://www.data.gv.at/ * BEV: \u00A9 \u00D6sterreichisches Adressregister, 01.10.2019. http://www.bev.gv.at/ * Open Government Data Wien https://open.wien.gv.at/" + ] + }, + { + "country": { + "ISO3": "AZE", + "label": "Azerbaijan" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BDI", + "label": "Burundi" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BEL", + "label": "Belgium" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under Free Open Data License Vlaanderen. For more information visit: * CRAB Adressenlijst https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=6EF348E1-69EB-4CAD-8CCD-1C68099AFCF3 * CRAB Stratenlijst https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=FBC603AE-87DC-4418-B16D-832CE7B30335 * Grootschalig Referentiebestand (GRB) https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=7C823055-7BBF-4D62-B55E-F85C30D53162 * 3D GRB https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=42ac31a7-afe6-44c4-a534-243814fe5b58 * AGIV Aerial images https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=0ffd5eee-c197-4f8f-b491-b01bd1792f7c * Wegenregister Flanders and Brussels https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=49515fac-068f-4b41-a4ac-8e29d43df696 * School and University data", + "http://opendataforum.info/Docs/Modellicentie%202%20Gratis%20Open%20Data%20Licentie.htm * City of Antwerp http://opendata.antwerpen.be/gratis-open-data-licentie * Toerisme Vlaanderen http://www.toerismevlaanderen.be/opendata * Gipod https://overheid.vlaanderen.be/sites/default/files/documenten/ict-egov/licenties/hergebruik/modellicentie_gratis_hergebruik_v1_0.html", + "Contains data licensed under CIRB - CIBG under Open Data License. For more information visit: * CIRB-CIBG APT\u0027s http://www.bric.irisnet.be/en/our-solutions/urbis-solutions/download * Brussels Mobility Zones 30 (30 km/h zones) http://data-mobility.brussels/mobigis/nl/#", + "Contains data licensed under CC-BY 4.0. For more information visit: * TEC (Public Transport Stops) http://opendata.awt.be/dataset/tec" + ] + }, + { + "country": { + "ISO3": "BEN", + "label": "Benin" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BES", + "label": "Bonaire, Sint Eustatius and Saba" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BFA", + "label": "Burkina Faso" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BGD", + "label": "Bangladesh" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BGR", + "label": "Bulgaria" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BHR", + "label": "Bahrain" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "The product contains \u0027Points of Interest\u0027 (POI) data of Bahrain provided by the iGA via www.data.gov.bh and governed by the Terms of Use available at http://www.data.gov.bh/en/TermsOfUse" + ] + }, + { + "country": { + "ISO3": "BHS", + "label": "Bahamas" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BIH", + "label": "Bosnia-Herzegovina" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BLM", + "label": "Saint Barthelemy" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BLR", + "label": "Republic of Belarus" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 Source data. State committee on property of the Republic of Belarus, 2019 \u00A9 Republic unitary organization Belgeodsia, 2019" + ] + }, + { + "country": { + "ISO3": "BLZ", + "label": "Belize" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BMU", + "label": "Bermuda" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BOL", + "label": "Bolivia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BRA", + "label": "Brazil" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BRB", + "label": "Barbados" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BRN", + "label": "Brunei" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BTN", + "label": "Bhutan" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BVT", + "label": "Bouvet Island" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BWA", + "label": "Botswana" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "CAF", + "label": "Central African Republic" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "CAN", + "label": "Canada" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom. The product includes information copied with permission from Canadian authorities, including \u00A9 Canada Post Corporation. All rights reserved. The use of this material is subject to the terms of a License Agreement. You will be held liable for any unauthorized copying or disclosure of this material.", + "The following copyright notice applies to the use of Post- FSA layer and 6-digit layer: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom. The product includes information copied with permission from Canadian authorities, including \u00A9 Canada Post Corporation, All rights reserved. The use of this material is subject to the terms of a License Agreement. You will be held liable for any unauthorized copying or disclosure of this material. The following copyright notice applies to the use of Points of Interest: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. Portions of the POI database contained in Points of Interest North America have been provided by Neustar Localeze The following copyright notice applies to the use of Telecommunications: \u00A9 2021 Pitney Bowes Software Inc. All rights reserved. This product contains information and/or data of iconectiv, licensed to be included herein. Copyright \u00A9 2021 iconectiv. All rights reserved. The following copyright notice applies to the use of Logistics: \u00A9 1992 \u2013 2021 TomTom. Truck Attribute Data \u00A9 2004 - 2021 ProMiles Software Development Corporation. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom.", + "The 6-digit alpha/numeric Canadian Postal Codes contained in any Licensed Product cannot be used for bulk mailing of items through the Canadian postal system. Furthermore, the 6-digit alpha/numeric Canadian Postal Codes must be wholly contained in the Authorized Application and shall not be extractable. Canadian Postal Codes cannot be displayed or used for postal code look-up on the Internet, nor can they be extracted or exported from any application to be utilized in the creation of any other data set or application. Notwithstanding the above, an End User may optionally correct or derive Canadian Postal Codes using the Authorized Application, but only as part of the address information for locations (e.g.: of delivery points and depots) that have been set up in the Authorized Application, and optionally extract data for fleet management purposes.", + "This product contains information adapted from Statistics Canada: Boundary Files, 2016 Census; Road Network File, 2018; and Census Population and Dwelling Count Highlight Tables, 2016 Census. This does not constitute an endorsement by Statistics Canada of this product.", + "Contains information licensed under Open Government Licence \u2013 Canada.", + "Contains data made available by GeoNames licensed under CC-BY 4.0. For more information visit http://www.geonames.org/.", + "Contains information licensed under the Open Data License \u2013 City of Grande Prairie.", + "Contains information licensed under the Open Data License \u2013 City of Airdrie.", + "Contains information licensed under the Open Data License \u2013 Town of Cochrane.", + "Contains information licensed under the Open Data License. \u2013 The City of Red Deer", + "Contains information licensed under Open Government Licence: * Strathcona County * County of Grand Prairie * City of Calgary * Banff * City of Grant Prairie", + "Contains information provided by TransLink (South Coast British Columbia Transportation Authority) under the modified open GTFS Data Terms of Use Agreement. For specifics: https://developer.translink.ca/ServicesGtfs/GtfsData", + "Contains information licensed under Open Government Licence: * Vancouver * City of Victoria * British Columbia * City of Surrey * Kamloops * Nanaimo * City of Westminster * City of Prince George * Burnaby * City of Kelowna * Maple Ridge * North Vancouver", + "Contains public sector datasets made available under the City of Brandon\u2019s Open Data License.", + "Contains information licensed under the Open Government License \u2013 Winnipeg.", + "Contains information licensed under Open Government Licence: * New Brunswick * Saint John", + "Contains information licenced under the Open Government License \u2013 Halifax.", + "Contains public sector Datasets made available under the City of Yellowknife\u2019s Open Data License v.1.", + "Contains information provided by the City of Guelph under an open government license.", + "Contains public sector Data made available under the City of Hamilton\u2019s Open Data Licence.", + "Contains information licensed under the Open Data Licence \u2013 City of Greater Sudbury.", + "Contains information licensed under the Open Data Licence \u2013 City of Kingston.", + "Contains information licensed under the Grey County Open Data Licence.", + "Contains information licensed under Open Government Licence: * Toronto * Haldimand County * Niagra Region * Town of Oakville * The Corporation of the City of Windsor * The Corporation of the Municipality of Chatham-Kent * City of Welland * Brantford * Township of The Archipelago * City of Lambton * Barrie * City of Cambridge * City of Ottawa * The Corporation of the City of Oshawa * The Corporation of the County of Hastings", + "Contains information licensed under the Open Government Licence \u2013 Prince Edward Island.", + "This product contains information licensed under the Le minist\u00E8re des Transports de la Mobilit\u00E9 durable et de l\u0027\u00C9lectrification des Transports du Qu\u00E9bec (Transport Qu\u00E9bec).", + "Contains data for the Province of Quebec: \u00A9 Gouvernement du Qu\u00E9bec.", + "Contains information provided by Soci\u00E9t\u00E9 de transport de Montr\u00E9al (STM) under the GTFS Data Terms of Use Agreement.", + "Contains information provided by Montr\u00E9al Metropolitan Transportation Agency (ATM) under the License of Open Data L\u0027agence M\u00E9tropolitaine de Transport (AMT).", + "Contains data licensed under CC-BY 4.0. For more information visit: * Gatineau, QC * Laval, QC * Longueuil, QC * Montreal, QC * Rimouski, QC", + "Contains information licensed under Open Government Licence: * City of Regina * City of Yorkton" + ] + }, + { + "country": { + "ISO3": "CCK", + "label": "Cocos (Keeling) Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "CHE", + "label": "Switzerland" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 Swisstopo", + "Contains data licensed under CC BY. For more information visit: * SITG https://opendata.swiss/ * BFS (eidgen\u00F6ssisches Geb\u00E4ude- und Wohnungsregister) https://data.geo.admin.ch/ * BAV https://opendata.swiss/de", + "Contains data licensed under CC Zero. For more information visit: * the city of Z\u00FCrich https://data.stadt-zuerich.ch/", + "Contains data licensed under CC BY ASK. For more information visit: * swisstopo https://opendata.swiss/de" + ] + }, + { + "country": { + "ISO3": "CHL", + "label": "Chile" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "CHN", + "label": "China" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under Open Data Government v1.0.", + "Contains datasets made available by DATA.GOV.HK. under the following open data license: https://data.gov.hk/en/terms-and-conditions", + "Contains datasets made available by HONG KONG GEODATA STORE under the following open data license: https://geodata.gov.hk/gs/?p=terms_and_conditions", + "You agree that any Licensed Product which contains data of India may be subject to additional terms and conditions which shall be provided to You when available to TomTom. India data shall not be altered or changed during Your product creation / publication process. India data may not be exported from India.", + "Macao Special Administrative Region Government \u2013 Cartography and Cadastre Bureau", + "This product contains Road Geometry data made available by Macao Special Administrative Region Government \u2013 Cartography and Cadastre Bureau: http://www.dscc.gov.mo/ENG/copyright.html.", + "This product contains traffic incident data made available by the Police Broadcasting Service of Taiwan under the following open data license: https://data.gov.tw/license", + "Contains source of the original data made available by National Land Surveying and Mapping Center, Ministry of the Interior.", + "Contains datasets made available by DATA.GOV.TW. licensed under Open Government Data License v1.0. For specifics, please reference: https://data.gov.tw/en/license" + ] + }, + { + "country": { + "ISO3": "CIV", + "label": "Cote d\u0027Ivoire" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "CMR", + "label": "Cameroon" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "COD", + "label": "Congo (DRC)" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "COG", + "label": "Congo-Brazzaville" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "COK", + "label": "Cook Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "COL", + "label": "Colombia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "COM", + "label": "Comoros" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "CPV", + "label": "Cabo Verde" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "CRI", + "label": "Costa Rica" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "CUB", + "label": "Cuba" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "CUW", + "label": "Cura\u00E7ao" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "CXR", + "label": "Christmas Island" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Incorporates modified data from G-NAF \u00A9PSMA Australia Limited licensed by the Commonwealth of Australia under the Open Geo-coded National Address File (G-NAF) End User Licence Agreement. For more information visit https://data.gov.au/dataset/geocoded-national-address-file-g-naf", + "Contains modified hospitals made available by Western Australia Department of Health. For more information visit https://catalogue.data.wa.gov.au/dataset/health-establishments", + "Contains heavy vehicle route information made available from state road controlling authorities as described below and published by NHVR on their route planner. For more information see https://www.nhvr.gov.au/road-access/route-planner", + "Contains data that is available free of charge from www.transperth.wa.gov.au", + "Contains data made available under open licence from https://www.data.brisbane.qld.gov.au/data/dataset/road-restrictions", + "Contains data licensed under CC-BY 2.5 AU. For more information visit: * Australian Department of Industry, Science, Energy and Resources https://data.gov.au/data/dataset/ab59e562-9cbc-410d-a9cc-d74934d302c1", + "Contains data licensed under CC-BY 3.0 AU. For more information visit: * Queensland Department of Transport and Main Roads http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7bC7CA73D1-D7CD-4B36-BE2B-0A9AEFC770DF%7d, http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7b2757F8EA-5B2F-4F03-902F-F9D7D038BF1B%7d, http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={2757F8EA-5B2F-4F03-902F-F9D7D038BF1B} * https://www.data.qld.gov.au/dataset/state-controlled-roads-queensland, http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid=%7B984B2531-17D6-4E3D-A04A-3BEB9407BBA3%7D * https://www.publications.qld.gov.au/dataset/transport-of-dangerous-goods-by-road/resource/de4f110c-c007-496e-80a9-9b0f5a1aec89http://qldspatial.information.qld.gov.au/catalogue/custom/detail.page?fid={14D6B946-F361-4CE7-B156-EA8C324866DC} * Southern Grampians Shire Council https://data.gov.au/dataset/ds-dga-ff90cad8-bbfa-4c62-a957-54da3514f0e1 * SA Department of Planning Transport and Infrastructure https://www.dpti.sa.gov.au/ravnet * NSW Spatial Services https://sdi.nsw.gov.au/catalog/search/resource/details.page?uuid=%7B144289DD-004C-4F66-ABD4-4F269258C677%7D, https://sdi.nsw.gov.au/catalog/search/resource/details.page?uuid={C5FCA09F-F919-4975-9D8A-B3F3BA82E06B}, http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/address_data and https://www.spatial.nsw.gov.au/mapping_and_imagery/address_data * NSW Roads and Maritime Service https://data.nsw.gov.au/data/dataset/restricted-access-vehicle-map * NSW Ministry of Health https://data.nsw.gov.au/data/dataset/nsw-health-services * Department of Human Services https://data.gov.au/dataset/location-of-medicare-offices \u0026 https://data.gov.au/dataset/location-of-centrelink-offices * Department of Social Services https://data.gov.au/dataset/national-public-toilet-map * City of Ballarat https://data.gov.au/dataset/ballarat-reserves * Land Tasmania https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=\u0026groupName=\u0026bboxNorth=\u0026bboxWest=\u0026bboxSouth=\u0026bboxEast=\u0026query=road\u002Bsegments\u0026_keywordCategory=-1\u0026isTasmania=true\u0026custodian=\u0026detailRecordUID=1ab7e34f-811c-4521-a549-212f295acc97\u0026searchCriteriaURL=query%3Droad\u002Bsegments%26perPage%3D10%26sortBy%3DTitle%3AASC, http://listdata.thelist.tas.gov.au/opendata/index.html, https://data.thelist.tas.gov.au/datagn/srv/eng/main.home?uuid=cbd6d180-024b-4ff3-977c-5efd9cc58ca5 , https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=\u0026groupName=\u0026bboxNorth=\u0026bboxWest=\u0026bboxSouth=\u0026bboxEast=\u0026query=speed\u0026_keywordCategory=-1\u0026isTasmania=true\u0026custodian=\u0026detailRecordUID=707db3e9-b4aa-4651-8be2-b11a07f89d4d\u0026searchCriteriaURL=query%3Dspeed%26perPage%3D10%26sortBy%3DTitle%3AASC%20, https://data.thelist.tas.gov.au/datagn/srv/eng/main.home?uuid=707db3e9-b4aa-4651-8be2-b11a07f89d4d, https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=\u0026groupName=\u0026bboxNorth=\u0026bboxWest=\u0026bboxSouth=\u0026bboxEast=\u0026sc_tc_code=structure\u0026sc_tc_code=transportation\u0026sc_tc_code=utilitiesCommunication\u0026query=\u0026_keywordCategory=-1\u0026isTasmania=true\u0026custodian=\u0026detailRecordUID=99c36d4b-7616-436c-84bd-a4a1877fa3dc\u0026searchCriteriaURL=query%3D%26perPage%3D10%26sortBy%3DTitle%3AASC%26sc_tc_code%3Dstructure%26sc_tc_code%3Dtransportation%26sc_tc_code%3DutilitiesCommunication, https://www.thelist.tas.gov.au/app/content/data/geo-meta-data-record?profileType=\u0026groupName=\u0026bboxNorth=\u0026bboxWest=\u0026bboxSouth=\u0026bboxEast=\u0026query=Structure\u002BHeight\u002BStructures\u0026_keywordCategory=-1\u0026isTasmania=true\u0026custodian=\u0026detailRecordUID=56b2d9bd-1f26-4163-b93a-61c7d2be218c\u0026searchCriteriaURL=query%3DStructure\u002BHeight\u002BStructures%26perPage%3D10%26sortBy%3DTitle%3AASC and https://services.thelist.tas.gov.au/arcgis/rest/services/Public/OpenDataWFS/MapServer/42 * City of Gold Coast http://data-goldcoast.opendata.arcgis.com/datasets/4cd43781770e44258fe72014d786bb52_0 and https://data-goldcoast.opendata.arcgis.com/datasets/ab72b03757444f4c9865c1b1fd7087ae_0 * City of Launceston https://data-launceston.opendata.arcgis.com/datasets/load-limits and https://opendata.launceston.tas.gov.au/datasets/speed-limits * Australian Government https://www.australia.gov.au/about-australia/facts-and-figures/time-zones-and-daylight-saving", + "Contains data licensed under CC-BY 4.0. For more information visit: * Queensland Department of Natural Resources, Mines \u0026 Energy https://www.data.qld.gov.au/ * SA Department of Planning Transport and Infrastructure https://data.sa.gov.au/ * Victoria Department of Environment, Land, Water \u0026 Planning https://data.vic.gov.au/ * WA Mainroads https://portal-mainroads.opendata.arcgis.com/ and https://catalogue.data.wa.gov.au/ * ACT Environment, Planning and Sustainable Development Directorate https://www.data.act.gov.au/ * Geoscience Australia https://www.ga.gov.au/ * Commonwealth of Australia https://data.gov.au/ * Australian Capital Territory https://actmapi-actgov.opendata.arcgis.com/ * Transport Canberra Light Rail https://www.data.act.gov.au/ * City of Darwin https://open-darwin.opendata.arcgis.com/ * Rockhampton Regional Council https://data.gov.au// * Tasmanian Department of State Growth https://data.gov.au/ * Department of Health https://data.gov.au/ * Department of Finance, Services \u0026 Innovation https://www.gnb.nsw.gov.au/ * Victoria Department of Health and Human Services https://data.vic.gov.au/ * Queensland Health https://www.data.qld.gov.au/ * SA Health https://data.sa.gov.au/ * Health ACT https://www.data.act.gov.au/ * Brisbane City Council https://www.data.brisbane.qld.gov.au/ * City of Melbourne https://data.melbourne.vic.gov.au/ * Vicroads http://api.vicroads.vic.gov.au/, http://vicroadsopendata-vicroadsmaps.opendata.arcgis.com/ and https://data.vic.gov.au/ * ACT Education Directorate https://www.data.act.gov.au/ * Queensland Department of Education https://www.data.qld.gov.au/ * Victoria Department of Education and Training https://www.data.vic.gov.au/ * NSW Department of Education https://data.cese.nsw.gov.au/ * SA Department for Education https://data.sa.gov.au/ * Roads ACT https://www.data.act.gov.au/ * State of NSW (NSW Police Force) https://www.police.nsw.gov.au/ * Environment and Planning Directorate, Transport Canberra and City Services, Emergency Services Agency - ACT Government https://actmapi-actgov.opendata.arcgis.com/ * NSW Health https://www.health.nsw.gov.au/ * Transport Canberra and City Services https://www.data.act.gov.au/ * Transport Canberra https://www.transport.act.gov.au/ * Northern Territory Department of Infrastructure, Planning and Logistics https://dipl.nt.gov.au/ * Public Transport Victoria https://www.data.vic.gov.au/ * Queensland Department of Transport and Main Roads https://www.data.qld.gov.au/ * Transport for New South Wales https://opendata.transport.nsw.gov.au/ * SA Department for Infrastructure and Transport https://data.sa.gov.au/ * Action Buses https://www.transport.act.gov.au * Adelaide Metro https://data.sa.gov.au * Canberra Metro Light Rail https://www.transport.act.gov.au * Queensland Translink https://www.data.qld.gov.au * Australian Department of Foreign Affairs and Trade https://www.dfat.gov.au/ * New South Wales Legislation https://www.legislation.nsw.gov.au/ * City of Hobart https://data-1-hobartcc.opendata.arcgis.com/ * Victoria Department of Transport https://data-exchange.vicroads.vic.gov.au * State of Western Australia (Department of Mines, Industry Regulation and Safety) https://www.dmirs.wa.gov.au/" + ] + }, + { + "country": { + "ISO3": "CYM", + "label": "Cayman Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "CYP", + "label": "Cyprus" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under CC-BY 4.0. For more information visit: * GeoNames http://www.geonames.org/ * National Open data Portal Cyprus https://www.data.gov.cy/" + ] + }, + { + "country": { + "ISO3": "CZE", + "label": "Czechia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "DEU", + "label": "Germany" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 GeoBasis-DE / LDBV 2021", + "Contains data licensed under CC BY 3.0 DE. For more information visit: * Bayerisches Landesamt f\u00FCr Umwelt, www.lfu.bayern.de * Bayerische Vermessungsverwaltung, www.geodaten.bayern.de", + "Contains cartographic information made available by \u00A9 GeoBasis-DE / BKG 2018 (data modified). https://www.bkg.bund.de", + "Contains data licensed under dl-de-by-2.0. For more information visit: * Bezirksregierung K\u00F6ln, 2019, https://www.bezreg-koeln.nrw.de/ * geoportal-th.de (data modified), https://www.geoportal-th.de * Open.NRW \u2013 Das Open Government Portal f\u00FCr das Land Nordrhein-Westfalen\u201D; Landesamt f\u00FCr Natur, Umwelt und Verbraucherschutz Nordrhein-Westfalen, www.open.nrw * transparenz.hamburg.de (data modified), http://suche.transparenz.hamburg.de/ * Land NRW, 2018, https://www.wms.nrw.de/geobasis/wms_nw_dop?REQUEST=GetCapabilities\u0026SERVICE=WMS * Vermessungs- und Katasterverwaltung Rheinland-Pfalz, 2018, https://lvermgeo.rlp.de/de/ * LVermGeoRP, 2018, https://www.geoportal.rlp.de/", + "Contains data licensed under CC-BY 4.0. For more information visit: * \u201EOpen.NRW \u2013 Das Open Government Portal f\u00FCr das Land Nordrhein-Westfalen\u201D; Landesamt f\u00FCr Natur, Umwelt und Verbraucherschutz Nordrhein-Westfalen, www.open.nrw" + ] + }, + { + "country": { + "ISO3": "DJI", + "label": "Djibouti" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "DMA", + "label": "Dominica" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "DNK", + "label": "Denmark" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 DAV, violation of these copyrights shall cause legal proceedings", + "This product contains information from Styrelsen for Dataforsyning og Effektiviserings Adresse Web Services (AWS Suiten)", + "\u201DIndeholder data fra Styrelsen for Dataforsyning og Effektivisering\u0022; Stedsnavne, Vejmidte", + "\u201DIndeholder oplysninger fra Styrelsen for Dataforsyning og Effektivisering Adresse Web Services (AWS).\u201D", + "\u201DIndeholder data fra Styrelsen for Dataforsyning og Effektivisering\u0022; Stedsnavne" + ] + }, + { + "country": { + "ISO3": "DOM", + "label": "Dominican Republic" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "DZA", + "label": "Algeria" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data made available by GeoNames licensed under CC-BY 4.0. For more information visit: http://www.geonames.org/." + ] + }, + { + "country": { + "ISO3": "ECU", + "label": "Ecuador" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "EGY", + "label": "Egypt" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ERI", + "label": "Eritrea" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ESH", + "label": "Western Sahara" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ESP", + "label": "Spain" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "This product contains public transport stops and sports centers data made available by Ayuntamiento de Lorca under Legal Terms available here: http://datos.lorca.es/avisolegal/", + "This product contains several data made available by Ayuntamiento de Madrid under Legal Terms available here:", + "http://datos.madrid.es/portal/site/egob/menuitem.400a817358ce98c34e937436a8a409a0/?vgnextoid=b4c412b9ace9f310VgnVCM100000171f5a0aRCRD\u0026vgnextchannel=b4c412b9ace9f310VgnVCM100000171f5a0aRCRD\u0026vgnextfmt=default", + "This product contains public transport stops data \u201CPowered by EMT de Madrid\u201D under license terms available here:", + "https://www.crtm.es/licencia-de-uso", + "This product contains public transport stops data made available by Ayuntamiento de Zaragoza under Legal Terms available here:", + "https://www.zaragoza.es/ciudad/servicios/avisolegal.htm#condiciones", + "This product contains public transport stops \u201CPowered by CRTM\u201D under license terms available here:", + "http://www.crtm.es/licencia-de-uso", + "Contains data available on /nap.dgt.es/: * Direcci\u00F3n General de Tr\u00E1fico Madrid * Trafiko Zuzendaritza/Direcci\u00F3n de Tr\u00E1fico San Sebastian * Servei Catal\u00E0 de Tr\u00E0nsit Barcelona", + "Contains data licensed under CC-BY 3.0. For more information visit: * Ajuntament de El Prat de Llobregat https://seu-e.cat/web/elpratdellobregat/avis-legal * Xunta de Galicia https://abertos.xunta.gal/condicions-de-uso * Ayuntamiento de Getxo https://www.getxo.eus/es/gobierno-abierto/opndata/ * Ayuntamiento de C\u00E1ceres https://opendata.caceres.es/terminos * Diputaci\u00F3n de Pontevedra https://ide.depo.gal/web/idepo/aviso-legal * Junta de Castilla y Le\u00F3n https://datosabiertos.jcyl.es/web/es/datos-abiertos-castilla-leon.html * Ajuntament de Girona https://www.girona.cat/opendata/dataset * Ajuntament de Sabadell http://web.sabadell.cat/ * Ayuntamiento de Santa Cruz de Tenerife http://www.santacruzdetenerife.es/opendata/about * Gobierno Vasco https://opendata.euskadi.eus/general/-/informacion-legal-opendata/ * Ayuntamiento de Alcobendas https://datos.alcobendas.org/pages/aviso-legal * Ajuntament de Terrassa https://opendata.terrassa.cat/es/", + "Contains data licensed under CC-BY 4.0. For more information visit: * Ayuntamiento de Valencia http://www.valencia.es/ayuntamiento/DatosAbiertos.nsf/ * Ajuntament de Sant Feu de Llobregat http://opendata.santfeliu.cat/ca/normes-dus/#llicencia * Cartociudad http://www.cartociudad.es/portal/ * Nomecalles http://www.madrid.org/nomecalles/Inicio.icm * Ayuntamiento de Barcelona https://opendata-ajuntament.barcelona.cat/es/ * Gobierno de Navarra https://gobiernoabierto.navarra.es/es/open-data * Ayuntamiento de Vitoria-Gasteiz https://www.vitoria-gasteiz.org/j34-01w/catalogo/portada * Diputaci\u00F3n Foral de Guip\u00FAzcoa https://b5m.gipuzkoa.eus/web5000/es/cartoteca/conjuntos-datos/ * Diputaci\u00F3n Foral de Vizcaya https://www.opendatabizkaia.eus/es/catalogo * Instituto Geogr\u00E1fico Nacional https://www.ign.es/web/ign/portal/politica-datos * Consell Insular de Menorca https://menorca.tib.org/es/open-data * Gobierno de Arag\u00F3n https://opendata.aragon.es/" + ] + }, + { + "country": { + "ISO3": "EST", + "label": "Estonia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains map data made available by Estonian Land Board, 2019:", + "https://geoportaal.maaamet.ee/index.php?lang_id=2\u0026page_id=618\u0026plugin_act=litsents", + "This product contains information from TarkTee with license listed here: https://tarktee.mnt.ee/#/en/terms" + ] + }, + { + "country": { + "ISO3": "ETH", + "label": "Ethiopia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "FIN", + "label": "Finland" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "This product contains information from Finnish Transport agency, with license listed here:", + "https://www.liikennevirasto.fi/web/en/open-data/terms-of-use#.W9GUg7puIjY", + "This product contains information from Finnish Population Registry, with license listed here:", + "https://www.avoindata.fi/data/en_GB/dataset/rakennusten-osoitetiedot-koko-suomi", + "Suomalaisten rakennusten osoitteet, postinumerot ja WGS84-koordinaatit by V\u00E4est\u00F6rekisterikeskus is licensed under a Creative Commons Attribution 4.0 International License.", + "Contains data licensed under CC-BY 4.0. For more information visit Fintraffic / digitraffic.fi https://www.digitraffic.fi" + ] + }, + { + "country": { + "ISO3": "FJI", + "label": "Fiji" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "FLK", + "label": "Falkland Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "FRA", + "label": "France" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "(navigation devices only) Michelin data \u00A9 Michelin 2019 The following copyright applies to the Advanced Navigable MAP, Address Points, 2D City Map and Buildings: Source: Direction g\u00E9n\u00E9rale des Finances Publiques \u2013 Cadastre; Updated 2019", + "Contains data licensed under Open License Version 1.0: * Ville de Toulouse * Rennes M\u00E9tropole * Grand Lyon dated from 1/3/2015 * Mulhouse Alsace Agglom\u00E9ration dated from 13/2/2015 * Grand Poitiers * Ville de Chassieu dated from October 2017 * Ville de Chennevi\u00E8res-sur-Marne * D\u00E9partement des Hauts-de-Seine * M\u00E9tropole Europ\u00E9enne de Lille dated from 21/2/2017 * Colmar Agglom\u00E9ration dated from 23/09/2016 * Minist\u00E8re des Solidarit\u00E9s et de la Sant\u00E9 dated from 17/3/2017 * Sodetrel dated from December 2017 * E.Leclerc dated from December 2017 * Parking EFFIA Stationnement dated from December 2017 * Centre national du cin\u00E9ma et de l\u0027image anim\u00E9e dated from 23/9/2016 * Communaut\u00E9 d\u0027Agglom\u00E9ration de Rambouillet Territoires dated from January 2017 * Lannion-Tr\u00E9gor Communaut\u00E9 * G\u00E9oGrandEst * Nissan dated from December 2017 * Seames dated from December 2017 * Syndicat Intercommunal des Energies du d\u00E9partement de la Loire dated from February 2017 * SOR\u00C9GIES dated from June 2017 * Syndicat D\u00E9partemental d\u2019Energie et d\u2019Equipement de la Vend\u00E9e dated from December 2017 * Minist\u00E8re de l\u2019Int\u00E9rieur dated from July 2018 * Minist\u00E8re des Sports * Office national d\u0027information sur les enseignements et les professions dated from December 2017 * Administration du Premier ministre dated from December 2017 * D\u00E9partement de Sa\u00F4ne-et Loire * Ville d\u2019Istres dated from December 2017 * Tesla dated from February 2017 * Syndicat D\u00E9partemental d\u0027Energies de la Manche dated from December 2017 * Syndicat D\u00E9partemental d\u0027Energie de Loire-Atlantique dated from December 2017 * M\u00E9tropole d\u0027Aix-Marseille-Provence * Ville de Montpellier", + "Contains data licensed under Open License Version 2.0: * Minist\u00E8re de la Transition \u00C9cologique * Ville d\u0027Issy-les-Moulineaux * Ville de Bayonne dated from 23/01/2018 * P\u00F4le Metropolitain du Pays de Brest dated from 1/3/2016 * Bordeaux M\u00E9tropole * Communaut\u00E9 d\u0027agglom\u00E9ration Arles Crau Camargue Montagnette dated from 29/4/2016 * Rennes M\u00E9tropole dated from 30/11/2016 * Angers Loire M\u00E9tropole dated from 21/9/2016 * D\u00E9partement de la Moselle dated from December 2017 * Ville de La Rochelle dated from 23/05/2012 * Grand Paris Seine Ouest dated from 01/02/2016 * Morbihan Energies dated from December 2017 * R\u00E9gion Bretagne dated from December 2017 * R\u00E9gie Culturelle de la R\u00E9gion Sud Provence-Alpes-C\u00F4te d\u0027Azur dated from December 2017 * Education Nationale * M\u00E9tropole du Grand Nancy * Toulouse M\u00E9tropole * Nantes M\u00E9tropole * M\u00E9tropole Europ\u00E9enne de Lille * Orl\u00E9ans M\u00E9tropole * Grand Poitiers * D\u00E9partement des Hautes-de-Seine * D\u00E9partement de la Mayenne * Mulhouse Alsace Agglom\u00E9ration", + "Contains data licensed under la Licence de r\u00E9utilisation des donn\u00E9es num\u00E9ris\u00E9es d\u2019informations en temps r\u00E9el sur la circulation: * Minist\u00E8re de la Transition \u00C9cologique * Direction Interd\u00E9partementale des Routes d\u2019\u00CEle-de-France", + "Contains data licensed under le Code des relation sentre le public et l\u2019administration: * Communaut\u00E9 d\u0027Agglom\u00E9ration Maubeuge - Val de Sambre dated from September 2017 * Syndicat des \u00E9nergies de la Haute-Savoie dated from November 2017 * Syndicat d\u2019\u00E9nergie de l\u2019Oise dated from December 2017 * Syndicat d\u0027\u00E9nergie de l\u0027Orne dated from March 2017 * Syndicat D\u00E9partemental d\u0027Energie de la Haute-Garonne dated from December 2017 * Syndicat D\u00E9partemental d\u0027Energie des Hautes-Pyr\u00E9n\u00E9es dated from December 2017 * Syndicat D\u00E9partemental d\u0027Energies du Calvados dated from December 2017 * Syndicat D\u00E9partemental d\u0027Energie du Cher dated from December 2017 * Syndicat D\u00E9partemental d\u0027Energies de l\u0027Indre dated from December 2017 * Syndicat D\u00E9partemental d\u0027Equipement et d\u0027Energie du Finist\u00E8re dated from December 2017 * Syndicat D\u00E9partemental des Energies de Seine-et-Marne dated from March 2017 * Syndicat intercommunal d\u0027\u00E9nergie d\u0027Indre-et-Loire dated from December 2017 * Union des Secteurs d\u0027Energie du D\u00E9partement de l\u0027Aisne dated from December 2017 * Ville de Beauvais dated from March 2017", + "Contains data from D\u00E9partement de Hautes-Alpes. For more information visit: http://inforoute.hautes-alpes.fr/" + ] + }, + { + "country": { + "ISO3": "FRO", + "label": "Faroe Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "FSM", + "label": "Federated States of Micronesia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GAB", + "label": "Gabon" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GBR", + "label": "United Kingdom" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains Ordnance Survey data \u00A9 Crown copyright and database right 2018. Licensed under the Open Government Licence. The license can be found at:", + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "Contains Ordnance Survey data \u00A9 Crown copyright and database right 2018.", + "Contains Royal Mail data \u00A9 Royal Mail copyright and database right 2018.", + "Contains National Statistics data \u00A9 Crown copyright and database right 2018.", + "Licensed under the Open Government Licence. The license can be found at:", + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information (public transport stops data) licensed under the Open Government Licence v2.0. This is specified here: http://data.gov.uk/dataset/naptan", + "The license can be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", + "This product contains public sector information (publicly accessible charge points) licensed under the Open Government Licence v2.0. This is specified here: http://data.gov.uk/dataset/national-charge-point-registry", + "The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", + "This product contains Sports venues locations data made available by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area . The license can be found at: https://spogo.co.uk/active-places-license", + "This product contains data made available by the Northern Ireland Department of Education and licensed under the Open Government Licence v3.0. Data download page: http://apps.deni.gov.uk/appinstitutes The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains data made available by Historic England 2015. Contains Ordnance Survey data \u00A9 Crown copyright and database right 2015 The Historic England GIS Data contained in this material was obtained on 12/08/2015. The most publicly available up to date Historic England GIS Data can be obtained from: http://www.HistoricEngland.org.uk", + "Data download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx", + "The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html", + "This product contains designated Historic Asset GIS Data from the Welsh Historic Environment Service, licenced under the Open Government Licence. Data download page: http://lle.wales.gov.uk. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information licensed under the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information licensed under the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains data made available by Visit Wales and licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "Based upon the Ordnance Survey or Northern Ireland\u0027s data of 2019 with the permission of the Controller of Her Majesty\u0027s Stationary Office, \u00A9 Crown copyright and database rights." + ] + }, + { + "country": { + "ISO3": "GEO", + "label": "Georgia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "This product contains data from the National Agency of Public Registry under the Ministry of Justice of Georgia.", + "For more information visit: http://www.napr.gov.ge/" + ] + }, + { + "country": { + "ISO3": "GGY", + "label": "Guernsey" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains Ordnance Survey data \u00A9 Crown copyright and database right 2018. Licensed under the Open Government Licence. The license can be found at:", + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "Contains Ordnance Survey data \u00A9 Crown copyright and database right 2018.", + "Contains Royal Mail data \u00A9 Royal Mail copyright and database right 2018.", + "Contains National Statistics data \u00A9 Crown copyright and database right 2018.", + "Licensed under the Open Government Licence. The license can be found at:", + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information (public transport stops data) licensed under the Open Government Licence v2.0. This is specified here: http://data.gov.uk/dataset/naptan", + "The license can be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", + "This product contains public sector information (publicly accessible charge points) licensed under the Open Government Licence v2.0. This is specified here: http://data.gov.uk/dataset/national-charge-point-registry", + "The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", + "This product contains Sports venues locations data made available by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area . The license can be found at: https://spogo.co.uk/active-places-license", + "This product contains data made available by the Northern Ireland Department of Education and licensed under the Open Government Licence v3.0. Data download page: http://apps.deni.gov.uk/appinstitutes The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains data made available by Historic England 2015. Contains Ordnance Survey data \u00A9 Crown copyright and database right 2015 The Historic England GIS Data contained in this material was obtained on 12/08/2015. The most publicly available up to date Historic England GIS Data can be obtained from: http://www.HistoricEngland.org.uk", + "Data download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx", + "The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html", + "This product contains designated Historic Asset GIS Data from the Welsh Historic Environment Service, licenced under the Open Government Licence. Data download page: http://lle.wales.gov.uk. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information licensed under the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information licensed under the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains data made available by Visit Wales and licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/" + ] + }, + { + "country": { + "ISO3": "GHA", + "label": "Ghana" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GIB", + "label": "Gibraltar" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GIN", + "label": "Guinea" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GLP", + "label": "Guadeloupe" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GMB", + "label": "The Gambia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GNB", + "label": "Guinea-Bissau" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GNQ", + "label": "Equatorial Guinea" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GRC", + "label": "Greece" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GRD", + "label": "Grenada" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GRL", + "label": "Greenland" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GTM", + "label": "Guatemala" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GUF", + "label": "French Guiana" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "GUM", + "label": "Guam" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "The following copyright notice applies to the use of Post- FSA layer and 6-digit layer: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom. The product includes information copied with permission from Canadian authorities, including \u00A9 Canada Post Corporation, All rights reserved. The use of this material is subject to the terms of a License Agreement. You will be held liable for any unauthorized copying or disclosure of this material. The following copyright notice applies to the use of Points of Interest: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. Portions of the POI database contained in Points of Interest North America have been provided by Neustar Localeze The following copyright notice applies to the use of Telecommunications: \u00A9 2021 Pitney Bowes Software Inc. All rights reserved. This product contains information and/or data of iconectiv, licensed to be included herein. Copyright \u00A9 2021 iconectiv. All rights reserved. The following copyright notice applies to the use of Logistics: \u00A9 1992 \u2013 2021 TomTom. Truck Attribute Data \u00A9 2004 - 2021 ProMiles Software Development Corporation. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom.", + "\u00A9 United States Postal Service 2021", + "You shall not use the Municipal Boundary layer of the Administrative Areas product to create or derive applications which are used by third parties for the purpose of tariff, tax jurisdiction, or tax rate determination for a particular address or range of addresses.", + "This product is built on basis on the following elevation data: SRTM, GTOPO, NED data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview", + "This product is built on basis on the following elevation data: 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department of Commerce, National Oceanic and Atmospheric Administration, National Geophysical Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html" + ] + }, + { + "country": { + "ISO3": "GUY", + "label": "Guyana" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "HKG", + "label": "Hong Kong" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under Open Data Government v1.0.", + "Contains datasets made available by DATA.GOV.HK. under the following open data license: https://data.gov.hk/en/terms-and-conditions", + "Contains datasets made available by HONG KONG GEODATA STORE under the following open data license: https://geodata.gov.hk/gs/?p=terms_and_conditions" + ] + }, + { + "country": { + "ISO3": "HMD", + "label": "Heard Island and McDonald Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "HND", + "label": "Honduras" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "HRV", + "label": "Croatia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "HTI", + "label": "Haiti" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "HUN", + "label": "Hungary" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data under National Access Point Hungary." + ] + }, + { + "country": { + "ISO3": "IDN", + "label": "Indonesia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 Base data Bakosurtanal" + ] + }, + { + "country": { + "ISO3": "IMN", + "label": "Isle of Man" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains Ordnance Survey data \u00A9 Crown copyright and database right 2018. Licensed under the Open Government Licence. The license can be found at:", + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "Contains Ordnance Survey data \u00A9 Crown copyright and database right 2018.", + "Contains Royal Mail data \u00A9 Royal Mail copyright and database right 2018.", + "Contains National Statistics data \u00A9 Crown copyright and database right 2018.", + "Licensed under the Open Government Licence. The license can be found at:", + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information (public transport stops data) licensed under the Open Government Licence v2.0. This is specified here: http://data.gov.uk/dataset/naptan", + "The license can be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", + "This product contains public sector information (publicly accessible charge points) licensed under the Open Government Licence v2.0. This is specified here: http://data.gov.uk/dataset/national-charge-point-registry", + "The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", + "This product contains Sports venues locations data made available by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area . The license can be found at: https://spogo.co.uk/active-places-license", + "This product contains data made available by the Northern Ireland Department of Education and licensed under the Open Government Licence v3.0. Data download page: http://apps.deni.gov.uk/appinstitutes The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains data made available by Historic England 2015. Contains Ordnance Survey data \u00A9 Crown copyright and database right 2015 The Historic England GIS Data contained in this material was obtained on 12/08/2015. The most publicly available up to date Historic England GIS Data can be obtained from: http://www.HistoricEngland.org.uk", + "Data download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx", + "The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html", + "This product contains designated Historic Asset GIS Data from the Welsh Historic Environment Service, licenced under the Open Government Licence. Data download page: http://lle.wales.gov.uk. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information licensed under the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information licensed under the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains data made available by Visit Wales and licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/" + ] + }, + { + "country": { + "ISO3": "IND", + "label": "India" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "You agree that any Licensed Product which contains data of India may be subject to additional terms and conditions which shall be provided to You when available to TomTom. India data shall not be altered or changed during Your product creation / publication process. India data may not be exported from India." + ] + }, + { + "country": { + "ISO3": "IND.IND", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "You agree that any Licensed Product which contains data of India may be subject to additional terms and conditions which shall be provided to You when available to TomTom. India data shall not be altered or changed during Your product creation / publication process. India data may not be exported from India." + ] + }, + { + "country": { + "ISO3": "IRL", + "label": "Ireland" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 2019 GeoDirectory" + ] + }, + { + "country": { + "ISO3": "IRN", + "label": "Iran" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "IRQ", + "label": "Iraq" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ISL", + "label": "Iceland" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Based on data from the \u00DEj\u00F3\u00F0skr\u00E1 \u00CDslands.", + "Contains data licensed under UK Open Government License." + ] + }, + { + "country": { + "ISO3": "ISR", + "label": "Israel" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ISR.ISR", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ITA", + "label": "Italy" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under IODL 2.0. For more information visit: * Regione Lombardia. http://www.geoportale.regione.lombardia.it/en/home * Comune di Torino. http://aperto.comune.torino.it * Regione Veneto. For more information visit https://dati.veneto.it/ * Regione Autonoma Friuli Venezia Giulia. http://www.regione.fvg.it/rafvg/cms/RAFVG/ambiente-territorio/conoscere-ambiente-territorio/ * Regione Basilicata. http://dati.regione.basilicata.it/catalog/ * Regione Calabria. http://geoportale.regione.calabria.it/opendata * Comune di Reggio Calabria. http://dati.reggiocal.it/ * Ministero dell\u2019Istruzione. http://www.dati.gov.it * Regione Puglia. http://www.dataset.puglia.it/ * Comune di Verona. http://www.comune.verona.it * Comune di Vicenza. http://www.comune.vicenza.it", + "Contains data licensed under CC-BY 2.0 For more information visit: * Comune di Bari. http://opendata.comune.bari.it/dataset/sistema-informativo-territoriale-civilario-unico-comunaleContains data licensed under CC-BY 2.5. For more information visit * Comune di Milano. https://geoportale.comune.milano.it/sit/open-data/ and http://geodata-sitmilano.opendata.arcgis.com/ * Regione Toscana according to the legislation available at http://www.regione.toscana.it/documents/10180/492172/Decreto-2014_02_25n663.pdf/162db905-95fd-4b5e-bc41-88a629b5a3e5 and Regolamento http://raccoltanormativa.consiglio.regione.toscana.it/articolo?urndoc=urn:nir:regione.toscana:regolamento.giunta:2007-02-09;6/R\u0026pr=idx,0;artic,1;articparziale,0", + "http://dati.toscana.it/dataset/grafo-civici * Regione Emilia Romagna. http://geoportale.regione.emilia-romagna.it/it/catalogo/dati-cartografici/cartografia-di-base and http://geoportale.regione.emilia-romagna.it/it/catalogo/dati-cartografici/cartografia-di-base/database-topografico-regionale/gestione-viabilita-indirizzi/toponimi-e-numeri-civici * Regione Piemonte. http://www.geoportale.piemonte.it/geocatalogorp/?sca[]=r_piemon:da9b12ba-866a-4f0f-8704-5b7b753e4f15\u0026sezione=dwl * Agenzia Europea dell\u0027Ambiente http://data.europa.eu/euodp/it/data/dataset/data_urban-atlas", + "Contains data licensed under CC-BY 3.0. For more information visit: * Comune di Milano. https://www.comune.milano.it/wps/portal/ist/it/vivicitta/verde/parchi * Ministero dell\u2019Istruzione, dell\u2019Universit\u00E0 e della Ricerca MIURhttp://www.tper.it/azienda/tper-open-data * Agenzia per la Mobilit\u00E0 Roma http://www.agenziamobilita.roma.it/servizi/open-data/dataset.html * Comune di Firenze http://opendata.comune.fi.it/mobilita_sicurezza/dataset_0196.html and http://opendata.comune.fi.it/statistica_territorio/dataset_0040.html and http://opendata.comune.fi.it/mobilita_sicurezza/dataset_0139.html * Regione Umbria http://dati.umbria.it/ and http://www.umbriageo.regione.umbria.it/pagine/servizi-wms-attivi * Comune di Cesena http://www.datiopen.it/it/opendata/Comune_di_Cesena_Verde * Comune di Livorno http://www.datiopen.it/it/opendata/Comune_di_Livorno_Area_verde * Comune di Bologna http://dati.comune.bologna.it/node/201 and http://dati.comune.bologna.it/node/217 * Istituto Nazionale di Statistica http://www.istat.it/it/archivio/678 and http://datiopen.istat.it/", + "Contains data licensed under CC-BY 4.0. For more information visit: * Regione Veneto https://dati.veneto.it/ * Comune di Fano https://www.comune.fano.pu.it/index.php?id=2020 * Regione Toscana http://dati.toscana.it/ * Comune di Genova http://dati.comune.genova.it * Comune di Roma http://dati.comune.roma.it * Regione Piemonte http://www.geoportale.piemonte.it * Reggio Emilia http://www.dati.gov.it * Regione Lazio http://www.dati.lazio.it * Regione Autonoma Sardegna http://dati.regione.sardegna.it * Provincia di Biella http://cartografia.provincia.biella.it * Regione Liguria https://www.regione.liguria.it * Comune di Milano http://dati.comune.milano.it" + ] + }, + { + "country": { + "ISO3": "JAM", + "label": "Jamaica" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "JEY", + "label": "Jersey" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains Ordnance Survey data \u00A9 Crown copyright and database right 2018. Licensed under the Open Government Licence. The license can be found at:", + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "Contains Ordnance Survey data \u00A9 Crown copyright and database right 2018.", + "Contains Royal Mail data \u00A9 Royal Mail copyright and database right 2018.", + "Contains National Statistics data \u00A9 Crown copyright and database right 2018.", + "Licensed under the Open Government Licence. The license can be found at:", + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information (public transport stops data) licensed under the Open Government Licence v2.0. This is specified here: http://data.gov.uk/dataset/naptan", + "The license can be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", + "This product contains public sector information (publicly accessible charge points) licensed under the Open Government Licence v2.0. This is specified here: http://data.gov.uk/dataset/national-charge-point-registry", + "The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", + "This product contains Sports venues locations data made available by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area . The license can be found at: https://spogo.co.uk/active-places-license", + "This product contains data made available by the Northern Ireland Department of Education and licensed under the Open Government Licence v3.0. Data download page: http://apps.deni.gov.uk/appinstitutes The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains data made available by Historic England 2015. Contains Ordnance Survey data \u00A9 Crown copyright and database right 2015 The Historic England GIS Data contained in this material was obtained on 12/08/2015. The most publicly available up to date Historic England GIS Data can be obtained from: http://www.HistoricEngland.org.uk", + "Data download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx", + "The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html", + "This product contains designated Historic Asset GIS Data from the Welsh Historic Environment Service, licenced under the Open Government Licence. Data download page: http://lle.wales.gov.uk. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information licensed under the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information licensed under the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains data made available by Visit Wales and licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/" + ] + }, + { + "country": { + "ISO3": "JOR", + "label": "Jordan" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 Royal Jordanian Geographic center" + ] + }, + { + "country": { + "ISO3": "JPN", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 Mapple, Inc. \u00A9 Mapple", + "Contains data licensed under: http://its.zenrin.co.jp/legal/jpn/al_mi/index.html" + ] + }, + { + "country": { + "ISO3": "KAZ", + "label": "Kazakhstan" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "KEN", + "label": "Kenya" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "KGZ", + "label": "Kyrgyzstan" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "KHM", + "label": "Cambodia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "KIR", + "label": "Kiribati" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "This product contains data made available by PacGeo. For more information visit: http://www.pacgeo.org/about/" + ] + }, + { + "country": { + "ISO3": "KNA", + "label": "Saint Kitts and Nevis" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "KOR", + "label": "Republic of Korea" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Based upon electronic data \u00A9 Mappers Co., Ltd. All rights reserved. Korean Association Survey and Mapping Review Completed No. 2013-016 (2013-04-05)./No. 2008-133 (2008.05.27)/No. 2011-056 (2011.08.29)/No. 2012-082 (2012.11.16) Spatial Information Quality Management Service Review Completed No. 2021-004 (2021.03.31)", + "You agree that any Licensed Product which contains data of Korea may be subject to additional terms and conditions which shall be provided to You when available to TomTom. Korea data may not be exported from Korea. Data cannot be shipped to End Users in an open format (such as ESRI shapefile)." + ] + }, + { + "country": { + "ISO3": "KWT", + "label": "Kuwait" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "LAO", + "label": "Laos" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "LBN", + "label": "Lebanon" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "LBR", + "label": "Liberia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "LBY", + "label": "Libya" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "LCA", + "label": "Saint Lucia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "LIE", + "label": "Liechtenstein" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "LKA", + "label": "Sri Lanka" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "LSO", + "label": "Lesotho" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "LTU", + "label": "Lithuania" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under: http://eismoinfo.lt/#!/news/8592" + ] + }, + { + "country": { + "ISO3": "LUX", + "label": "Luxembourg" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "LVA", + "label": "Latvia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MAC", + "label": "Macao" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Macao Special Administrative Region Government \u2013 Cartography and Cadastre Bureau", + "This product contains Road Geometry data made available by Macao Special Administrative Region Government \u2013 Cartography and Cadastre Bureau: http://www.dscc.gov.mo/ENG/copyright.html." + ] + }, + { + "country": { + "ISO3": "MAF", + "label": "Saint Martin" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MAR", + "label": "Morocco" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MCO", + "label": "Monaco" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MDA", + "label": "Moldova" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "This product contains data from the Republic of Moldova. For more information visit: http://date.gov.md." + ] + }, + { + "country": { + "ISO3": "MDG", + "label": "Madagascar" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MDV", + "label": "Maldives" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MEX", + "label": "Mexico" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MHL", + "label": "Marshall Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MKD", + "label": "North Macedonia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MLI", + "label": "Mali" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MLT", + "label": "Malta" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 Mapping Unit, Malta Planning Authority" + ] + }, + { + "country": { + "ISO3": "MMR", + "label": "Myanmar" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MNE", + "label": "Montenegro" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MNG", + "label": "Mongolia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MNP", + "label": "Northern Mariana Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "The following copyright notice applies to the use of Post- FSA layer and 6-digit layer: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom. The product includes information copied with permission from Canadian authorities, including \u00A9 Canada Post Corporation, All rights reserved. The use of this material is subject to the terms of a License Agreement. You will be held liable for any unauthorized copying or disclosure of this material. The following copyright notice applies to the use of Points of Interest: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. Portions of the POI database contained in Points of Interest North America have been provided by Neustar Localeze The following copyright notice applies to the use of Telecommunications: \u00A9 2021 Pitney Bowes Software Inc. All rights reserved. This product contains information and/or data of iconectiv, licensed to be included herein. Copyright \u00A9 2021 iconectiv. All rights reserved. The following copyright notice applies to the use of Logistics: \u00A9 1992 \u2013 2021 TomTom. Truck Attribute Data \u00A9 2004 - 2021 ProMiles Software Development Corporation. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom.", + "\u00A9 United States Postal Service 2021", + "You shall not use the Municipal Boundary layer of the Administrative Areas product to create or derive applications which are used by third parties for the purpose of tariff, tax jurisdiction, or tax rate determination for a particular address or range of addresses.", + "This product is built on basis on the following elevation data: SRTM, GTOPO, NED data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview", + "This product is built on basis on the following elevation data: 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department of Commerce, National Oceanic and Atmospheric Administration, National Geophysical Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html" + ] + }, + { + "country": { + "ISO3": "MOZ", + "label": "Mozambique" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MRT", + "label": "Mauritania" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MSR", + "label": "Montserrat" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MTQ", + "label": "Martinique" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MUS", + "label": "Mauritius" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MWI", + "label": "Malawi" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MYS", + "label": "Malaysia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "The product contains data made available by Government Open Data Portal. For more information visit: http://www.data.gov.my/page/termsofuse." + ] + }, + { + "country": { + "ISO3": "MYT", + "label": "Mayotte" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "NAM", + "label": "Namibia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "NCL", + "label": "New Caledonia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "NER", + "label": "Niger" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "NFK", + "label": "Norfolk Island" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "NGA", + "label": "Nigeria" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "NIC", + "label": "Nicaragua" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "NIU", + "label": "Niue" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "NLD", + "label": "Netherlands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under CC-BY 4.0. For more information visit: * Kadaster Top10NL http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/29d5310f-dd0d-45ba-abad-b4ffc6b8785f?tab=general * Kadaster BGT http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2cb4769c-b56e-48fa-8685-c48f61b9a319?tab=general * CBS Bestand Bodemgebruik http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2d3dd6d2-2d2b-4b5f-9e30-86e19ed77a56?tab=general", + "Contains data licensed under CC-BY 2.0. For more information visit: * Municipality of Amsterdam Datasets Parkeergarages https://data.amsterdam.nl/index.html#?dte=https:%2F%2Fapi.datapunt.amsterdam.nl%2Fcatalogus%2Fapi%2F3%2Faction%2Fpackage_show%3Fid%3Df06f5a77-04f6-432f-9fd9-ce9d740631aa\u0026dtfs=T\u0026mpb=topografie\u0026mpz=9\u0026mpv=52.3719:4.9012", + "Contains data licensed under CC-BY 3.0. For more information visit: * Municipality of Amsterdam Multiple cat POI\u0027s https://data.amsterdam.nl/index.html#?dsd=dcatd\u0026dsp=1\u0026dsq=open%2520data\u0026dsv=CATALOG\u0026mpb=topografie\u0026mpz=11\u0026mpv=52.3731081:4.8932945", + "This product contains public transport stops data made available under 9292 Open Data framework as documented on March 2013. This is specified in their terms available here: http://9292opendata.org/sla", + "This product contains traffic incident information made available by NDW under open source data policy:\u00A0https://www.ndw.nu/pagina/nl/103/datalevering/120/open_data/" + ] + }, + { + "country": { + "ISO3": "NOR", + "label": "Norway" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data under CC BY3.0 as distributed by Nobil https://creativecommons.org/licenses/by/3.0/", + "Contains data made available by Statens Kartverk licensed under CC-BY 4.0. For more information visit https://creativecommons.org/licenses/by/4.0/", + "Contains data made available by Statens Vegvesen licensed under the Norwegian licence for Open Government data (NLOD). For more information visit https://data.norge.no/nlod/en/2.0 ." + ] + }, + { + "country": { + "ISO3": "NPL", + "label": "Nepal" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "NRU", + "label": "Nauru" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "NZL", + "label": "New Zealand" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under CC-BY 3.0 NZ. For more information visit: * New Zealand Transport Agency https://www.nzta.govt.nz/resources/grouped-crash-sites", + "Contains data licensed under CC-BY 4.0. For more information visit: * Land Information New Zealand https://data.linz.govt.nz * Statistics New Zealand https://datafinder.stats.govt.nz * Christchurch City Council https://opendata.ccc.govt.nz/public-portal/ * Wellington City Council https://data-wcc.opendata.arcgis.com/ * Auckland Transport https://data-wcc.opendata.arcgis.com * Ministry of Education https://www.educationcounts.govt.nz/ * Ministry of Health https://www.health.govt.nz/ * Ministry of Justice https://www.justice.govt.nz * Ministry for Primary Industries http://mpiportal.force.com/publicregister * Ministry of Social Development https://www.familyservices.govt.nz/ * Department of Conservation Te Papa Atawhai https://doc-deptconservation.opendata.arcgis.com/ * New Zealand Transport Agency https://www.nzta.govt.nz" + ] + }, + { + "country": { + "ISO3": "OAS", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OAT", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OBE", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OCA", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OCP", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ODE", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ODK", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OES", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OFI", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OFR", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OGB", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OGR", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OIE", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OIN", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OIT", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OMN", + "label": "Oman" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OMX", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ONL", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ONO", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OPA", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OPL", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OPT", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ORU", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OSE", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OTR", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OUA", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OUP", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "PAK", + "label": "Pakistan" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "You agree that any Licensed Product which contains data of India may be subject to additional terms and conditions which shall be provided to You when available to TomTom. India data shall not be altered or changed during Your product creation / publication process. India data may not be exported from India." + ] + }, + { + "country": { + "ISO3": "PAN", + "label": "Panama" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "PCN", + "label": "Pitcairn Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "PER", + "label": "Peru" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "PHL", + "label": "Philippines" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "PLW", + "label": "Palau" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "PNG", + "label": "Papua New Guinea" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "POL", + "label": "Poland" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "PRI", + "label": "Puerto Rico" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "The following copyright notice applies to the use of Post- FSA layer and 6-digit layer: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom. The product includes information copied with permission from Canadian authorities, including \u00A9 Canada Post Corporation, All rights reserved. The use of this material is subject to the terms of a License Agreement. You will be held liable for any unauthorized copying or disclosure of this material. The following copyright notice applies to the use of Points of Interest: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. Portions of the POI database contained in Points of Interest North America have been provided by Neustar Localeze The following copyright notice applies to the use of Telecommunications: \u00A9 2021 Pitney Bowes Software Inc. All rights reserved. This product contains information and/or data of iconectiv, licensed to be included herein. Copyright \u00A9 2021 iconectiv. All rights reserved. The following copyright notice applies to the use of Logistics: \u00A9 1992 \u2013 2021 TomTom. Truck Attribute Data \u00A9 2004 - 2021 ProMiles Software Development Corporation. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom.", + "\u00A9 United States Postal Service 2021", + "You shall not use the Municipal Boundary layer of the Administrative Areas product to create or derive applications which are used by third parties for the purpose of tariff, tax jurisdiction, or tax rate determination for a particular address or range of addresses.", + "This product is built on basis on the following elevation data: SRTM, GTOPO, NED data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview", + "This product is built on basis on the following elevation data: 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department of Commerce, National Oceanic and Atmospheric Administration, National Geophysical Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html" + ] + }, + { + "country": { + "ISO3": "PRK", + "label": "North Korea" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "PRT", + "label": "Portugal" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under CC-BY 4.0. For more information visit: * C\u00E2mara Municipal de Guimar\u00E3es https://sig.cm-guimaraes.pt/dadosabertos/#one * C\u00E2mara Municipal de Cascais https://data.cascais.pt/pt-pt/node/254 * C\u00E2mara Municipal de Lisboa http://lisboaaberta.cm-lisboa.pt/index.php/pt/dados/conjuntos-de-dados * C\u00E2mara Municipal de Agueda http://ckan.sig.cm-agueda.pt/dataset" + ] + }, + { + "country": { + "ISO3": "PRY", + "label": "Paraguay" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "PYF", + "label": "French Polynesia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "QAT", + "label": "Qatar" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "REU", + "label": "Reunion" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ROU", + "label": "Romania" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains public information based on Open Government License v1.0." + ] + }, + { + "country": { + "ISO3": "RUS", + "label": "Russia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 ROSREESTR" + ] + }, + { + "country": { + "ISO3": "RWA", + "label": "Rwanda" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SAU", + "label": "Saudi Arabia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SDN", + "label": "Sudan" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SEN", + "label": "Senegal" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SGP", + "label": "Singapore" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data made available by the Land Transport Authority under the following license: https://www.mytransport.sg/content/mytransport/home/dataMall/SingaporeOpenDataLicence.html", + "Contains information from ACRA Information on Corporate Entities accessed on Sep-7, 2020 from data.gov.sg which is made available under the terms of the Singapore Open Data Licence version 1.0 {https://data.gov.sg/open-data-licence}" + ] + }, + { + "country": { + "ISO3": "SGS", + "label": "South Georgia and the South Sandwich Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SHN", + "label": "Saint Helena" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SLB", + "label": "Solomon Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SLE", + "label": "Sierra Leone" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SLV", + "label": "El Salvador" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SMR", + "label": "San Marino" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SOM", + "label": "Somalia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SPM", + "label": "Saint Pierre and Miquelon" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SRB", + "label": "Serbia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains open data with free license. The free license is defined in Article 26 of the Law on Electronic Administration (\u0022Official Gazette of RS\u0022, No. 27/18).", + "For more information:", + "https://geosrbija.rs/en/", + "http://metakatalog.geosrbija.rs/geonetwork/srv/eng/catalog.search#/home", + "Data was downloaded on 02.03.2020" + ] + }, + { + "country": { + "ISO3": "SSD", + "label": "South Sudan" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "STP", + "label": "Sao Tome and Principe" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SUR", + "label": "Suriname" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SVK", + "label": "Slovakia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SVN", + "label": "Slovenia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data (street names) from Surveying and mapping authority of the republic of Slovenia licensed under CC-BA2.5. For more information visit https://egp.gu.gov.si/egp/?lang=en.", + "Contains data licensed under: https://www.promet.si/portal/en/etd.aspx" + ] + }, + { + "country": { + "ISO3": "SWE", + "label": "Sweden" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data made available by Lantm\u00E4teriet under legal terms listed here:", + "https://www.lantmateriet.se/en/maps-and-geographic-information/oppna-data/anvandarvillkor/", + "Contains data made available by Trafikverket under legal terms listed here:", + "https://www.trafikverket.se/tjanster/Oppna_data/" + ] + }, + { + "country": { + "ISO3": "SWZ", + "label": "Eswatini" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SXM", + "label": "Sint Maarten" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SYC", + "label": "Seychelles" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SYR", + "label": "Syria" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "TCA", + "label": "Turks and Caicos Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "TCD", + "label": "Chad" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "TGO", + "label": "Togo" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "THA", + "label": "Thailand" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "The product contains \u2018Points of Interest\u2019 (POI) data of Thailand made available by Governmnet Open Data Portal: https://data.go.th Data and information are subject to the Open Government License \u2013 Thailand: https://data.go.th/TermsAndConditions.aspx", + "Contains data made available under DGA Open Government License. For more information visit https://data.go.th/en/pages/dga-open-government-license" + ] + }, + { + "country": { + "ISO3": "TJK", + "label": "Tajikistan" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "TKL", + "label": "Tokelau" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "TKM", + "label": "Turkmenistan" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "TLS", + "label": "Timor-Leste" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "TON", + "label": "Tonga" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "TTO", + "label": "Trinidad and Tobago" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "TUN", + "label": "Tunisia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "TUR", + "label": "T\u00FCrkiye" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "TUV", + "label": "Tuvalu" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "TWN", + "label": "Taiwan" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "This product contains traffic incident data made available by the Police Broadcasting Service of Taiwan under the following open data license: https://data.gov.tw/license", + "Contains source of the original data made available by National Land Surveying and Mapping Center, Ministry of the Interior.", + "Contains datasets made available by DATA.GOV.TW. licensed under Open Government Data License v1.0. For specifics, please reference: https://data.gov.tw/en/license" + ] + }, + { + "country": { + "ISO3": "TZA", + "label": "Tanzania" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "UGA", + "label": "Uganda" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "UKR", + "label": "Ukraine" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "UMI", + "label": "United States Minor Outlying Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "URY", + "label": "Uruguay" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "USA", + "label": "United States" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "The following copyright notice applies to the use of Post- FSA layer and 6-digit layer: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom. The product includes information copied with permission from Canadian authorities, including \u00A9 Canada Post Corporation, All rights reserved. The use of this material is subject to the terms of a License Agreement. You will be held liable for any unauthorized copying or disclosure of this material. The following copyright notice applies to the use of Points of Interest: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. Portions of the POI database contained in Points of Interest North America have been provided by Neustar Localeze The following copyright notice applies to the use of Telecommunications: \u00A9 2021 Pitney Bowes Software Inc. All rights reserved. This product contains information and/or data of iconectiv, licensed to be included herein. Copyright \u00A9 2021 iconectiv. All rights reserved. The following copyright notice applies to the use of Logistics: \u00A9 1992 \u2013 2021 TomTom. Truck Attribute Data \u00A9 2004 - 2021 ProMiles Software Development Corporation. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom.", + "\u00A9 United States Postal Service 2021", + "You shall not use the Municipal Boundary layer of the Administrative Areas product to create or derive applications which are used by third parties for the purpose of tariff, tax jurisdiction, or tax rate determination for a particular address or range of addresses.", + "This product is built on basis on the following elevation data: SRTM, GTOPO, NED data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview", + "This product is built on basis on the following elevation data: 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department of Commerce, National Oceanic and Atmospheric Administration, National Geophysical Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html", + "Contains data made available by City of Tempe, AZ licensed under CC-BY 4.0. For specifics, please reference: https://data.tempe.gov/", + "Contains data made available by Coconino County, AZ licensed under CC-BY 4.0. For specifics, please reference: https://datahub-coconinocounty.opendata.arcgis.com/search", + "Contains data made available by the City of Mesa, AZ. The City of Mesa Open Data Terms of Use License Agreement can be found here: https://data.mesaaz.gov/stories/s/2dcd-j2nx/", + "Contains data made available by Kern County, CA licensed under CC-BY 4.0. For specifics, please reference: https://geodat-kernco.opendata.arcgis.com/", + "Contains data made available by the City of Bakersfield, CA. The GIS Data disclaimer can be found here: https://bakersfieldcity.us/gov/depts/geographic_information_services/gis_data_disclaimer.htm", + "Contains data made available by the Sacramento Area Council of Governments (SACOG) licensed under CC-BY 4.0. For specifics, please reference: http://data-sacog.opendata.arcgis.com/", + "This product contains traffic incident data made available by Caltrans DOT licensed under this page: http://www.dot.ca.gov/cwwp2/. For specifics, please reference: http://www.dot.ca.gov/use.html", + "Contains data made available by the City of Garden Grove, CA. The City of Garden Grove Open Data Terms of Use License Agreement can be found here: https://ggcity.org/maps/data-portal/", + "Contains data made available by Adams County, CO licensed under CC-BY 4.0. For specifics, please reference: http://data-adcogov.opendata.arcgis.com/#data", + "Contains data made available by City of Greeley, CO GIS licensed under CC-BY 4.0. For specifics, please reference: http://greeleygis2017-02-01t212304815z-greeley.opendata.arcgis.com/", + "Contains data made available by the City of Hartford, CT licensed under CC-BY 4.0. For specifics, please reference: https://openhartford-hartfordgis.opendata.arcgis.com/", + "Contains data made available by Open Data DC licensed under CC-BY 4.0. For specifics, please reference: https://opendata.dc.gov/", + "Contains data made available by City of Miami, FL licensed under CC-BY 4.0. For specifics, please reference: http://datahub-miamigis.opendata.arcgis.com/", + "Contains data made available by Hillsboro County, FL licensed under the CC-BY 4.0. For specifics, please reference: http://gis2017-01-10t133755357z-hillsborough.opendata.arcgis.com/", + "Contains data made available by Lee County, FL licensed under the CC-BY 4.0. For specifics, please reference: http://leegisopendata2-leegis.opendata.arcgis.com/", + "Contains data made available by Manatee County, FL licensed under the CC-BY 4.0. For specifics, please reference: https://www.mymanatee.org/", + "Contains data made available by City of Sandy Springs, GA licensed under CC-BY 4.0. For specifics, please reference: https://data-coss.opendata.arcgis.com", + "Contains data made available by State of Iowa, licensed under CC-BY 4.0. For specifics, please reference: https://data.iowadot.gov/datasets/", + "Contains data made available by DuPage County, IL licensed under the Open Geo-Spatial Data License. For specifics, please reference: http://gisdata-dupage.opendata.arcgis.com/", + "Contains data made available by Indianapolis and Marion County, IN. For specifics, please reference: http://data.indy.gov/", + "Contains data made available by MassDOT under the Massachusetts Department of Transportation Developers License Agreement. For specifics, please reference: https://www.mass.gov/files/documents/2017/10/27/develop_license_agree_0.pdf", + "Contains data made available by the Bureau of Geographic Information (MassGIS), Commonwealth of Massachusetts, Executive Office of Technology and Security Services. For specifics, please reference: https://docs.digital.mass.gov/massgis", + "Contains data made available by Calvert County GIS licensed under CC-BY 4.0. For specifics, please reference: https://www.co.cal.md.us/1534/Geographic-Information-Systems-GIS", + "Contains data made available by State of Maryland and MD iMAP. For specifics, please reference: http://imap.maryland.gov", + "Contains data licensed under CC-BY 4.0. For more information visit Howard County: https://data.howardcountymd.gov/", + "Contains data made available by Maine Department of Transportation.", + "Contains data made available by Minnesota Department of Natural Resources (MNDNR).", + "Contains data made available by North Dakota Department of Transportation licensed under CC-BY 4.0. For specifics, please reference: https://gishubdata.nd.gov/", + "Contains data made available by New Hampshire Department of Transportation.", + "This product contains traffic incident data made available by NY State 511 licensed under this page: https://511ny.org/", + "This product contains traffic incident data made available by NY State 511 licensed under this page: https://www.511pa.com/", + "Contains data made available by the Rhode Island Geographic Information System (RIGIS) consortium, the State of Rhode Island, and the University of Rhode Island. For specifics, please reference: http://www.rigis.org/", + "Contains data made available by the State of Utah Automated Geographic Reference Center (AGRC), licensed under CC-BY 4.0. For specifics, please reference: https://gis.utah.gov/", + "Contains data made available by the City of Charlottesville, VA licensed under CC-BY 4.0. For specifics, please reference: https://opendata.charlottesville.org/", + "Contains data made available by Vermont Department of Transportation.", + "Contains data made available by City of Everett, WA with the following disclaimer:", + "\u0022The data made available here has been modified for use from its original source, which is the City of Everett. Neither the City of Everett nor the Information Technology Department makes any claims as to the completeness, timeliness, accuracy or content of any data contained in this application; makes any representation of any kind, including, but not limited to, warranty of the accuracy or fitness for a particular use; nor are any such warranties to be implied or inferred with respect to the information or data furnished herein. The data is subject to change as modifications and updates are complete. It is understood that the information contained in the web feed is being used at one\u0027s own risk.\u0022 For specifics, please reference: https://data.everettwa.gov/", + "Contains data made available by the Dane County Land Information Office." + ] + }, + { + "country": { + "ISO3": "UZB", + "label": "Uzbekistan" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "VAT", + "label": "Vatican City" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "VCT", + "label": "Saint Vincent and the Grenadines" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "VEN", + "label": "Venezuela" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "VGB", + "label": "British Virgin Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "VIR", + "label": "United States Virgin Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "The following copyright notice applies to the use of Post- FSA layer and 6-digit layer: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom. The product includes information copied with permission from Canadian authorities, including \u00A9 Canada Post Corporation, All rights reserved. The use of this material is subject to the terms of a License Agreement. You will be held liable for any unauthorized copying or disclosure of this material. The following copyright notice applies to the use of Points of Interest: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. Portions of the POI database contained in Points of Interest North America have been provided by Neustar Localeze The following copyright notice applies to the use of Telecommunications: \u00A9 2021 Pitney Bowes Software Inc. All rights reserved. This product contains information and/or data of iconectiv, licensed to be included herein. Copyright \u00A9 2021 iconectiv. All rights reserved. The following copyright notice applies to the use of Logistics: \u00A9 1992 \u2013 2021 TomTom. Truck Attribute Data \u00A9 2004 - 2021 ProMiles Software Development Corporation. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom.", + "\u00A9 United States Postal Service 2021", + "You shall not use the Municipal Boundary layer of the Administrative Areas product to create or derive applications which are used by third parties for the purpose of tariff, tax jurisdiction, or tax rate determination for a particular address or range of addresses.", + "This product is built on basis on the following elevation data: SRTM, GTOPO, NED data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview", + "This product is built on basis on the following elevation data: 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department of Commerce, National Oceanic and Atmospheric Administration, National Geophysical Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html" + ] + }, + { + "country": { + "ISO3": "VNM", + "label": "Vietnam" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "VUT", + "label": "Vanuatu" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "WLF", + "label": "Wallis and Futuna" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "WSM", + "label": "Samoa" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "XAB", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "This product contains data from the National Agency of Public Registry under the Ministry of Justice of Georgia.", + "For more information visit: http://www.napr.gov.ge/" + ] + }, + { + "country": { + "ISO3": "XAC", + "label": "Mediterranean Islands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "XAD", + "label": "Waterbelt \u03C4\u03B7\u03C2 \u0395\u03BB\u03BB\u03AC\u03B4\u03B1\u03C2" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "XAM", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data from Dubai Municipality." + ] + }, + { + "country": { + "ISO3": "XAN", + "label": "Abyei" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "XCP", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "XES", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "XHT", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "XKS", + "label": "Kosovo" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "XKX", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "You agree that any Licensed Product which contains data of India may be subject to additional terms and conditions which shall be provided to You when available to TomTom. India data shall not be altered or changed during Your product creation / publication process. India data may not be exported from India." + ] + }, + { + "country": { + "ISO3": "XNX", + "label": "Nakhchivan Autonomous Republic" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "XPX", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "You agree that any Licensed Product which contains data of India may be subject to additional terms and conditions which shall be provided to You when available to TomTom. India data shall not be altered or changed during Your product creation / publication process. India data may not be exported from India." + ] + }, + { + "country": { + "ISO3": "XRK", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "You agree that any Licensed Product which contains data of India may be subject to additional terms and conditions which shall be provided to You when available to TomTom. India data shall not be altered or changed during Your product creation / publication process. India data may not be exported from India." + ] + }, + { + "country": { + "ISO3": "XSO", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "This product contains data from the National Agency of Public Registry under the Ministry of Justice of Georgia.", + "For more information visit: http://www.napr.gov.ge/" + ] + }, + { + "country": { + "ISO3": "XSV", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data under CC BY3.0 as distributed by Nobil https://creativecommons.org/licenses/by/3.0/", + "Contains data made available by Statens Kartverk licensed under CC-BY 4.0. For more information visit https://creativecommons.org/licenses/by/4.0/", + "Contains data made available by Statens Vegvesen licensed under the Norwegian licence for Open Government data (NLOD). For more information visit https://data.norge.no/nlod/en/2.0 ." + ] + }, + { + "country": { + "ISO3": "XSX", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "You agree that any Licensed Product which contains data of India may be subject to additional terms and conditions which shall be provided to You when available to TomTom. India data shall not be altered or changed during Your product creation / publication process. India data may not be exported from India." + ] + }, + { + "country": { + "ISO3": "XTU", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data from Dubai Municipality." + ] + }, + { + "country": { + "ISO3": "XXG", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "XXH", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "XXJ", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data under CC BY3.0 as distributed by Nobil https://creativecommons.org/licenses/by/3.0/", + "Contains data made available by Statens Kartverk licensed under CC-BY 4.0. For more information visit https://creativecommons.org/licenses/by/4.0/", + "Contains data made available by Statens Vegvesen licensed under the Norwegian licence for Open Government data (NLOD). For more information visit https://data.norge.no/nlod/en/2.0 ." + ] + }, + { + "country": { + "ISO3": "XXK", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 ROSREESTR" + ] + }, + { + "country": { + "ISO3": "XXW", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "XXZ", + "label": "Buffer Zone" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under CC-BY 4.0. For more information visit: * GeoNames http://www.geonames.org/ * National Open data Portal Cyprus https://www.data.gov.cy/" + ] + }, + { + "country": { + "ISO3": "XZZ", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under CC-BY 4.0. For more information visit: * GeoNames http://www.geonames.org/ * National Open data Portal Cyprus https://www.data.gov.cy/" + ] + }, + { + "country": { + "ISO3": "YEM", + "label": "Yemen" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ZAF", + "label": "South Africa" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ZMB", + "label": "Zambia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ZWE", + "label": "Zimbabwe" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + } + ] + } + } + ], + "Variables": {} +} diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_from_bounding_box.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_from_bounding_box.json new file mode 100644 index 000000000000..e78842ea30eb --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_from_bounding_box.json @@ -0,0 +1,682 @@ +{ + "Entries": [ + { + "RequestUri": "https://atlas.microsoft.com/map/copyright/bounding/json?api-version=2022-08-01\u0026mincoordinates=42.982261,24.980233\u0026maxcoordinates=56.526017,1.355233\u0026text=yes", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "subscription-key": "AzureMapsSubscriptionKey", + "User-Agent": "azsdk-python-maps-render/unknown Python/3.9.13 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "max-age=86400", + "Content-Length": "152659", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 26 Sep 2022 15:11:12 GMT", + "ETag": "W/\u002213fc5384a26881239fe43e68c5ff6981\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-ms-azuremaps-region": "West US 2", + "X-MSEdge-Ref": "Ref A: AFFE330212FC46998050F30D8B19F7FF Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:12Z" + }, + "ResponseBody": { + "formatVersion": "0.0.1", + "generalCopyrights": [ + "\u00A9 1992 - 2022 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection, database right protection and other intellectual property rights owned by TomTom or its suppliers. The use of this material is subject to the terms of a license agreement. Any unauthorized copying or disclosure of this material will lead to criminal and civil liabilities.", + "Data Source \u00A9 2022 TomTom", + "based on" + ], + "regions": [ + { + "country": { + "ISO3": "AUT", + "label": "Austria" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 BEV, GZ 1368/2003", + "The location and event code (version 3.4) has been provided by ASFINAG.", + "Contains data licensed under CC BY 3.0 AT. For more information visit: * City of Vienna https://www.data.gv.at * Geoland https://www.data.gv.at/ * BEV: \u00A9 \u00D6sterreichisches Adressregister, 01.10.2019. http://www.bev.gv.at/ * Open Government Data Wien https://open.wien.gv.at/" + ] + }, + { + "country": { + "ISO3": "BEL", + "label": "Belgium" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under Free Open Data License Vlaanderen. For more information visit: * CRAB Adressenlijst https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=6EF348E1-69EB-4CAD-8CCD-1C68099AFCF3 * CRAB Stratenlijst https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=FBC603AE-87DC-4418-B16D-832CE7B30335 * Grootschalig Referentiebestand (GRB) https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=7C823055-7BBF-4D62-B55E-F85C30D53162 * 3D GRB https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=42ac31a7-afe6-44c4-a534-243814fe5b58 * AGIV Aerial images https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=0ffd5eee-c197-4f8f-b491-b01bd1792f7c * Wegenregister Flanders and Brussels https://metadata.geopunt.be/zoekdienst/apps/tabsearch/?uuid=49515fac-068f-4b41-a4ac-8e29d43df696 * School and University data", + "http://opendataforum.info/Docs/Modellicentie%202%20Gratis%20Open%20Data%20Licentie.htm * City of Antwerp http://opendata.antwerpen.be/gratis-open-data-licentie * Toerisme Vlaanderen http://www.toerismevlaanderen.be/opendata * Gipod https://overheid.vlaanderen.be/sites/default/files/documenten/ict-egov/licenties/hergebruik/modellicentie_gratis_hergebruik_v1_0.html", + "Contains data licensed under CIRB - CIBG under Open Data License. For more information visit: * CIRB-CIBG APT\u0027s http://www.bric.irisnet.be/en/our-solutions/urbis-solutions/download * Brussels Mobility Zones 30 (30 km/h zones) http://data-mobility.brussels/mobigis/nl/#", + "Contains data licensed under CC-BY 4.0. For more information visit: * TEC (Public Transport Stops) http://opendata.awt.be/dataset/tec" + ] + }, + { + "country": { + "ISO3": "BGR", + "label": "Bulgaria" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BIH", + "label": "Bosnia-Herzegovina" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "BLR", + "label": "Republic of Belarus" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 Source data. State committee on property of the Republic of Belarus, 2019 \u00A9 Republic unitary organization Belgeodsia, 2019" + ] + }, + { + "country": { + "ISO3": "CHE", + "label": "Switzerland" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 Swisstopo", + "Contains data licensed under CC BY. For more information visit: * SITG https://opendata.swiss/ * BFS (eidgen\u00F6ssisches Geb\u00E4ude- und Wohnungsregister) https://data.geo.admin.ch/ * BAV https://opendata.swiss/de", + "Contains data licensed under CC Zero. For more information visit: * the city of Z\u00FCrich https://data.stadt-zuerich.ch/", + "Contains data licensed under CC BY ASK. For more information visit: * swisstopo https://opendata.swiss/de" + ] + }, + { + "country": { + "ISO3": "CZE", + "label": "Czechia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "DEU", + "label": "Germany" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 GeoBasis-DE / LDBV 2021", + "Contains data licensed under CC BY 3.0 DE. For more information visit: * Bayerisches Landesamt f\u00FCr Umwelt, www.lfu.bayern.de * Bayerische Vermessungsverwaltung, www.geodaten.bayern.de", + "Contains cartographic information made available by \u00A9 GeoBasis-DE / BKG 2018 (data modified). https://www.bkg.bund.de", + "Contains data licensed under dl-de-by-2.0. For more information visit: * Bezirksregierung K\u00F6ln, 2019, https://www.bezreg-koeln.nrw.de/ * geoportal-th.de (data modified), https://www.geoportal-th.de * Open.NRW \u2013 Das Open Government Portal f\u00FCr das Land Nordrhein-Westfalen\u201D; Landesamt f\u00FCr Natur, Umwelt und Verbraucherschutz Nordrhein-Westfalen, www.open.nrw * transparenz.hamburg.de (data modified), http://suche.transparenz.hamburg.de/ * Land NRW, 2018, https://www.wms.nrw.de/geobasis/wms_nw_dop?REQUEST=GetCapabilities\u0026SERVICE=WMS * Vermessungs- und Katasterverwaltung Rheinland-Pfalz, 2018, https://lvermgeo.rlp.de/de/ * LVermGeoRP, 2018, https://www.geoportal.rlp.de/", + "Contains data licensed under CC-BY 4.0. For more information visit: * \u201EOpen.NRW \u2013 Das Open Government Portal f\u00FCr das Land Nordrhein-Westfalen\u201D; Landesamt f\u00FCr Natur, Umwelt und Verbraucherschutz Nordrhein-Westfalen, www.open.nrw" + ] + }, + { + "country": { + "ISO3": "DNK", + "label": "Denmark" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 DAV, violation of these copyrights shall cause legal proceedings", + "This product contains information from Styrelsen for Dataforsyning og Effektiviserings Adresse Web Services (AWS Suiten)", + "\u201DIndeholder data fra Styrelsen for Dataforsyning og Effektivisering\u0022; Stedsnavne, Vejmidte", + "\u201DIndeholder oplysninger fra Styrelsen for Dataforsyning og Effektivisering Adresse Web Services (AWS).\u201D", + "\u201DIndeholder data fra Styrelsen for Dataforsyning og Effektivisering\u0022; Stedsnavne" + ] + }, + { + "country": { + "ISO3": "ESP", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "This product contains public transport stops and sports centers data made available by Ayuntamiento de Lorca under Legal Terms available here: http://datos.lorca.es/avisolegal/", + "This product contains several data made available by Ayuntamiento de Madrid under Legal Terms available here:", + "http://datos.madrid.es/portal/site/egob/menuitem.400a817358ce98c34e937436a8a409a0/?vgnextoid=b4c412b9ace9f310VgnVCM100000171f5a0aRCRD\u0026vgnextchannel=b4c412b9ace9f310VgnVCM100000171f5a0aRCRD\u0026vgnextfmt=default", + "This product contains public transport stops data \u201CPowered by EMT de Madrid\u201D under license terms available here:", + "https://www.crtm.es/licencia-de-uso", + "This product contains public transport stops data made available by Ayuntamiento de Zaragoza under Legal Terms available here:", + "https://www.zaragoza.es/ciudad/servicios/avisolegal.htm#condiciones", + "This product contains public transport stops \u201CPowered by CRTM\u201D under license terms available here:", + "http://www.crtm.es/licencia-de-uso", + "Contains data available on /nap.dgt.es/: * Direcci\u00F3n General de Tr\u00E1fico Madrid * Trafiko Zuzendaritza/Direcci\u00F3n de Tr\u00E1fico San Sebastian * Servei Catal\u00E0 de Tr\u00E0nsit Barcelona", + "Contains data licensed under CC-BY 3.0. For more information visit: * Ajuntament de El Prat de Llobregat https://seu-e.cat/web/elpratdellobregat/avis-legal * Xunta de Galicia https://abertos.xunta.gal/condicions-de-uso * Ayuntamiento de Getxo https://www.getxo.eus/es/gobierno-abierto/opndata/ * Ayuntamiento de C\u00E1ceres https://opendata.caceres.es/terminos * Diputaci\u00F3n de Pontevedra https://ide.depo.gal/web/idepo/aviso-legal * Junta de Castilla y Le\u00F3n https://datosabiertos.jcyl.es/web/es/datos-abiertos-castilla-leon.html * Ajuntament de Girona https://www.girona.cat/opendata/dataset * Ajuntament de Sabadell http://web.sabadell.cat/ * Ayuntamiento de Santa Cruz de Tenerife http://www.santacruzdetenerife.es/opendata/about * Gobierno Vasco https://opendata.euskadi.eus/general/-/informacion-legal-opendata/ * Ayuntamiento de Alcobendas https://datos.alcobendas.org/pages/aviso-legal * Ajuntament de Terrassa https://opendata.terrassa.cat/es/", + "Contains data licensed under CC-BY 4.0. For more information visit: * Ayuntamiento de Valencia http://www.valencia.es/ayuntamiento/DatosAbiertos.nsf/ * Ajuntament de Sant Feu de Llobregat http://opendata.santfeliu.cat/ca/normes-dus/#llicencia * Cartociudad http://www.cartociudad.es/portal/ * Nomecalles http://www.madrid.org/nomecalles/Inicio.icm * Ayuntamiento de Barcelona https://opendata-ajuntament.barcelona.cat/es/ * Gobierno de Navarra https://gobiernoabierto.navarra.es/es/open-data * Ayuntamiento de Vitoria-Gasteiz https://www.vitoria-gasteiz.org/j34-01w/catalogo/portada * Diputaci\u00F3n Foral de Guip\u00FAzcoa https://b5m.gipuzkoa.eus/web5000/es/cartoteca/conjuntos-datos/ * Diputaci\u00F3n Foral de Vizcaya https://www.opendatabizkaia.eus/es/catalogo * Instituto Geogr\u00E1fico Nacional https://www.ign.es/web/ign/portal/politica-datos * Consell Insular de Menorca https://menorca.tib.org/es/open-data * Gobierno de Arag\u00F3n https://opendata.aragon.es/" + ] + }, + { + "country": { + "ISO3": "FRA", + "label": "France" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "(navigation devices only) Michelin data \u00A9 Michelin 2019 The following copyright applies to the Advanced Navigable MAP, Address Points, 2D City Map and Buildings: Source: Direction g\u00E9n\u00E9rale des Finances Publiques \u2013 Cadastre; Updated 2019", + "Contains data licensed under Open License Version 1.0: * Ville de Toulouse * Rennes M\u00E9tropole * Grand Lyon dated from 1/3/2015 * Mulhouse Alsace Agglom\u00E9ration dated from 13/2/2015 * Grand Poitiers * Ville de Chassieu dated from October 2017 * Ville de Chennevi\u00E8res-sur-Marne * D\u00E9partement des Hauts-de-Seine * M\u00E9tropole Europ\u00E9enne de Lille dated from 21/2/2017 * Colmar Agglom\u00E9ration dated from 23/09/2016 * Minist\u00E8re des Solidarit\u00E9s et de la Sant\u00E9 dated from 17/3/2017 * Sodetrel dated from December 2017 * E.Leclerc dated from December 2017 * Parking EFFIA Stationnement dated from December 2017 * Centre national du cin\u00E9ma et de l\u0027image anim\u00E9e dated from 23/9/2016 * Communaut\u00E9 d\u0027Agglom\u00E9ration de Rambouillet Territoires dated from January 2017 * Lannion-Tr\u00E9gor Communaut\u00E9 * G\u00E9oGrandEst * Nissan dated from December 2017 * Seames dated from December 2017 * Syndicat Intercommunal des Energies du d\u00E9partement de la Loire dated from February 2017 * SOR\u00C9GIES dated from June 2017 * Syndicat D\u00E9partemental d\u2019Energie et d\u2019Equipement de la Vend\u00E9e dated from December 2017 * Minist\u00E8re de l\u2019Int\u00E9rieur dated from July 2018 * Minist\u00E8re des Sports * Office national d\u0027information sur les enseignements et les professions dated from December 2017 * Administration du Premier ministre dated from December 2017 * D\u00E9partement de Sa\u00F4ne-et Loire * Ville d\u2019Istres dated from December 2017 * Tesla dated from February 2017 * Syndicat D\u00E9partemental d\u0027Energies de la Manche dated from December 2017 * Syndicat D\u00E9partemental d\u0027Energie de Loire-Atlantique dated from December 2017 * M\u00E9tropole d\u0027Aix-Marseille-Provence * Ville de Montpellier", + "Contains data licensed under Open License Version 2.0: * Minist\u00E8re de la Transition \u00C9cologique * Ville d\u0027Issy-les-Moulineaux * Ville de Bayonne dated from 23/01/2018 * P\u00F4le Metropolitain du Pays de Brest dated from 1/3/2016 * Bordeaux M\u00E9tropole * Communaut\u00E9 d\u0027agglom\u00E9ration Arles Crau Camargue Montagnette dated from 29/4/2016 * Rennes M\u00E9tropole dated from 30/11/2016 * Angers Loire M\u00E9tropole dated from 21/9/2016 * D\u00E9partement de la Moselle dated from December 2017 * Ville de La Rochelle dated from 23/05/2012 * Grand Paris Seine Ouest dated from 01/02/2016 * Morbihan Energies dated from December 2017 * R\u00E9gion Bretagne dated from December 2017 * R\u00E9gie Culturelle de la R\u00E9gion Sud Provence-Alpes-C\u00F4te d\u0027Azur dated from December 2017 * Education Nationale * M\u00E9tropole du Grand Nancy * Toulouse M\u00E9tropole * Nantes M\u00E9tropole * M\u00E9tropole Europ\u00E9enne de Lille * Orl\u00E9ans M\u00E9tropole * Grand Poitiers * D\u00E9partement des Hautes-de-Seine * D\u00E9partement de la Mayenne * Mulhouse Alsace Agglom\u00E9ration", + "Contains data licensed under la Licence de r\u00E9utilisation des donn\u00E9es num\u00E9ris\u00E9es d\u2019informations en temps r\u00E9el sur la circulation: * Minist\u00E8re de la Transition \u00C9cologique * Direction Interd\u00E9partementale des Routes d\u2019\u00CEle-de-France", + "Contains data licensed under le Code des relation sentre le public et l\u2019administration: * Communaut\u00E9 d\u0027Agglom\u00E9ration Maubeuge - Val de Sambre dated from September 2017 * Syndicat des \u00E9nergies de la Haute-Savoie dated from November 2017 * Syndicat d\u2019\u00E9nergie de l\u2019Oise dated from December 2017 * Syndicat d\u0027\u00E9nergie de l\u0027Orne dated from March 2017 * Syndicat D\u00E9partemental d\u0027Energie de la Haute-Garonne dated from December 2017 * Syndicat D\u00E9partemental d\u0027Energie des Hautes-Pyr\u00E9n\u00E9es dated from December 2017 * Syndicat D\u00E9partemental d\u0027Energies du Calvados dated from December 2017 * Syndicat D\u00E9partemental d\u0027Energie du Cher dated from December 2017 * Syndicat D\u00E9partemental d\u0027Energies de l\u0027Indre dated from December 2017 * Syndicat D\u00E9partemental d\u0027Equipement et d\u0027Energie du Finist\u00E8re dated from December 2017 * Syndicat D\u00E9partemental des Energies de Seine-et-Marne dated from March 2017 * Syndicat intercommunal d\u0027\u00E9nergie d\u0027Indre-et-Loire dated from December 2017 * Union des Secteurs d\u0027Energie du D\u00E9partement de l\u0027Aisne dated from December 2017 * Ville de Beauvais dated from March 2017", + "Contains data from D\u00E9partement de Hautes-Alpes. For more information visit: http://inforoute.hautes-alpes.fr/" + ] + }, + { + "country": { + "ISO3": "GBR", + "label": "United Kingdom" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains Ordnance Survey data \u00A9 Crown copyright and database right 2018. Licensed under the Open Government Licence. The license can be found at:", + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "Contains Ordnance Survey data \u00A9 Crown copyright and database right 2018.", + "Contains Royal Mail data \u00A9 Royal Mail copyright and database right 2018.", + "Contains National Statistics data \u00A9 Crown copyright and database right 2018.", + "Licensed under the Open Government Licence. The license can be found at:", + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information (public transport stops data) licensed under the Open Government Licence v2.0. This is specified here: http://data.gov.uk/dataset/naptan", + "The license can be found here: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", + "This product contains public sector information (publicly accessible charge points) licensed under the Open Government Licence v2.0. This is specified here: http://data.gov.uk/dataset/national-charge-point-registry", + "The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", + "This product contains Sports venues locations data made available by Sport England under Open Government Licence v2.0 (and amended to DATA LICENCE AGREEMENT FOR ACTIVE PLACES AND SPOGO DATA) in: https://spogo.co.uk/developer-area . The license can be found at: https://spogo.co.uk/active-places-license", + "This product contains data made available by the Northern Ireland Department of Education and licensed under the Open Government Licence v3.0. Data download page: http://apps.deni.gov.uk/appinstitutes The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains data made available by Historic England 2015. Contains Ordnance Survey data \u00A9 Crown copyright and database right 2015 The Historic England GIS Data contained in this material was obtained on 12/08/2015. The most publicly available up to date Historic England GIS Data can be obtained from: http://www.HistoricEngland.org.uk", + "Data download page: https://services.historicengland.org.uk/NMRDataDownload/default.aspx", + "The license can be found at: https://www.ordnancesurvey.co.uk/business-and-government/licensing/using-creating-data-with-os-products/os-opendata.html", + "This product contains designated Historic Asset GIS Data from the Welsh Historic Environment Service, licenced under the Open Government Licence. Data download page: http://lle.wales.gov.uk. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information licensed under the Open Government Licence v3.0. Data download page: http://data.historic-scotland.gov.uk/pls/htmldb/f?p=2000:10:0. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains public sector information licensed under the Open Government Licence v3.0. Data download page: http://ratings.food.gov.uk/. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "This product contains data made available by Visit Wales and licensed under the Open Government Licence v3.0. Data download page: http://www.visitwales.com. The license can be found at: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/" + ] + }, + { + "country": { + "ISO3": "HRV", + "label": "Croatia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "HUN", + "label": "Hungary" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data under National Access Point Hungary." + ] + }, + { + "country": { + "ISO3": "ITA", + "label": "Italy" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under IODL 2.0. For more information visit: * Regione Lombardia. http://www.geoportale.regione.lombardia.it/en/home * Comune di Torino. http://aperto.comune.torino.it * Regione Veneto. For more information visit https://dati.veneto.it/ * Regione Autonoma Friuli Venezia Giulia. http://www.regione.fvg.it/rafvg/cms/RAFVG/ambiente-territorio/conoscere-ambiente-territorio/ * Regione Basilicata. http://dati.regione.basilicata.it/catalog/ * Regione Calabria. http://geoportale.regione.calabria.it/opendata * Comune di Reggio Calabria. http://dati.reggiocal.it/ * Ministero dell\u2019Istruzione. http://www.dati.gov.it * Regione Puglia. http://www.dataset.puglia.it/ * Comune di Verona. http://www.comune.verona.it * Comune di Vicenza. http://www.comune.vicenza.it", + "Contains data licensed under CC-BY 2.0 For more information visit: * Comune di Bari. http://opendata.comune.bari.it/dataset/sistema-informativo-territoriale-civilario-unico-comunaleContains data licensed under CC-BY 2.5. For more information visit * Comune di Milano. https://geoportale.comune.milano.it/sit/open-data/ and http://geodata-sitmilano.opendata.arcgis.com/ * Regione Toscana according to the legislation available at http://www.regione.toscana.it/documents/10180/492172/Decreto-2014_02_25n663.pdf/162db905-95fd-4b5e-bc41-88a629b5a3e5 and Regolamento http://raccoltanormativa.consiglio.regione.toscana.it/articolo?urndoc=urn:nir:regione.toscana:regolamento.giunta:2007-02-09;6/R\u0026pr=idx,0;artic,1;articparziale,0", + "http://dati.toscana.it/dataset/grafo-civici * Regione Emilia Romagna. http://geoportale.regione.emilia-romagna.it/it/catalogo/dati-cartografici/cartografia-di-base and http://geoportale.regione.emilia-romagna.it/it/catalogo/dati-cartografici/cartografia-di-base/database-topografico-regionale/gestione-viabilita-indirizzi/toponimi-e-numeri-civici * Regione Piemonte. http://www.geoportale.piemonte.it/geocatalogorp/?sca[]=r_piemon:da9b12ba-866a-4f0f-8704-5b7b753e4f15\u0026sezione=dwl * Agenzia Europea dell\u0027Ambiente http://data.europa.eu/euodp/it/data/dataset/data_urban-atlas", + "Contains data licensed under CC-BY 3.0. For more information visit: * Comune di Milano. https://www.comune.milano.it/wps/portal/ist/it/vivicitta/verde/parchi * Ministero dell\u2019Istruzione, dell\u2019Universit\u00E0 e della Ricerca MIURhttp://www.tper.it/azienda/tper-open-data * Agenzia per la Mobilit\u00E0 Roma http://www.agenziamobilita.roma.it/servizi/open-data/dataset.html * Comune di Firenze http://opendata.comune.fi.it/mobilita_sicurezza/dataset_0196.html and http://opendata.comune.fi.it/statistica_territorio/dataset_0040.html and http://opendata.comune.fi.it/mobilita_sicurezza/dataset_0139.html * Regione Umbria http://dati.umbria.it/ and http://www.umbriageo.regione.umbria.it/pagine/servizi-wms-attivi * Comune di Cesena http://www.datiopen.it/it/opendata/Comune_di_Cesena_Verde * Comune di Livorno http://www.datiopen.it/it/opendata/Comune_di_Livorno_Area_verde * Comune di Bologna http://dati.comune.bologna.it/node/201 and http://dati.comune.bologna.it/node/217 * Istituto Nazionale di Statistica http://www.istat.it/it/archivio/678 and http://datiopen.istat.it/", + "Contains data licensed under CC-BY 4.0. For more information visit: * Regione Veneto https://dati.veneto.it/ * Comune di Fano https://www.comune.fano.pu.it/index.php?id=2020 * Regione Toscana http://dati.toscana.it/ * Comune di Genova http://dati.comune.genova.it * Comune di Roma http://dati.comune.roma.it * Regione Piemonte http://www.geoportale.piemonte.it * Reggio Emilia http://www.dati.gov.it * Regione Lazio http://www.dati.lazio.it * Regione Autonoma Sardegna http://dati.regione.sardegna.it * Provincia di Biella http://cartografia.provincia.biella.it * Regione Liguria https://www.regione.liguria.it * Comune di Milano http://dati.comune.milano.it" + ] + }, + { + "country": { + "ISO3": "LIE", + "label": "Liechtenstein" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "LTU", + "label": "Lithuania" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under: http://eismoinfo.lt/#!/news/8592" + ] + }, + { + "country": { + "ISO3": "LUX", + "label": "Luxembourg" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "LVA", + "label": "Latvia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MCO", + "label": "Monaco" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "MNE", + "label": "Montenegro" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "NLD", + "label": "Netherlands" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data licensed under CC-BY 4.0. For more information visit: * Kadaster Top10NL http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/29d5310f-dd0d-45ba-abad-b4ffc6b8785f?tab=general * Kadaster BGT http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2cb4769c-b56e-48fa-8685-c48f61b9a319?tab=general * CBS Bestand Bodemgebruik http://nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/2d3dd6d2-2d2b-4b5f-9e30-86e19ed77a56?tab=general", + "Contains data licensed under CC-BY 2.0. For more information visit: * Municipality of Amsterdam Datasets Parkeergarages https://data.amsterdam.nl/index.html#?dte=https:%2F%2Fapi.datapunt.amsterdam.nl%2Fcatalogus%2Fapi%2F3%2Faction%2Fpackage_show%3Fid%3Df06f5a77-04f6-432f-9fd9-ce9d740631aa\u0026dtfs=T\u0026mpb=topografie\u0026mpz=9\u0026mpv=52.3719:4.9012", + "Contains data licensed under CC-BY 3.0. For more information visit: * Municipality of Amsterdam Multiple cat POI\u0027s https://data.amsterdam.nl/index.html#?dsd=dcatd\u0026dsp=1\u0026dsq=open%2520data\u0026dsv=CATALOG\u0026mpb=topografie\u0026mpz=11\u0026mpv=52.3731081:4.8932945", + "This product contains public transport stops data made available under 9292 Open Data framework as documented on March 2013. This is specified in their terms available here: http://9292opendata.org/sla", + "This product contains traffic incident information made available by NDW under open source data policy:\u00A0https://www.ndw.nu/pagina/nl/103/datalevering/120/open_data/" + ] + }, + { + "country": { + "ISO3": "OBE", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ODE", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ODK", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OES", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OFI", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OFR", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OGB", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OIT", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ONL", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ONO", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OPA", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OPL", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "OSE", + "label": "" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "POL", + "label": "Poland" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "ROU", + "label": "Romania" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains public information based on Open Government License v1.0." + ] + }, + { + "country": { + "ISO3": "RUS", + "label": "Russia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "\u00A9 ROSREESTR" + ] + }, + { + "country": { + "ISO3": "SMR", + "label": "San Marino" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SRB", + "label": "Serbia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains open data with free license. The free license is defined in Article 26 of the Law on Electronic Administration (\u0022Official Gazette of RS\u0022, No. 27/18).", + "For more information:", + "https://geosrbija.rs/en/", + "http://metakatalog.geosrbija.rs/geonetwork/srv/eng/catalog.search#/home", + "Data was downloaded on 02.03.2020" + ] + }, + { + "country": { + "ISO3": "SVK", + "label": "Slovakia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "SVN", + "label": "Slovenia" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data (street names) from Surveying and mapping authority of the republic of Slovenia licensed under CC-BA2.5. For more information visit https://egp.gu.gov.si/egp/?lang=en.", + "Contains data licensed under: https://www.promet.si/portal/en/etd.aspx" + ] + }, + { + "country": { + "ISO3": "SWE", + "label": "Sweden" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "Contains data made available by Lantm\u00E4teriet under legal terms listed here:", + "https://www.lantmateriet.se/en/maps-and-geographic-information/oppna-data/anvandarvillkor/", + "Contains data made available by Trafikverket under legal terms listed here:", + "https://www.trafikverket.se/tjanster/Oppna_data/" + ] + }, + { + "country": { + "ISO3": "UKR", + "label": "Ukraine" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + }, + { + "country": { + "ISO3": "USA", + "label": "United States" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis).", + "The following copyright notice applies to the use of Post- FSA layer and 6-digit layer: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom. The product includes information copied with permission from Canadian authorities, including \u00A9 Canada Post Corporation, All rights reserved. The use of this material is subject to the terms of a License Agreement. You will be held liable for any unauthorized copying or disclosure of this material. The following copyright notice applies to the use of Points of Interest: \u00A9 1992 \u2013 2021 TomTom. All rights reserved. Portions of the POI database contained in Points of Interest North America have been provided by Neustar Localeze The following copyright notice applies to the use of Telecommunications: \u00A9 2021 Pitney Bowes Software Inc. All rights reserved. This product contains information and/or data of iconectiv, licensed to be included herein. Copyright \u00A9 2021 iconectiv. All rights reserved. The following copyright notice applies to the use of Logistics: \u00A9 1992 \u2013 2021 TomTom. Truck Attribute Data \u00A9 2004 - 2021 ProMiles Software Development Corporation. All rights reserved. This material is proprietary and the subject of copyright protection and other intellectual property rights owned or licensed to TomTom.", + "\u00A9 United States Postal Service 2021", + "You shall not use the Municipal Boundary layer of the Administrative Areas product to create or derive applications which are used by third parties for the purpose of tariff, tax jurisdiction, or tax rate determination for a particular address or range of addresses.", + "This product is built on basis on the following elevation data: SRTM, GTOPO, NED data available from the US Geological Survey: https://lta.cr.usgs.gov/products_overview", + "This product is built on basis on the following elevation data: 2-minute Gridded Global Relief Data (ETOPO2v2) available from U.S. Department of Commerce, National Oceanic and Atmospheric Administration, National Geophysical Data Center: http://www.ngdc.noaa.gov/mgg/fliers/06mgg01.html" + ] + }, + { + "country": { + "ISO3": "XKS", + "label": "Kosovo" + }, + "copyrights": [ + "You agree to include as soon as practically possible, but no later than the first new release of the Authorized Application following Your receipt of any 3D Landmarks, any copyright notices related to the display of such landmarks on every Authorized Application and in the \u201Cabout box\u201D of the Authorized Application. Notwithstanding the aforementioned, TomTom has the right to decide, at its sole discretion, to remove specific 3D Landmarks in subsequent releases of the Licensed Products. In such case, You will remove those 3D Landmarks from the Authorized Application as soon as practically possible, but not later than the first new release of the Authorized Application following Your receipt of the Update to the Licensed Product. TomTom shall not be held responsible for any possible damages, costs or expenses incurred by You related to such removal of a 3D Landmark by TomTom from the Licensed Product or failure to remove a 3D Landmark by You from the Authorized Application.", + "TomTom hereby grants to You a non-exclusive, non-transferable license to use the Software Licensed Products for the sole and limited purpose of assisting You in viewing, analyzing and sectioning the Licensed Products. In no event shall You use the Software Licensed Products to view, analyze, section or in any way manipulate spatial map data that is not provided by TomTom. You shall not derive or attempt to derive the source code of all or any portion of the Licensed Products by reverse engineering, disassembly, decompilation, translation or any other means. You shall affix the following copyright notice on any copy of the GDF Viewer, or any portion of the Licensed Products: \u201CSoftware \u00A92011-2020 TomTom North America, Inc. All rights reserved.", + "Neither the Data nor the Licensed Products such as Speed Profiles or TomTom Traffic or any derivatives thereof shall be used for the purpose of enforcement of traffic laws including but not limited to the selection of potential locations for the installation of speed cameras, speed traps or other speed tracking devices. With regards to Speed Profiles, You acknowledge and agrees that the actual speeds may not reflect the legally imposed speed limits.", + "You specifically agree that it shall not: (i) store the data for more than twenty-four (24) hours on Your servers; (ii) broadcast or make Live Services Licensed Products available except to authorized End Users; and (iii) use the feed or information received via the feed for historical data purposes (including but not limited to collection or analysis)." + ] + } + ] + } + } + ], + "Variables": {} +} diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_attribution.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_attribution.json new file mode 100644 index 000000000000..886ccf9dc250 --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_attribution.json @@ -0,0 +1,33 @@ +{ + "Entries": [ + { + "RequestUri": "https://atlas.microsoft.com/map/attribution?api-version=2022-08-01\u0026tilesetId=microsoft.base\u0026zoom=6\u0026bounds=42.982261,24.980233,56.526017,1.355233", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "subscription-key": "AzureMapsSubscriptionKey", + "User-Agent": "azsdk-python-maps-render/unknown Python/3.9.13 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "98", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 26 Sep 2022 15:11:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-ms-azuremaps-region": "West US 2", + "X-MSEdge-Ref": "Ref A: 9A6E8C5BE0554D9D96F94B59FF035199 Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:12Z" + }, + "ResponseBody": { + "copyrights": [ + "\u003Ca data-azure-maps-attribution-tileset=\u0022microsoft.base\u0022\u003E\u0026copy;2022 TomTom\u003C/a\u003E" + ] + } + } + ], + "Variables": {} +} diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tile.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tile.json new file mode 100644 index 000000000000..0324e2c96713 --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tile.json @@ -0,0 +1,33 @@ +{ + "Entries": [ + { + "RequestUri": "https://atlas.microsoft.com/map/tile?api-version=2022-08-01\u0026tilesetId=microsoft.base\u0026zoom=6\u0026x=9\u0026y=22\u0026tileSize=512", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, image/jpeg, image/png, image/pbf, application/vnd.mapbox-vector-tile", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "subscription-key": "AzureMapsSubscriptionKey", + "User-Agent": "azsdk-python-maps-render/unknown Python/3.9.13 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "max-age=86400", + "Content-Length": "12273", + "Content-Type": "application/vnd.mapbox-vector-tile", + "Copyright": "2022 TomTom", + "Date": "Mon, 26 Sep 2022 15:11:11 GMT", + "ETag": "W/\u0022eadef53c2f46dda3046d02377f68544809bf7ce411d3bff917e723f7ba01e0f3279c355763cbdb17dbd060dcb42f7f28\u0022", + "Expires": "Tue, 27 Sep 2022 15:11:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-ms-azuremaps-region": "West US 2", + "X-MSEdge-Ref": "Ref A: F1DE481C64474A169696177D328890E8 Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:11Z" + }, + "ResponseBody": "Gq8TCg1OYXRpb25hbCBwYXJrEpYBGAMikQEJ\u002BC/gAaIEAAYDCDICDg4mAiITtAFuDUZgLB4BDgYqLSAmChADEhcWCQUJCgUFEQYDDAQgAwAXDR8ADQsLABUVJxMbARkLEQATDRMDKw8ZAw0KEQUVFwEPCQULHwYAAyEWIQEJDwsTGAAMDwwBDA8NAgkNCxMCDwwDCwkKCRMQAAkJCgUSAg4JAw8ICxABCAsPEpQBGAMijwEJyCi/AhIJCAkHDwk8ACIFCAIKBQsNBQ8JygEAwgMSFFpEEjQTGgAaGAABDgICDA4cBAQoBgYFAwMDAwsRCxMdAQMBCQ8IBRIaEgoKDwYUChABBQYKAxweCQoUDhkGBR8JCgEPHQURDwMRBwAGARUDAx0PBwoXIyETBRMIAwwNDwgCDREIFRkjHRUdHxEPDxKTARgDIo4BCYo20AKaBAICDiYJGAQMBxYGDAkMBxoaAgILHAQIBQAeJAABIg0gGxIdAwUOChQIAAYWFhACHQwABhYQBBoNDgIUEwoECBQNHBsmGwgJDh8SCxRBFx8AAAkfAAARHwIBBw8ACRMGHQsAAQ0UEwgPAR8NDQYdFAUKCxwREiECEQ8TEhsFCQQZGgUIDRQFDxJMGAMiSAn8PNIBggICAhQKCgwEHAkCPjIIAxIKLgAEBxQABBgHCBgCEgsBChgMBgMFDh0NCQEXBQ8BCQQJDzEAOx0VGQATDAkJBQ0ZDxIXGAMiEwm0Mb8CMgACDyoNAhkPBw8ADQ8SOhICAAAYAyIyCeA9vkKqAQAVPAAAG1cAAD0eAAAbDgEADQ4CAA4gAgEOHgACDjoAAEoaAAAQCQABFA8SPBICAAAYAyI0Cdw/3juyAQAORAEMBgVIFgAALgsAAA8XAgARDQIAHjsAACsdAAAOHQABOyAAAR8QAAINDxK0AhICAAAYAyKrAgngPro8igkWAAAcEAIBDicAADw2AAALHgEADRABAB5KAAAdDgACHgoAAA0YAQAQHgAAHSABABsfAAAdPAI6AwI8GAICHg0AAAwOAgA8DQAAEA0CAFRnAEkBAJYBEQAAHBwAASRfAAAWFQAAHh0BABsbAQA5GwACKgwAABANAAAeGgICHjkBAB49AAIrDwEACSUBAhoWAgEuGQEBDR0AAA8jAAorBggSCgQUFAUECgEJFQMDDRMRFQMGBwEXCgkDCQYRDAlMAAANPAECKw8CAA8NAAEOHQICLw4AABAuAgAPDgACLg4AAEseAAANLQEAEBsAAA8PAAANHgAAJToAAjsaAQA5FwABHh0AAQ4rAAAQRwACVxoAAB0QAgAPDgAADx4AACsgAAEOHgAPErIBEgIAABgDIqkBCdY5/gzyBAACIgQAHkAAAB7MAwoBRMABBEwBACADAwAZXwAANjcBIw8XAiUHGwERCQEoCwUJBhcAHwwCGh4UDgMcEBIYEg4CWgUICSIPCgAQEQUVEA0JEwIDCCEKJwQRAyMWGRErEB0GBwsRAAsJDQILDR8DGQ8LBACYAQECAQFZAgS/AR8AAB8dAAFdDAUyBAAxyAEEAUE/AAIfXQAAHxkABVsdAAAfDxJbEgIAABgDIlMJvkKQG6ICNwATA0cAABlbAgBgGwIABTkBAjNLBW8DABunAQMoJ6ABzwEeGQ4NDQ8KExIEBg0YAh4leAAAMhwAHAcMBAwHJCIgFwwdGAseAxwADxLYAxgDItMDCb5CgBiqDhsAIQYTCgseHxYjHwsIDQMZCBsAAEsJBAMLGQAPBhMFDQ4VAwcaHyYVAwMMEwERDAUNFwwRFBsIFRQRBQAjDgsKFR4JDgAcEToCAF0OAAwLAxMQHQULAB0TAw0JLQcTBAkHEQQvEx0MAAoPAh0LFQwHBQ0ECwUHEAAUJwQACB8ABxAdAAAYBwAAFjUAAAgfAA8IABAdEBcAAAgVAAAINxEYFQ4GDgAIAQwIAgIMAgQBFA8CAQgNAgAcDRoCCAkIBAYEAwUFAwMCGQQHBBsMAQIHDAECExARAAkJAQARBBEHGRgNAwALDQYACyoABAUYAQAINgAQDRAXDgAQDyYAAB8gBxAPHgcABSAAIicQAAAtEAMgFxYCEA0SJRQDCA0eFQMLCB8LBw0fGwcJCAcRAm0fAAAPXQENEAcHFhEAIz0AAA19AAIPTQAADS8BAMkBHgIICiAECg4SAAoIEgAIDB4FLA8aEiQVIgQ6CwQJFAEOChYPEgYADw4HDCMGBwFZDw0TFQcACw8VAhkNBR8gCxgACAUOCAIpDggcAiwKFgEkEB4BGgQANV4AAhoIFAcAADAkBDgWCgccARoCCAggBB4AFBEWABAIEhYGAQ8SmQIYAyKUAgnENZILqggEAAMCAQADAgIuDwgBkAEHAAAgHggAEBAIDwYIHBQaDgQBFgsCCxEFIAIoCBYJJAoJChYCAA4QBgUKHAYGBwEHFwsABw8JAAEPCQQBAAGEAQgWCAAALgYQGB4AHgYQIAIACBgCAEQkAgYQAxAgDgAgFgAAGBAIMAAAGAgAABgIEBAAAB4OEAIYBgACIBIOGgABDhsDDQkNFyMDDgcPJwATDSkTCw0CBw0fCQQNEQkJEQAVEwULEREHGRAEDxcTCREcAgEfFwcLCwUZDx0LAwUnDwMIIQ0nBA0FHQAdAx0LFQMXAiUKDwsxFREGDQ0VCx8LCwQFLgAAGR0AEAcKDxA1AA8JDQkfBgsWEQgrDxJWGAMiUgmSPpAqqgIGAgYABQgBFg0BAA4PAgEeEwIBKggCAE4DAgkHCykLAQcPAA0ZBgEYMQQDCAQjLAMYFSQJACAIGwEjEgEEExYRBAkCAwEEAgEEBQ8SRBgDIkAJujiSFOIBAAIEEhAOEAIALg8AACgQAgAmCAAAHggIACYQEgAeBggYAgBoAQATAwk7CycHMRVJFTUPVw4BABkPEl0SAgAAGAMiVQmOPo4WsgICACgWEgMMCBIDMggMChQEAB4GDA8eBBYLCg0AAF49ARcSDQAbCAsYDQwAJE8dDw1NGQA1AZEBBgkoAwATDA8IBg4DCAYYDRYMFgAACQ8SZhgDImIJrj2AKeoCBBAKCgMSBQMBAAIAAwAFCQAIBAQIBA0IAAQCCgAJDBACFQYFCgwHDggNAgEgEgAMERIDBwMCDQQOAQYMDgsAKhAWCxYfBAUdBhMJDxUJFSEODgQXBQcCKQwTDxI5EgIAABgDIjEJvkKYD6IBAwITFQ8HFQATEh8AHQMfCR0CCQg3FSMDAi8CAAAMQAA2BwoEIgCOAQIPGghjYXRlZ29yeSIICgZmb3Jlc3QogCB4AhrdLAoMT2NlYW4gb3Igc2VhEt0CGAMi2AIJ5jS0BZoKAgIIDAAMDgoeDAYFGhIUBBoSPhQwDBICOBQFACQKHhcQDyAJEAsYCQEJDAEDBQYEAgIAAQMDAAEBAAABAQUCBgACAAMABAADAAICAAABAAIAAgIAAAICAAEAAAEAAgABAAICAAYCAwYNCA4QAhYUEQoICwEDCBsMAQACAAEAAgEBABEGAwgZDg8SAAgQDhACBgQUABIKCAUECBoMKApACA4MChAADhwKIBQOBjIWPhIUCjIODhAQBw4OGA4kBgQBEggKAhIMGgoICgAOEgYYBw4CChQYEg4CBgUeBSgIFg4SBhQcJA8QABAJAAYSAA4OBQYYDAoCGAsFEgoWEAMUCggBBg4QCgEGGhIWAwQRCgMHAQQPGgMIBAgHDAAKCQUgDxICCBAAAhIUrgGdARthF7UBL7sBLw8FkQE9DQPrApcBswFJtwFLrwFHARUENQplDxKKBRgDIoUFCYhBvwKKCwAYEiIUBAgOFh4MDg4LDSkhOQUHjgEAAMoBGR0jNwUICQMAEAUKDBgEAg4WAgABAAACEBgeIAgEAFAVBx8bDQ8XDQEAAgIDCAASECAHDAYaAwoYFgsDEhQDAiYaFxQCBg0QAiQBFhIMEhQSEAQEABAFAQ0ACwoIBgYMBw4TDgAMFBYBBhwYAIYBAAsHHRkTABcREwsFEQ8hDREAJQ8OAQIHBAISCBEJAwsGAQ4PCgQSEggFAhUSJAoBBBAKCAAPDRsBCxgbCgELDQQZDQMVDwkKBRQPKQIHEAsQAgINBw8EBwUTHwsHDxsFBxUCCQkNAwgNAAULHSUJBQULAQMCBAADCyEEFgkCBxcfEQ8hCw0ZCxEPCQMVIwINDQMCAQQBAwIXFxMPAAUNBAUHDBEACCwgBAEgIhQIFBoBEQoECA8HHxERDwEFBwANEgMUBA4TDAEABw0HAAsHCQEBAgIBAAcHAgUJCw8JpAL0AaoBAAIaGAACAQECAgoICwcKCgYEAgIBAQICAgIEAgMBAgIEAgYGBQUIAhUXDwmfAVeSAQEAAAgLARIeBwYGCgUGDhwWCgMEDAoGDQEfAyEHEQQJCQIECA8JMhAqAQIUGBQKAgUlGw8Je3GSAQAQCQYFCQ8HBg4GIhAkEgIGGgoDCxsKAhgPAQsLEwsHCRUNBw8J4gHeBkITGwcDBRUFAggHFAoICwQTDwkAjAKaAQcCAR4GEgEWESIDFAQKBwcAFwgRAQkKCwMRDREFEQINDBEUAwYDDwkA5AMiBwIJIQoHCBEPCQC0AqIBDQQxBxO1AQgCCAkUBAAIGBEKAwILExMJEw8HCQMKAgEDBAIUDB4OBgUPEj4YAyI6CcxAognKAQACCAwRAh0WGBABBAcKAQwIDAEMDRcGERMKDQAVCwQDHAwOAxQHBwENBgcPCA8eFwoDDxLlAhgDIuACCbAovwKqCgQKCgEEBxgACAQGBgQIAQcECTYAEhAeIB4WGCIAFgYUBQAODgoCBA8KBRQGDA4YFAIICxAMBgoUBwEKEBIABQQGAAgSDggIDBgCAhAKCQgOBxAWAQ4gygLSAV4yHA4MBQIMEAsGCAAHEAEODAYUCAQACwoACg8DBRYZFA4BCBMeAwAIJAUCAhQSFAAOGhoIAwgIDgkaBBIILgwQDBYCHAwcAhwSCgQWFA4AFgwYABAODAMFGQADBgsQAwYGCgkGBhwVBBsQGwwHCA0MABAZDAcMAgMNABEOGRoVHCkMCwYTBAYKCwoEAA4GABEQAwoCFhEOCQQFChEKFyQGFAsWDRIRAQ8OFTACBgkOEwwFEBUCBQUHCBMJCwgEGgIICgISEBQFEBQEEAoMFgoGDAwICBoGAQwMCgUOCAVAC3YAPKsDrQHRBPMBgQOfAd8E\u002BQHzApkBswTnAV8nDxJsGAMiaAnSM78CggMDFgIcBwYFGgcKBRQBFgkMEwwRDgMSERI7Bx8MERAACgkGEggNBAAWBAwVBwkNBAMFAhEIBQwNJQgDBA8OBBQJBBEkGQQGJAUOCCIDGhcCDxwRDB8AFQYLAB8XCQEJGAUPEiMYAyIfCZAwwwFiAgwJCA4CEAwDCgoGARQxCwQZBgEHCw4PDxJGGAMiQgmKML8C6gEEEA4cCQgICAcGCRgAEBMQHSIADhoCAgYbEA0JARMECwEPDA0ECAwXCgoMDwQLAhULCwMPHgUJGwMDDxL1AhgDIvACCfIviwGiBAIAJgweAgAGGgoOEC4SJgQMJgsKCAgKFAYDBgwIBQQOCQwDDggGDQYREgMKFwAECgkGBg8lAQQGCwQlJAcaAAQAAxcKBxIJABMgDQoFDhECBQoICBESDQMNCgoKDQMCEHU93wGPAcABwQEWBRgCFhIQAgwKAAwKCA4JEAUIBwMFGAkIFQIBBAcIAAwLDwkxwgJKAQAPGAgOCgcCCQwBCgsHAg8FDwkUIUIBAgkICAEBDBAQBAwMJRcHDwmfAUVKAAIGEBMBAQQCDAwIHgcPGwkBDwmAAiWCAQECAwYGAwMEBwYDEgkBDQYFCgQKDgUQDQQCFAcOEQsJDwlWfcoBAQAHDg8CDRgXFggQCQAHCgYBBgwFCA8EBhIIBg4HFgAIFxQDBhEGAwIDAwIIJQwLBRUPCccCPDoECBcKAQYaCQMIEgMPEQ8JFBs6DxIWAwoKBQgaCRMPDQUPCWBNMgECAQwLGg4GAAkIGQ8SHRgDIhkJnDC4AUoAAgIiCw4RBAEGBwUKAQIBFBEPEk0YAyJJCZore4oCAgAMHAYACBAQDBgeBgwKAAgGBwgMAgQMBgEDBAEAFQECBREPCgEdHxEHAQYTBxAFBwkXCwEAAAIAAQEAChEDBQoHDxJSGAMiTgnULcMBkgIUBigGGA4MAAQuBAYNASEQDgIBCL8BwgFpQQslBgYkAAUJCAYSBgwJDgMACQYFBA0UAwIPEgsMEwwAJB8BDRAPFA0DCw4HDxIyGAMiLgm8MekBmgEGBg0UCAIYFBQKHiANBgIIDQgFBQUVDQ0BBycRCQcDCQwJCgQKEw8SLhgDIioJ6i2DAooBAgAMBAgQEAkKBAQmEQgACAwGBQIVAScJBhMHDwoNAQkMAw8SaBgDImQJoDGpAboBABIWBwgGDQgMBggDDAYECg8BAwYKCg0UBxYRABMDLRENDw0BCAUMBhIJGh0aEQ8JCBiiAQkGFQANCgEIDwwKBAUIGAoODRADAhMIBAwNCRQMAAMJBgQIBwsHDQcPEjAYAyIsCcAvgwKSAQMILxIPAB8MDQIBDBEHEwwHAwMfBgQcDCgHFgkIABoNBAgeCw8SQhgDIj4JokGeCdoBBgIBGgICEAQPAwAOGQQBCgsDDAMFCQUKFwcFEwsEDQEJBg0UEgIFDAAFCwULBx4XOAEWBAwNDxInGAMiIwmKQYwJcgIACBIOBwgCBwYRFhUDIwAIEQwFFgACBggJCQQPEh8YAyIbCaAwuAFSEBQOEQoCDxIIAAcEDwEABwkNAQEPEk0YAyJJCewcvwKaAWAowgKEAeYE/gHgBPoBggOgAdIE9AGoA6wBEwDZAUdVHbsBP4cDgwG7AT/NBfMBrwORAcsDmwG/BMMBwR0AAJMBDxIbGAMiFwm/ArhBOtQ\u002BAAMuABgHHgUeAgTDPgAPEv4DGAMi\u002BQMJvwKrAYIPwh0AwATEAcwDnAGwA5IBzgX0AbwBQIgDhAG8AUBWHtoBSAcKAxYAGgoeBgoWFhsIIRYbIAcOBRwAHAoiChAADAocDhwYEgEQBhgKFBccDRgBDAMmAgwOIiMIIRgZKgMOAB4IIhAYDCgMEBISDCQOFgMqBA4PGgUaBiwJJgAcBiAMGBQUHBIDJAokEBggGA4eCBwaJhQSEg4gCgwiCA4AAQ4SHhQIFA4OCigOFg4QDggQGg0SFSgJIAIkCBgQGBIQGAwYCB4CIgcIGgAUAhoIFAoOGqQBBiYFHAIcFDwRHgMQABwMNhQ8DBguLAAiDCQWICwcEE4WUAweARwMKhREBDYGGgBWBCgBFglIABQEPgQSDiYkIhZCCjIKOgxQGm4UXAx6AdoBBBABLgIQAFwEFAFSEVoFDAciARoHEgMmFlIOHBQcEg4gEiAIGCooZBRIBjQEPgckDw4dJg8GHRITHgcUASIIJAoSFBQeEAIIAh4BGgIYBhARHgcWBCgLEAcWAyICGgwWGBocDggQDAoBQgUgADwDDA0eASgHGgAkDCQCEBMQEyIDGAIcDSwAIggUFiAMCgESCTwXEhEoBR4AGAQaEhwWFgYWBBwFNg8aBx4CFAwoCA4AHgc0ByANJAkQCx4RQAMcARwIIAgSAQbTPgAPEpMDGAMijgMJhDy\u002BQpoMAQMGHQgdABUGNQcRBx8CGwQbEj8MHQoPDiMIHwgzAB0HDQsnARMIHRAZBjUDGwUVFRURGwMZABcGHRInGBEKOwIRCwkVHwcTACEOKwEbBBcUIRQPAQ8LIwAjCBkCJxIpADsGHwJBCwkHDxsNFxkLFQEZBCEIFQwPAycIFRIdBQ8BFwIdAx8dERMTCREHIwIhCBMUHR4REAUeJRANCCMDPQUzE0cnYxcpHwcfERENExsNGxFBGAF4Ax4BBBIEDBQoAQYQCAIGHj4YOAwoECAONAIeDjwIagUuCSATAg0EDwwDGBkUABIOCAgQABIIAggSAi4EIgEcBCgDLgUgASoTGgIMDgMIDAEMBhAWEgYKBBgAGgQIAFYEDgUKCVwFGAAYBRwKCAcEBiAFJAASAxoNJAUBCxAKBAQYBxIKDgwcDhINDAVWC0QREiEOBgYmAwgGDCYCFAA4B0gFDAEiCQ4OBAQcARwBPAMICUILOg8OERgGDgkMAhYDChAAAhIJDgI0C1AHKgMcDxJsGAMiaAnUPZw4ggMSBA4QEgYYBAALDgEHFAkKChIEGhASARIKCAEIEAEGAQUCAxgHEg8CBBAeDgIGCwUFAQQGAAQBGAIXAwEBAwEABAQBCgELAQEHCQ8LBQ0VEw8JExMHJwANCgUADQwXERMPEicYAyIjCdw9tDpyAAICCg4GDC4HFAsQDQoHGAURAh0OLwgBCxcGCQ8SJRgDIiEJ7j3gPGoDCg0AAQYBDgoGCxIFAAMRAAkMCQAJEgACBQ8S6gEYAyLlAQm\u002BQrIN0gYDBRcLDwMTBgcKEwAHBBUBHwkTDx8LDQAnCQYGEQwPBQIHDwoLARcEEwo5AQ0LBQgTBh0CCQsLAxUEHQAfAwcLJwYNARUFAwkTAhEHDwAVBQsFAwsvFw0LARMGCQ0JGQAFBR8THQ0VDScPGxUTAEUJFQklCQsNDQkfBhMFHR0hDQ0TCQErHQcBBwkpGQ8ADwsZHQsEBQkNAAkHCRclBSEBDQMLBg0FFQIVCA0HExAFFwUBCW8BcQADDAakAUK4AUy0AUrsApgBDgSSAT4QBrwBMLYBMGIYxAEiDAIOAw8S8AQYAyLrBAnWNJwIghMAAgpuBgIGJgQKFAwKEAIMDgoACgwMCloACgkODBoBFgMWFRIJEBQgAhoPNgkQBwERFgcEARAQFAgWDhoFDhQOCBABEAoQCxQBJgYKAQ4MFAQgACAGHAMODiYHIgYICgAGJgoEDhQIJgEOBwAEDgYDEhQHBgoQGhIDEjICBggKAQoOABIKBAAMDAIGCgMOEAAQBgoSFgAMDAgWBjAOHA0IEAAKBggDEBoWEggSCBwCFgo0GDgIIAQWCBIIMgwoCCwGMAgqDmwAJghIAjAKDgYkAh4IFgMEHgwKFgocDDAgABQUChAWUgQWDCYIJAxCCjwIHgAODEoCKAZ0AkQDOAMmAB4HAjwuBgIMLggQEEoMQAhQAiQDGAQQCgYcjgECGAciBCICMAQUAjQEGgJgAmgBRAA8ASYEBgVWBSoFHgkMBAYFHgEeIBsKDA4BBhQBBFUEVwIDFQQdCBECGQghBgsSWQJRAxMAWwEPAi0DDwLZAQt5E1sZbQtPCTkJMRVBIyENJQMRAz0AEwxdAycAVQUZAzUTQwspAhsLHRVPD00rGxUfCyMAIS0rCxcTOws1ABsEDxIdEzsBGwYbCTcVkQEJDQcTARkAEwcZIQgdARUFGQ0RDw8XBxcBIwofFicOEQ8XDQkNDw0VCSUNDwcTHRMNEQACCxcHFx8JEQ0TERklBxsNHRsTExsJIwQjGxETEwsXBR8AGwolBSsGGRAZAw0EKQ0VCyMREQsPCycJCwsfAR0EGxopIhckBw0hAQsEJQILDhcYGwkTBRcCDxcRDRsJGwALCQ8JIQAbBhsIDRwfIhUUBQ8SkwQYAyKOBAmuPrQk\u002BgwEAAkCAQIJFAwMBAIEBAMDAQMACQIMCgoGDhIEEwEHDggBDhYiDAgODAILBAwGAAgJDhcGKx4RDgsBDxAFAwwMAyoNBgsKGQgCJAEOBBYYDg4OChwCFA4SBg4SBAQaBwYCHAQQCAAFAgkCAhAPBQUNDQgCEAUSFw4BHAgSBgAaEA4UAxQKDhABFAgYAhMCFg4OBAoYBiwOAQIAAQIDCAIMBAIKAgUMBAsHAQMAAwMABwIBBAcNAAEABRkRIxcLAQoBCwkJCwAEEgIQAQ8LExkBAQIDBgIHCQcAFQETDQkDEAoYAwwMDAYOFRIDFBEEAA4JEA8KAwgJAREIHQAFDQATAQYAGwNHBREBFQAdBSMBGQIACAEHAAIRCAcDGQA1BB0AJQkXCwcDEQ8dAREIEwshCQIJDgQTARcbjQEoEB4SHhgKAQkDDQ0LAwAJCwMQAgAKFAAYDgASBwcGCAQEAg8uDgIHEQUNDxQIAgcTDQ4BBg8DDQYNAAoBBhAGGBYcABQDAgcDDQEFAgYACQoLFgUIBAELAwEPCQUJAAcKDQIBDwl3zASCAwEABwIHIgAcBgYDGA0NFiIWCgoQBRIGFgEKEgMSAAoVDxcAJwkEAQ4DDxEAEgUGCA4RAgsPDQ8DAAIHDAYNBwkHBAAYBwcECwkEAAoBCQADCgECBwkDAAkQDAQPCQkBDw8SIRgDIh0JwjX4CVoGBAsAEhAIGAsMBhQFGA8KBQUJWQ4LDxJuGAMiagmIPKYiigMCAhgKLgYDBgcsDxAGAhIDEg8EAwYBEggLAAkBBAoRBg4SDAQKEg4GCwQEAAkABQwBCR0jEQECDgoCEwYJEAQNCQQHEQQFBAUDBgIHCgUNAAUGBAUFBgENBwQNJQwFBBcFCw8SORgDIjUJvDz4H7IBAgIUEhoKECABDBYMFxoCBoMBYgUJCwYJAQclBxcBFwQdCxEHHQYTJBMWAy4EDxKCARgDIn4J\u002BjzuINoDAgAWDkAAEAEoBAMICwEFChECAwgmBSIADAYKBSQICgMFCAoDBQQOCgwCEgkWEQQGDwwNEikMHRYTBDcSKRQnAQ0OCRgLARcIHRAtBR8PAgEJAg0NCAELAAcSFQM7LR4FHBUQAAQDIQIJCAgJFgkFCBoBFAJ4Vw8SGxgDIhcJ4DmiC0IMADoKAAIFBhcKDQUXBQEJDxIhGAMiHQn0NZoJWhAAJAgQGhUMCwIJAQ0RCgMLAAsRBAMPEicYAyIjCZJCnA1yBAQVGBEMCQAbBxMACQULDQYDIAoWAggDFAASDQ8SHRgDIhkJvDSkB0oSAAYCAnYVFQUJCR0BDQYhCAcPKIAgeAIa9AIKC090aGVyIHdhdGVyEs8BGAMiygEJvkKqLYoGBwADBA0KDgkDEB0SHyABHg8ICwUbCisYDQELCRUONQATFwMEBQQJCAAUDAECAgYMCAMMAwgCBRADBQQHBgEFAhUEBQIADQ0AABMICQMJCgYHFQcCDRkKFQsEAw4TCgYGDwIJAAoBCQItDBsFEQoZAg8QIQULCgcbJxUCByENBwoPAxEdEgAXIRMSEycHGwQBBBsFCwQbDgUCAAACDgwUKCQIHBQQFhgYVAhUHzYHNB9AIB8KCAYgCwYEOhFaBkYJCgMPEo0BGAMiiAEJvkLyLIIECQRFClkFORJNJzMgNQhTIFMHJy0bEyMHEycNCw8EAxwGDAAEARgFEQYFFwsBFRAbCAYYGwIAIgYcFCAHAwYTBAIWEA4OHiIeAgoUDCAKGAAIDQoBDBUQBQwNFgEIFRgHJBYQAw4hIAQGFzIHBA4KBgQUAR4OCjAEFApSAQgHKgMPKIAgeAIaSAoNUmVnaW9uYWwgcGFyaxIyGAMiLgnMQOgXmgEASCAADgwVBh8UCRQREg0CExITFRcAHRkVDxwhHA8SFSQTGAEeCQ8ogCB4AhqlBQoWU3RhdGUgb3IgcHJvdmluY2UgcGFyaxIbGAMiFwm\u002BQpIHQgUIAgoRABAfAhMFFQIbCAEPEk4YAyJKCdo5jgeKAgoAAB4ICgICFgAcDRkYAgwwGA4HBQwoFDoOJhAsCAgGJgIIHgACIRkNCA8PMQ0TCRsFHwtBGx8TGwkADQcJCQsAEw8SyQEYAyLEAQm\u002BQvA1KhEECwsPBxIVHAAPCQCWA/IBDQALBh0HGwALDx4LHwwFGRAADAkUBQ4TAR0XCwkhCA8NAQ0GBw0ZAAAPCwAIAyAIHgMOCR4IDBYMBQYFDwkA8AGCAQMBCxADDQ8DFRERCAMNFRkBDxISHAAgCg4SDREOBQwADwkAqgOKAjEABxcQCQkLAwgPEwIjFgYDAwkFCRMXFQEhCRkCCQIKIgQLHRwZAhIMCwUNCBcKDRcMBgcRASIZDgUIDQcLCgQGAQ8SLhgDIioJ0j26OooBBhQJJAEOAzAIEA0YBhIAGAUAAQcvBgcFKg8MEQxXAg0CJw8SQhgDIj4JiD2kLdoBCAQGDA4IAAgBARECFiAKBAoLHgoFEg0ADgoACgEFAAgMJgEOCwQJGQsGDRsOAA0FJU8PBRQTDxIwGAMiLAnMPdIxkgEABAgODQAHGA0OABYIAAIUChAKAAMOCQALCwATExUBERoTBhkPEi4YAyIqCcQ9tjSKAQIAEAQDJhIOCgAAEBUMACIgAAgPAB4pAA0HCykNBAENFBcPElQYAyJQCehAwDGiAgQCCg4OAAAQEAEAHksCBxEJDAMSBgAABg8CBxgEEgACCxgNBg4NAg0IAwUVDBMCAwwBBQAAAQQVDAcAAQgIABMPAAANEAAADw8SIRgDIh0Jvjy0JloCAA4mBxICEhAeBBIQEDcACWkGEQoLDyiAIHgCGoYICgtFYXJ0aCBDb3ZlchIgEgIAABgDIhgJ4Dy\u002BQjoASSIAAJEBIQAAYaADAAC\u002BAg8SGBICAAAYAyIQCYBAvkIaAL0CvgIAAL4CDxIhEgIAABgDIhkJuEG/AjponAEeGACMAdEBACM1I6MBImUPEjQSAgAAGAMiLAmIK78CegBWmgE5NxuWFAAAwALrDwAAOU0AADq9BACXAXMAdU05vQEACRsPEjgSAgAAGAMiMAm\u002BQoAgWr0CAADnCyQ1bgAAa20AIzcAxQW2AQAAOIgBAA8JYdgEGgDaASRsAMUCDxIhEgIAABgDIhkJvkLmCjrPAQBtbQDhByQAIzcA3QG\u002BAgAPEiwSAgAAGAMiJAm\u002BQuYgYm0AADJuAADoHr0CAACZEmgAAGMhAEUxAM8MvgIADxKXARICAAAYAyKOAQnuNIoJogPcAQAAOGwAlAGkAZIBNrYBAG44JG6SATbKAgAApAFJAAA4SgAArBHtBAAAoQEjAADVASMAAGslAAA1RwAlawBrIwAAwwIjAAChASMAAGslAACjAUcAJaEBRwAjNwA1SQAjNQBtJQAAowEjACOPAiMAJTcANW4AAMkCIwAPCW64AxIA2gFIbQ8SiQESAgAAGAMigAEJ4DyAIKoDoAMAAIINiQEAADKLAQAAlQFnACFkIwAhMQCVASIAAMUDIQAAlQEiMyQAAGYiAADKAUYAAGREMSFlAGMhAACXASIxIgBDMQAxZwAAMiMAADEhACEzAJcBIjFFAACXASQAAGZEAABlaAAAMdIBACIzIQBpMQAyqwEADxJNEgIAABgDIkUJgDAAwgHuCAAkcJIBAG1vygYAAPgJtQEAADW3AQBHb6UCNUdttwEAkQFttQEAtwFvI21tAG1t2QEAJW\u002BRATUjpwFuNQ8SgwESAgAAGAMiewmCPYItogMiAABkRgAAZEYyaAAAYyEAADFEAEYxALgMiQEAAGFpACQwADIiAABiJDJEAAAxRgAAsgX9AgAiMQClAiQAAJMBRQAiMQAvJAAAkwEjAABjJAAA9QEiAAD3AUUAAI0DIQAAYyIxaAAAqwJDMgBjIwAAMSEADxIXEgIAABgDIg8Jti0AGoACAGumAZMBAA8SGxICAAEYAyITCYw\u002B/C4qAPoBIQAAlQEhAAAxDxIVEgIAARgDIg0JvkKYIRptAAAxbgAPEh4SAgAAGAMiFgmQO4AgOmgAADIjAACaASEAADMhAA8SGhICAAEYAyISCeo95i0qIjKMAQAAZGcARTEPEiQSAgABGAMiHAmwPoo5UkYAAGKKAQAAYkUAADJDACMxAGEhAA8aCGNhdGVnb3J5IhIKEHdvb2R5IHZlZ2V0YXRpb24iCgoIY3JvcGxhbmQogCB4AhqzAQoSSW50ZXJuYXRpb25hbCByb2FkEmgSBAAAAQEYAiJeCZhCkAciAAQVZzojAgIJGcYBEgs5AAMJGIMBOi0YGEYGiAEcFAIAAQAbGwkeiQKaATfLAbsBvQEZRQlvHkVBUV2jAUE3G0MAKRxwcn4uXERMFz4CfhpGwgHGAS6sARoMY291bnRyeV9jb2RlGhNjb3VudHJ5X3N1YmRpdmlzaW9uIgUKA0NBTiIECgJCQyiAIHgCGkoKDElzbGFuZCBsYWJlbBIRCAASBAAAAQEYASIFCco3hQIaBGljb24aBG5hbWUiAiABIhIKEFZhbmNvdXZlciBJc2xhbmQogCB4AhrQAwoTTmF0aW9uYWwgcGFyayBsYWJlbBIREgYAAAEBAgIYASIFCdo/swISERIGAAABAwIEGAEiBQn0OrwBEhESBgAAAQUCBhgBIgUJ6D2OCRIREgYAAAEHAggYASIFCfoqmQESERIGAAABCQIKGAEiBQmmQtAHEhESBgAAAQsCDBgBIgUJ/kCQEBoEaWNvbhoCaWQaBG5hbWUiAyCpASIRCg8xMjQ1OTgwMDAwMjkwNTIiIgogUm9iZXJ0cyBNZW1vcmlhbCBQcm92aW5jaWFsIFBhcmsiEQoPMTI0NTk3MDAwMDAxODAwIhwKGkdvcmRvbiBCYXkgUHJvdmluY2lhbCBQYXJrIhEKDzEyNDU5ODAwMDAyOTA0MiITChFGcmVuY2ggQmVhY2ggUGFyayIRCg8xMjQ1OTkwMDA1NDU3NTMiLQorUGFjaWZpYyBSaW0gTmF0aW9uYWwgUGFyayBSZXNlcnZlIG9mIENhbmFkYSIRCg8xMjQ1OTkwMDI2NzczNjUiHAoaR29sZHN0cmVhbSBQcm92aW5jaWFsIFBhcmsiEQoPODQwNTM5MDAwNTIxMTAxIhcKFU9seW1waWMgTmF0aW9uYWwgUGFyayiAIHgCGs8DChJOYXRpb25hbCBwYXJrIG5hbWUSERIGAAABAQICGAEiBQnaP7MCEhESBgAAAQMCBBgBIgUJ9Dq8ARIREgYAAAEFAgYYASIFCeg9jgkSERIGAAABBwIIGAEiBQn6KpkBEhESBgAAAQkCChgBIgUJpkLQBxIREgYAAAELAgwYASIFCf5AkBAaBGljb24aAmlkGgRuYW1lIgMgqQEiEQoPMTI0NTk4MDAwMDI5MDUyIiIKIFJvYmVydHMgTWVtb3JpYWwgUHJvdmluY2lhbCBQYXJrIhEKDzEyNDU5NzAwMDAwMTgwMCIcChpHb3Jkb24gQmF5IFByb3ZpbmNpYWwgUGFyayIRCg8xMjQ1OTgwMDAwMjkwNDIiEwoRRnJlbmNoIEJlYWNoIFBhcmsiEQoPMTI0NTk5MDAwNTQ1NzUzIi0KK1BhY2lmaWMgUmltIE5hdGlvbmFsIFBhcmsgUmVzZXJ2ZSBvZiBDYW5hZGEiEQoPMTI0NTk5MDAyNjc3MzY1IhwKGkdvbGRzdHJlYW0gUHJvdmluY2lhbCBQYXJrIhEKDzg0MDUzOTAwMDUyMTEwMSIXChVPbHltcGljIE5hdGlvbmFsIFBhcmsogCB4AhqTBQoRUG9pbnQgb2YgSW50ZXJlc3QSIQj8mqDco6ocEg4AAAEBAgIDAwQEBQUGBhgBIgUJ2j\u002BzAhIhCIiys/\u002BfqhwSDgAAAQECAgMHBAgFBQYGGAEiBQn0OrwBEiEI8pqg3KOqHBIOAAABAQICAwkECgUFBgYYASIFCeg9jgkSIQjZ86q5p6ocEg4AAAEBAgIDCwQMBQUGBhgBIgUJ\u002BiqZARIhCPWArbqnqhwSDgAAAQECAgMNBA4FBQYGGAEiBQmmQtAHEiIIjYOv5POOvwESDgAAAQECAgMPBBAFBQYGGAEiBQn\u002BQJAQGghjYXRlZ29yeRoLY2F0ZWdvcnlfaWQaBGljb24aAmlkGgRuYW1lGghwcmlvcml0eRoLc3ViY2F0ZWdvcnkiGAoWUGFyayAmIFJlY3JlYXRpb24gQXJlYSIFINi0uwQiAyCpASIRCg8xMjQ1OTgwMDAwMjkwNTIiIgogUm9iZXJ0cyBNZW1vcmlhbCBQcm92aW5jaWFsIFBhcmsiAiA8Ig8KDU5hdGlvbmFsIFBhcmsiEQoPMTI0NTk3MDAwMDAxODAwIhwKGkdvcmRvbiBCYXkgUHJvdmluY2lhbCBQYXJrIhEKDzEyNDU5ODAwMDAyOTA0MiITChFGcmVuY2ggQmVhY2ggUGFyayIRCg8xMjQ1OTkwMDA1NDU3NTMiLQorUGFjaWZpYyBSaW0gTmF0aW9uYWwgUGFyayBSZXNlcnZlIG9mIENhbmFkYSIRCg8xMjQ1OTkwMDI2NzczNjUiHAoaR29sZHN0cmVhbSBQcm92aW5jaWFsIFBhcmsiEQoPODQwNTM5MDAwNTIxMTAxIhcKFU9seW1waWMgTmF0aW9uYWwgUGFyayiAIHgCGi4KDFN0YXRlIGJvcmRlchIZGAIiFQnYPO4sMhBJkAF\u002BUAjCAUVIJOwBFyiAIHgC" + } + ], + "Variables": {} +} diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tileset.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tileset.json new file mode 100644 index 000000000000..72f3c838553b --- /dev/null +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tileset.json @@ -0,0 +1,49 @@ +{ + "Entries": [ + { + "RequestUri": "https://atlas.microsoft.com/map/tileset?api-version=2022-08-01\u0026tilesetId=microsoft.base", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "subscription-key": "AzureMapsSubscriptionKey", + "User-Agent": "azsdk-python-maps-render/unknown Python/3.9.13 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "365", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 26 Sep 2022 15:11:11 GMT", + "Expires": "Mon, 03 Oct 2022 15:11:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-ms-azuremaps-region": "West US 2", + "X-MSEdge-Ref": "Ref A: A37E85465DA3456D9B91F11297772F6A Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:11Z" + }, + "ResponseBody": { + "tilejson": "2.2.0", + "name": "microsoft.base", + "version": "1.0.0", + "attribution": "\u003Ca data-azure-maps-attribution-tileset=\u0022microsoft.base\u0022\u003E\u0026copy;2022 TomTom\u003C/a\u003E", + "scheme": "xyz", + "tiles": [ + "https://atlas.microsoft.com/map/tile?api-version=2.1\u0026tilesetId=microsoft.base\u0026zoom={z}\u0026x={x}\u0026y={y}" + ], + "grids": [], + "data": [], + "minzoom": 0, + "maxzoom": 22, + "bounds": [ + -180.0, + -90.0, + 180.0, + 90.0 + ] + } + } + ], + "Variables": {} +} From a85a6f69cdacef65e06a15ad28b47b04f8d08cef Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Tue, 27 Sep 2022 02:05:29 +0800 Subject: [PATCH 09/14] update according to comment --- sdk/maps/azure-maps-render/CHANGELOG.md | 2 +- sdk/maps/azure-maps-render/MANIFEST.in | 1 - sdk/maps/azure-maps-render/README.md | 12 ++---- .../sample_authentication_async.py | 37 +++++++++++++++++-- .../sample_get_copyright_for_tile_async.py | 3 +- .../sample_get_copyright_for_world_async.py | 3 +- ...e_get_copyright_from_bounding_box_async.py | 3 +- .../sample_get_map_attribution_async.py | 3 +- .../sample_get_map_static_image_async.py | 7 +--- .../sample_get_map_tile_async.py | 3 +- .../sample_get_map_tileset_async.py | 3 +- .../samples/sample_authentication.py | 29 ++++++++++++++- sdk/maps/azure-maps-render/swagger/README.md | 2 - .../tests/test_render_client.py | 10 +---- sdk/maps/tests.yml | 1 - 15 files changed, 75 insertions(+), 44 deletions(-) diff --git a/sdk/maps/azure-maps-render/CHANGELOG.md b/sdk/maps/azure-maps-render/CHANGELOG.md index a8f847a28078..c75caf041d69 100644 --- a/sdk/maps/azure-maps-render/CHANGELOG.md +++ b/sdk/maps/azure-maps-render/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.0.0b1 (2022-09-06) +## 1.0.0b1 (2022-10-11) ### Features Added diff --git a/sdk/maps/azure-maps-render/MANIFEST.in b/sdk/maps/azure-maps-render/MANIFEST.in index 79b7846fcc26..80fb94d2ed67 100644 --- a/sdk/maps/azure-maps-render/MANIFEST.in +++ b/sdk/maps/azure-maps-render/MANIFEST.in @@ -1,7 +1,6 @@ recursive-include tests *.py *.yaml recursive-include samples *.py *.md include *.md -include LICENSE include azure/__init__.py include azure/maps/__init__.py include azure/maps/render/py.typed diff --git a/sdk/maps/azure-maps-render/README.md b/sdk/maps/azure-maps-render/README.md index 843460abdb05..6a174e59d535 100644 --- a/sdk/maps/azure-maps-render/README.md +++ b/sdk/maps/azure-maps-render/README.md @@ -75,7 +75,10 @@ from azure.maps.render import MapsRenderClient from azure.identity import DefaultAzureCredential credential = DefaultAzureCredential() -render_client = MapsRenderClient(credential=credential) +render_client = MapsRenderClient( + client_id="", + credential=credential +) ``` ## Key concepts @@ -212,13 +215,6 @@ logger.addHandler(handler) ``` -Similarly, `logging_enable` can enable detailed logging for a single operation, -even when it isn't enabled for the client: - -```python -service_client.get_service_stats(logging_enable=True) -``` - ### Additional Still running into issues? If you encounter any bugs or have suggestions, please file an issue in the [Issues]() section of the project. diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_authentication_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_authentication_async.py index 6a4a2c8cad98..f4ba9a9fd50a 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_authentication_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_authentication_async.py @@ -15,11 +15,16 @@ USAGE: python sample_authentication_async.py Set the environment variables with your own values before running the sample: - - AZURE_SUBSCRIPTION_KEY - your subscription key + - AZURE_SUBSCRIPTION_KEY - your Azure Maps subscription key + - TENANT_ID - your tenant ID that wants to access Azure Maps account + - CLIENT_ID - your client ID that wants to access Azure Maps account + - CLIENT_SECRET - your client secret that wants to access Azure Maps account + - AZURE_MAPS_CLIENT_ID - your Azure Maps client ID """ import asyncio import os +import sys async def authentication_maps_service_client_with_subscription_key_credential_async(): # [START create_maps_render_service_client_with_key_async] @@ -36,6 +41,32 @@ async def authentication_maps_service_client_with_subscription_key_credential_as print(result) + +async def authentication_maps_service_client_with_aad_credential_async(): + """DefaultAzureCredential will use the values from these environment + variables: AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET, AZURE_MAPS_CLIENT_ID + """ + # [START create_maps_render_service_client_with_aad_async] + from azure.identity.aio import DefaultAzureCredential + from azure.maps.render.aio import MapsRenderClient + + credential = DefaultAzureCredential() + maps_client_id = os.getenv("AZURE_MAPS_CLIENT_ID") + + maps_render_client = MapsRenderClient(client_id=maps_client_id, credential=credential) + # [END create_maps_render_service_client_with_aad_async] + + async with maps_render_client: + result = await maps_render_client.get_copyright_caption() + + print(result) + + +async def main(): + await authentication_maps_service_client_with_subscription_key_credential_async() + await authentication_maps_service_client_with_aad_credential_async() + if __name__ == '__main__': - loop = asyncio.get_event_loop() - loop.run_until_complete(authentication_maps_service_client_with_subscription_key_credential_async()) \ No newline at end of file + if sys.platform == 'win32': + asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) + asyncio.run(main()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py index 9c84e5a8fe0c..2c7fa7d48c87 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py @@ -39,5 +39,4 @@ async def get_copyright_for_tile_async(): # [END get_copyright_for_tile_async] if __name__ == '__main__': - loop = asyncio.get_event_loop() - loop.run_until_complete(get_copyright_for_tile_async()) \ No newline at end of file + asyncio.run(get_copyright_for_tile_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py index 0f8110d08739..c70f027648dd 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py @@ -40,5 +40,4 @@ async def get_copyright_for_world_async(): # [END get_copyright_for_world_async] if __name__ == '__main__': - loop = asyncio.get_event_loop() - loop.run_until_complete(get_copyright_for_world_async()) \ No newline at end of file + asyncio.run(get_copyright_for_world_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py index a1018ba4e593..41ee36a81b12 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py @@ -45,5 +45,4 @@ async def get_copyright_from_bounding_box_async(): # [END get_copyright_from_bounding_box] if __name__ == '__main__': - loop = asyncio.get_event_loop() - loop.run_until_complete(get_copyright_from_bounding_box_async()) \ No newline at end of file + asyncio.run(get_copyright_from_bounding_box_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py index 6af9a689f337..42a31e19caa2 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py @@ -46,5 +46,4 @@ async def get_map_attribution_async(): # [END get_map_attribution_async] if __name__ == '__main__': - loop = asyncio.get_event_loop() - loop.run_until_complete(get_map_attribution_async()) \ No newline at end of file + asyncio.run(get_map_attribution_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py index 0a5e79236082..651d5702e71f 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py @@ -32,12 +32,7 @@ async def get_map_static_image_async(): print("Get map tile result:") print(result) - # Save result to file as png - file = open('result.png', 'wb') - file.write(next(result)) - file.close() # [END get_map_static_image_async] if __name__ == '__main__': - loop = asyncio.get_event_loop() - loop.run_until_complete(get_map_static_image_async()) \ No newline at end of file + asyncio.run(get_map_static_image_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tile_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tile_async.py index 7c0e25b6590d..4fc868f0525d 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tile_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tile_async.py @@ -40,5 +40,4 @@ async def get_map_tile_async(): # [END get_map_tile_async] if __name__ == '__main__': - loop = asyncio.get_event_loop() - loop.run_until_complete(get_map_tile_async()) \ No newline at end of file + asyncio.run(get_map_tile_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py index 4540f4e5047d..67059badb882 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py @@ -36,5 +36,4 @@ async def get_map_tileset_async(): # [END get_map_tile_async] if __name__ == '__main__': - loop = asyncio.get_event_loop() - loop.run_until_complete(get_map_tileset_async()) \ No newline at end of file + asyncio.run(get_map_tileset_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/sample_authentication.py b/sdk/maps/azure-maps-render/samples/sample_authentication.py index fd488947a7cc..ea5457cf89c0 100644 --- a/sdk/maps/azure-maps-render/samples/sample_authentication.py +++ b/sdk/maps/azure-maps-render/samples/sample_authentication.py @@ -15,7 +15,11 @@ USAGE: python sample_authentication.py Set the environment variables with your own values before running the sample: - - AZURE_SUBSCRIPTION_KEY - your subscription key + - AZURE_SUBSCRIPTION_KEY - your Azure Maps subscription key + - TENANT_ID - your tenant ID that wants to access Azure Maps account + - CLIENT_ID - your client ID that wants to access Azure Maps account + - CLIENT_SECRET - your client secret that wants to access Azure Maps account + - AZURE_MAPS_CLIENT_ID - your Azure Maps client ID """ import os @@ -34,5 +38,26 @@ def authentication_maps_service_client_with_subscription_key_credential(): print(result) + +def authentication_maps_service_client_with_aad_credential(): + """DefaultAzureCredential will use the values from these environment + variables: AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET, AZURE_MAPS_CLIENT_ID + """ + # [START create_maps_render_service_client_with_aad] + from azure.identity.aio import DefaultAzureCredential + from azure.maps.render import MapsRenderClient + + credential = DefaultAzureCredential() + maps_client_id = os.getenv("AZURE_MAPS_CLIENT_ID") + + maps_render_client = MapsRenderClient(client_id=maps_client_id, credential=credential) + # [END create_maps_render_service_client_with_aad] + + result = maps_render_client.get_copyright_caption() + + print(result) + + if __name__ == '__main__': - authentication_maps_service_client_with_subscription_key_credential() \ No newline at end of file + authentication_maps_service_client_with_subscription_key_credential() + authentication_maps_service_client_with_aad_credential() \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/swagger/README.md b/sdk/maps/azure-maps-render/swagger/README.md index 31f98cd2061d..26565a1942ba 100644 --- a/sdk/maps/azure-maps-render/swagger/README.md +++ b/sdk/maps/azure-maps-render/swagger/README.md @@ -26,8 +26,6 @@ output-folder: ../azure/maps/render/_generated namespace: azure.maps.render package-name: azure-maps-render no-namespace-folders: true -use-extension: - "@autorest/modelerfour": "4.22.3" license-header: MICROSOFT_MIT_NO_VERSION credential-scopes: https://atlas.microsoft.com/.default clear-output-folder: true diff --git a/sdk/maps/azure-maps-render/tests/test_render_client.py b/sdk/maps/azure-maps-render/tests/test_render_client.py index 18450474ed66..c775ab34f936 100644 --- a/sdk/maps/azure-maps-render/tests/test_render_client.py +++ b/sdk/maps/azure-maps-render/tests/test_render_client.py @@ -3,18 +3,13 @@ # Licensed under the MIT License. See License.txt in the project root for # license information. # -------------------------------------------------------------------------- -import logging import os -from azure.core.credentials import AccessToken, AzureKeyCredential +from azure.core.credentials import AzureKeyCredential from azure.maps.render import MapsRenderClient -from devtools_testutils import AzureRecordedTestCase, recorded_by_proxy, is_live +from devtools_testutils import AzureRecordedTestCase, recorded_by_proxy from render_preparer import MapsRenderPreparer from azure.maps.render.models import TilesetID, BoundingBox - -logger = logging.getLogger(__name__) - - class TestMapsRenderClient(AzureRecordedTestCase): def setup_method(self, method): self.client = MapsRenderClient( @@ -36,7 +31,6 @@ def test_get_map_tile(self): import types assert isinstance(result, types.GeneratorType) - # cSpell:ignore CEST @MapsRenderPreparer() @recorded_by_proxy def test_get_map_tileset(self): diff --git a/sdk/maps/tests.yml b/sdk/maps/tests.yml index 73874fac5ff8..6f3c0c15bb33 100644 --- a/sdk/maps/tests.yml +++ b/sdk/maps/tests.yml @@ -1,4 +1,3 @@ - trigger: none stages: From 09b0e0ad3c74def84d4b322ea76f59de8ec7bf5a Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Thu, 29 Sep 2022 18:05:21 +0800 Subject: [PATCH 10/14] Update docstrings --- .../azure/maps/render/_render_client.py | 88 ++++++++++++++++++ .../maps/render/aio/_render_client_async.py | 90 +++++++++++++++++++ .../samples/sample_authentication.py | 2 +- .../samples/sample_get_map_tileset.py | 4 +- 4 files changed, 181 insertions(+), 3 deletions(-) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py index 710662bc88e2..54f391c69046 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py @@ -31,6 +31,21 @@ class MapsRenderClient(MapsRenderClientBase): The API version of the service to use for requests. It defaults to the latest service version. Setting to an older version may result in reduced feature compatibility. :paramtype api_version: str + + .. admonition:: Example: + + .. literalinclude:: ../samples/sample_authentication.py + :start-after: [START create_maps_render_service_client_with_key] + :end-before: [END create_maps_render_service_client_with_key] + :language: python + :dedent: 4 + :caption: Creating the MapsRenderClient with an subscription key. + .. literalinclude:: ../samples/sample_authentication.py + :start-after: [START create_maps_render_service_client_with_aad] + :end-before: [END create_maps_render_service_client_with_aad] + :language: python + :dedent: 4 + :caption: Creating the MapsRenderClient with a token credential. """ def __init__( self, @@ -88,6 +103,15 @@ def get_map_tile( Iterator of the response bytes :rtype: Iterator[bytes] :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/sample_get_map_tile.py + :start-after: [START get_map_tile] + :end-before: [END get_map_tile] + :language: python + :dedent: 4 + :caption: Return map tiles in vector or raster formats. """ return self._render_client.get_map_tile( @@ -116,6 +140,15 @@ def get_map_tileset( :return: MapTileset :rtype: ~azure.maps.render.models.MapTileset :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/sample_get_map_tileset.py + :start-after: [START get_map_tileset] + :end-before: [END get_map_tileset] + :language: python + :dedent: 4 + :caption: Return metadata for a tileset. """ return self._render_client.get_map_tileset( tileset_id=tileset_id, @@ -150,6 +183,15 @@ def get_map_attribution( :return: MapAttribution :rtype: ~azure.maps.render.models.MapAttribution :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/sample_get_map_attribution.py + :start-after: [START get_map_attribution] + :end-before: [END get_map_attribution] + :language: python + :dedent: 4 + :caption: Return map copyright attribution information for a section of a tileset. """ bounds=[ bounds.south, @@ -218,6 +260,15 @@ def get_copyright_caption( :return: Get Copyright Caption Result :rtype: ~azure.maps.render.models.CopyrightCaption :raises: ~azure.core.exceptions.HttpResponseError + + .. admonition:: Example: + + .. literalinclude:: ../samples/sample_get_copyright_caption.py + :start-after: [START get_copyright_caption] + :end-before: [END get_copyright_caption] + :language: python + :dedent: 4 + :caption: Return serve copyright information for Render Tile service. """ return self._render_client.get_copyright_caption( @@ -282,6 +333,16 @@ def get_map_static_image( :return: Iterator of the response bytes :rtype: Iterator[bytes] :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/sample_get_map_static_image.py + :start-after: [START get_map_static_image] + :end-before: [END get_map_static_image] + :language: python + :dedent: 4 + :caption: Return static image service renders a user-defined, + rectangular image containing a map section using a zoom level from 0 to 20. """ _center=kwargs.pop("center", None) @@ -320,6 +381,15 @@ def get_copyright_from_bounding_box( :return: Copyright result :rtype: ~azure.maps.render.models.Copyright :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/sample_get_copyright_from_bounding_box.py + :start-after: [START get_copyright_from_bounding_box] + :end-before: [END get_copyright_from_bounding_box] + :language: python + :dedent: 4 + :caption: Return copyright information for a given bounding box. """ _include_text=kwargs.pop("include_text", True) @@ -362,6 +432,15 @@ def get_copyright_for_tile( :return: Copyright result :rtype: ~azure.maps.render.models.Copyright :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/sample_get_copyright_for_tile.py + :start-after: [START get_copyright_for_tile] + :end-before: [END get_copyright_for_tile] + :language: python + :dedent: 4 + :caption: Returns the copyright information for a given tile. """ _include_text=kwargs.pop("include_text", True) @@ -392,6 +471,15 @@ def get_copyright_for_world( :return: Copyright result :rtype: ~azure.maps.render.models.Copyright :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/sample_get_copyright_for_world.py + :start-after: [START get_copyright_for_world] + :end-before: [END get_copyright_for_world] + :language: python + :dedent: 4 + :caption: Returns the copyright information for the world. """ _include_text=kwargs.pop("include_text", True) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py index a505d3a87847..fbd56f88998a 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py @@ -35,6 +35,21 @@ class MapsRenderClient(AsyncMapsRenderClientBase): The API version of the service to use for requests. It defaults to the latest service version. Setting to an older version may result in reduced feature compatibility. :paramtype api_version: str + + .. admonition:: Example: + + .. literalinclude:: ../samples/async_samples/sample_authentication_async.py + :start-after: [START create_maps_render_service_client_with_key_async] + :end-before: [END create_maps_render_service_client_with_key_async] + :language: python + :dedent: 4 + :caption: Creating the MapsRenderClient with an subscription key. + .. literalinclude:: ../samples/async_samples/sample_authentication_async.py + :start-after: [START create_maps_render_service_client_with_aad_async] + :end-before: [END create_maps_render_service_client_with_aad_async] + :language: python + :dedent: 4 + :caption: Creating the MapsRenderClient with a token credential. """ def __init__( self, @@ -92,6 +107,15 @@ async def get_map_tile( Iterator of the response bytes :rtype: Iterator[bytes] :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/async_samples/sample_get_map_tile_async.py + :start-after: [START get_map_tile_async] + :end-before: [END get_map_tile_async] + :language: python + :dedent: 4 + :caption: Return map tiles in vector or raster formats. """ return await self._render_client.get_map_tile( @@ -120,6 +144,15 @@ async def get_map_tileset( :return: MapTileset :rtype: ~azure.maps.render.models.MapTileset :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/async_samples/sample_get_map_tileset_async.py + :start-after: [START get_map_tileset_async] + :end-before: [END get_map_tileset_async] + :language: python + :dedent: 4 + :caption: Return metadata for a tileset. """ return await self._render_client.get_map_tileset( tileset_id=tileset_id, @@ -154,6 +187,15 @@ async def get_map_attribution( :return: MapAttribution :rtype: ~azure.maps.render.models.MapAttribution :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/async_samples/sample_get_map_attribution_async.py + :start-after: [START get_map_attribution_async] + :end-before: [END get_map_attribution_async] + :language: python + :dedent: 4 + :caption: Return map copyright attribution information for a section of a tileset. """ bounds=[ bounds.south, @@ -221,6 +263,15 @@ async def get_copyright_caption( :return: Get Copyright Caption Result :rtype: ~azure.maps.render.models.CopyrightCaption :raises: ~azure.core.exceptions.HttpResponseError + + .. admonition:: Example: + + .. literalinclude:: ../samples/async_samples/sample_get_copyright_caption_async.py + :start-after: [START get_copyright_caption_async] + :end-before: [END get_copyright_caption_async] + :language: python + :dedent: 4 + :caption: Return serve copyright information for Render Tile service. """ return await self._render_client.get_copyright_caption( **kwargs @@ -284,7 +335,18 @@ async def get_map_static_image( :return: Iterator of the response bytes :rtype: Iterator[bytes] :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/async_samples/sample_get_map_static_image_async.py + :start-after: [START get_map_static_image_async] + :end-before: [END get_map_static_image_async] + :language: python + :dedent: 4 + :caption: Return static image service renders a user-defined, + rectangular image containing a map section using a zoom level from 0 to 20. """ + _center=kwargs.pop("center", None) if _center is not None: _center = [_center[0], _center[1]] @@ -321,6 +383,15 @@ async def get_copyright_from_bounding_box( :return: Copyright result :rtype: ~azure.maps.render.models.Copyright :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/async_samples/sample_get_copyright_from_bounding_box_async.py + :start-after: [START get_copyright_from_bounding_box_async] + :end-before: [END get_copyright_from_bounding_box_async] + :language: python + :dedent: 4 + :caption: Return copyright information for a given bounding box. """ _include_text=kwargs.pop("include_text", True) @@ -362,7 +433,17 @@ async def get_copyright_for_tile( :return: Copyright result :rtype: ~azure.maps.render.models.Copyright :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/async_samples/sample_get_copyright_for_tile_async.py + :start-after: [START get_copyright_for_tile_async] + :end-before: [END get_copyright_for_tile_async] + :language: python + :dedent: 4 + :caption: Returns the copyright information for a given tile. """ + _include_text=kwargs.pop("include_text", True) return await self._render_client.get_copyright_for_tile( @@ -391,6 +472,15 @@ async def get_copyright_for_world( :return: Copyright result :rtype: ~azure.maps.render.models.Copyright :raises ~azure.core.exceptions.HttpResponseError: + + .. admonition:: Example: + + .. literalinclude:: ../samples/async_samples/sample_get_copyright_for_world_async.py + :start-after: [START get_copyright_for_world_async] + :end-before: [END get_copyright_for_world_async] + :language: python + :dedent: 4 + :caption: Returns the copyright information for the world. """ _include_text=kwargs.pop("include_text", True) diff --git a/sdk/maps/azure-maps-render/samples/sample_authentication.py b/sdk/maps/azure-maps-render/samples/sample_authentication.py index ea5457cf89c0..e5254913ee25 100644 --- a/sdk/maps/azure-maps-render/samples/sample_authentication.py +++ b/sdk/maps/azure-maps-render/samples/sample_authentication.py @@ -44,7 +44,7 @@ def authentication_maps_service_client_with_aad_credential(): variables: AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET, AZURE_MAPS_CLIENT_ID """ # [START create_maps_render_service_client_with_aad] - from azure.identity.aio import DefaultAzureCredential + from azure.identity import DefaultAzureCredential from azure.maps.render import MapsRenderClient credential = DefaultAzureCredential() diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py b/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py index e178b206229d..77a04620f197 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py @@ -21,7 +21,7 @@ subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY") def get_map_tileset(): - # [START get_map_tile] + # [START get_map_tileset] from azure.core.credentials import AzureKeyCredential from azure.maps.render import MapsRenderClient from azure.maps.render.models import TilesetID @@ -32,7 +32,7 @@ def get_map_tileset(): print("Get map tileset result:") print(result) - # [END get_map_tile] + # [END get_map_tileset] if __name__ == '__main__': get_map_tileset() \ No newline at end of file From 36409356364a64bc819d34f32b48c7d66e931cfb Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Thu, 6 Oct 2022 04:01:38 +0800 Subject: [PATCH 11/14] udpate accordingly --- sdk/maps/azure-maps-render/README.md | 8 +- .../azure/maps/render/_render_client.py | 104 ++++++++------ .../maps/render/aio/_render_client_async.py | 102 +++++++------ .../azure/maps/render/models/__init__.py | 12 +- .../azure/maps/render/models/_models.py | 136 +++++++++++++++++- .../azure-maps-render/dev_requirements.txt | 2 +- .../sample_get_copyright_caption_async.py | 5 +- .../sample_get_copyright_for_tile_async.py | 4 +- .../sample_get_copyright_for_world_async.py | 2 +- ...e_get_copyright_from_bounding_box_async.py | 4 +- .../sample_get_map_attribution_async.py | 2 +- .../sample_get_map_static_image_async.py | 3 - .../sample_get_map_tile_async.py | 4 +- .../sample_get_map_tileset_async.py | 4 +- .../samples/sample_get_copyright_caption.py | 2 +- .../samples/sample_get_copyright_for_tile.py | 4 +- .../samples/sample_get_copyright_for_world.py | 2 +- .../sample_get_copyright_from_bounding_box.py | 4 +- .../samples/sample_get_map_attribution.py | 2 +- .../samples/sample_get_map_static_image.py | 5 +- .../samples/sample_get_map_tile.py | 11 +- .../samples/sample_get_map_tileset.py | 4 +- ...enderClienttest_get_copyright_caption.json | 4 +- ...nderClienttest_get_copyright_for_tile.json | 4 +- ...derClienttest_get_copyright_for_world.json | 4 +- ...ttest_get_copyright_from_bounding_box.json | 4 +- ...sRenderClienttest_get_map_attribution.json | 4 +- ...TestMapsRenderClienttest_get_map_tile.json | 12 +- ...tMapsRenderClienttest_get_map_tileset.json | 6 +- .../tests/test_render_client.py | 10 +- 30 files changed, 323 insertions(+), 151 deletions(-) diff --git a/sdk/maps/azure-maps-render/README.md b/sdk/maps/azure-maps-render/README.md index 6a174e59d535..bd1e75191dc2 100644 --- a/sdk/maps/azure-maps-render/README.md +++ b/sdk/maps/azure-maps-render/README.md @@ -13,7 +13,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For ### Prerequisites -- Python 3.6 or later is required to use this package. +- Python 3.7 or later is required to use this package. - An [Azure subscription][azure_subscription] and an [Azure Maps account](https://docs.microsoft.com/azure/azure-maps/how-to-manage-account-keys). - A deployed Maps Services resource. You can create the resource via [Azure Portal][azure_portal] or [Azure CLI][azure_cli]. @@ -140,9 +140,9 @@ from azure.maps.render import MapsRenderClient result = maps_render_client.get_map_tile( tileset_id=TilesetID.MICROSOFT_BASE, - tile_index_z=6, - tile_index_x=9, - tile_index_y=22, + z=6, + x=9, + y=22, tile_size="512" ) ``` diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py index 54f391c69046..ca9e50ff8378 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py @@ -4,7 +4,7 @@ # ------------------------------------ # pylint: disable=unused-import,ungrouped-imports, R0904, C0302 -from typing import TYPE_CHECKING, overload, Union, Any, List, Optional, Iterator +from typing import TYPE_CHECKING, overload, Union, Any, List, Optional, Iterator, Tuple from azure.core.tracing.decorator import distributed_trace from azure.core.exceptions import HttpResponseError from azure.core.credentials import AzureKeyCredential, TokenCredential @@ -17,7 +17,6 @@ TilesetID, Copyright, MapTileset, - MapAttribution, CopyrightCaption, RasterTileFormat ) @@ -60,9 +59,9 @@ def __init__( def get_map_tile( self, tileset_id: Union[str, TilesetID], - tile_index_z: int, - tile_index_x: int, - tile_index_y: int, + x: int, + y: int, + z: int, **kwargs: Any ) -> Iterator[bytes]: """The Get Map Tiles API allows users to request map tiles in vector or raster formats typically @@ -76,15 +75,15 @@ def get_map_tile( when making requests. :type tileset_id: str or ~azure.maps.render.models.TilesetID - :param tile_index_z: + :param z: Zoom level for the desired tile. - :type tile_index_z: int - :param tile_index_x: + :type z: int + :param x: X coordinate of the tile on zoom grid. - :type tile_index_x: int - :param tile_index_y: + :type x: int + :param y: Y coordinate of the tile on zoom grid. - :type tile_index_y: int + :type y: int :keyword time_stamp: The desired date and time of the requested tile. :paramtype time_stamp: ~datetime.datetime @@ -116,9 +115,9 @@ def get_map_tile( return self._render_client.get_map_tile( tileset_id=tileset_id, - z=tile_index_z, - x=tile_index_x, - y=tile_index_y, + z=z, + x=x, + y=y, **kwargs ) @@ -150,11 +149,28 @@ def get_map_tileset( :dedent: 4 :caption: Return metadata for a tileset. """ - return self._render_client.get_map_tileset( + result = self._render_client.get_map_tileset( tileset_id=tileset_id, **kwargs ) + return MapTileset( + name = result.name, + description = result.description, + version = result.version, + template = result.template, + legend = result.legend, + scheme = result.scheme, + min_zoom = result.min_zoom, + max_zoom = result.max_zoom, + bounds = result.bounds, + center = result.center, + map_attribution=result.attribution, + tilejson_version=result.tilejson, + tiles_endpoints=result.tiles, + grid_endpoints=result.grids, + data_files=result.data + ) @distributed_trace def get_map_attribution( @@ -163,7 +179,7 @@ def get_map_attribution( zoom: int, bounds: BoundingBox, **kwargs: Any - ) -> MapAttribution: + ) -> List[str]: """The Get Map Attribution API allows users to request map copyright attribution information for a section of a tileset. @@ -180,8 +196,8 @@ def get_map_attribution( position of the bounding box as float. E.g. BoundingBox(west=37.553, south=-122.453, east=33.2, north=57) :type bounds: BoundingBox - :return: MapAttribution - :rtype: ~azure.maps.render.models.MapAttribution + :return: List[str] + :rtype: List[str] :raises ~azure.core.exceptions.HttpResponseError: .. admonition:: Example: @@ -205,29 +221,29 @@ def get_map_attribution( zoom=zoom, bounds=bounds, **kwargs - ) + ).copyrights @distributed_trace def get_map_state_tile( self, stateset_id: str, - tile_index_z: int, - tile_index_x: int, - tile_index_y: int, + x: int, + y: int, + z: int, **kwargs: Any ) -> Iterator[bytes]: """Fetches state tiles in vector format typically to be integrated into indoor maps module of map control or SDK. - :param tile_index_z: + :param z: Zoom level for the desired tile. - :type tile_index_z: int - :param tile_index_x: + :type z: int + :param x: X coordinate of the tile on zoom grid. - :type tile_index_x: int - :param tile_index_y: + :type x: int + :param y: Y coordinate of the tile on zoom grid. - :type tile_index_y: int + :type y: int :param stateset_id: The stateset id. :type stateset_id: str @@ -238,9 +254,9 @@ def get_map_state_tile( return self._render_client.get_map_state_tile( stateset_id=stateset_id, - z=tile_index_z, - x=tile_index_x, - y=tile_index_y, + z=z, + x=x, + y=y, **kwargs ) @@ -304,7 +320,7 @@ def get_map_static_image( :paramtype zoom: int :keyword center: Coordinates of the center point. - :paramtype center: LatLon + :paramtype center: LatLon or Tuple :keyword BoundingBox bounding_box_private: north(top), west(left), south(bottom), east(right) position of the bounding box as float. @@ -404,9 +420,9 @@ def get_copyright_from_bounding_box( @distributed_trace def get_copyright_for_tile( self, - tile_index_z: int, - tile_index_x: int, - tile_index_y: int, + x: int, + y: int, + z: int, **kwargs: Any ) -> Copyright: """Copyrights API is designed to serve copyright information for Render Tile service. In addition @@ -416,15 +432,15 @@ def get_copyright_for_tile( particular tile, the request should specify the tile's zoom level and x and y coordinates (see: Zoom Levels and Tile Grid). - :param tile_index_z: + :param z: Zoom level for the desired tile. - :type tile_index_z: int - :param tile_index_x: + :type z: int + :param x: X coordinate of the tile on zoom grid. - :type tile_index_x: int - :param tile_index_y: + :type x: int + :param y: Y coordinate of the tile on zoom grid. - :type tile_index_y: int + :type y: int :keyword include_text: True or False to exclude textual data from response. Only images and country names will be in response. @@ -446,9 +462,9 @@ def get_copyright_for_tile( _include_text=kwargs.pop("include_text", True) return self._render_client.get_copyright_for_tile( - z=tile_index_z, - x=tile_index_x, - y=tile_index_y, + z=z, + x=x, + y=y, include_text= "yes" if _include_text else "no", **kwargs ) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py index fbd56f88998a..ec5c3a939993 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py @@ -5,7 +5,7 @@ # --------------------------------------------------------------------- # pylint: disable=unused-import,ungrouped-imports, R0904, C0302 -from typing import Iterator, Any, Union +from typing import Iterator, Any, Union, Tuple, List from azure.core.tracing.decorator_async import distributed_trace_async from azure.core.exceptions import HttpResponseError from azure.core.credentials import AzureKeyCredential @@ -64,9 +64,9 @@ def __init__( async def get_map_tile( self, tileset_id: Union[str, TilesetID], - tile_index_z: int, - tile_index_x: int, - tile_index_y: int, + z: int, + x: int, + y: int, **kwargs: Any ) -> Iterator[bytes]: """The Get Map Tiles API allows users to request map tiles in vector or raster formats typically @@ -80,15 +80,15 @@ async def get_map_tile( when making requests. :type tileset_id: str or ~azure.maps.render.models.TilesetID - :param tile_index_z: + :param z: Zoom level for the desired tile. - :type tile_index_z: int - :param tile_index_x: + :type z: int + :param x: X coordinate of the tile on zoom grid. - :type tile_index_x: int - :param tile_index_y: + :type x: int + :param y: Y coordinate of the tile on zoom grid. - :type tile_index_y: int + :type y: int :keyword time_stamp: The desired date and time of the requested tile. :paramtype time_stamp: ~datetime.datetime @@ -120,9 +120,9 @@ async def get_map_tile( return await self._render_client.get_map_tile( tileset_id=tileset_id, - z=tile_index_z, - x=tile_index_x, - y=tile_index_y, + z=z, + x=x, + y=y, **kwargs ) @@ -154,11 +154,28 @@ async def get_map_tileset( :dedent: 4 :caption: Return metadata for a tileset. """ - return await self._render_client.get_map_tileset( + result = await self._render_client.get_map_tileset( tileset_id=tileset_id, **kwargs ) + return MapTileset( + name = result.name, + description = result.description, + version = result.version, + template = result.template, + legend = result.legend, + scheme = result.scheme, + min_zoom = result.min_zoom, + max_zoom = result.max_zoom, + bounds = result.bounds, + center = result.center, + map_attribution=result.attribution, + tilejson_version=result.tilejson, + tiles_endpoints=result.tiles, + grid_endpoints=result.grids, + data_files=result.data + ) @distributed_trace_async async def get_map_attribution( @@ -167,7 +184,7 @@ async def get_map_attribution( zoom: int, bounds: BoundingBox, **kwargs: Any - ) -> MapAttribution: + ) -> List[str]: """The Get Map Attribution API allows users to request map copyright attribution information for a section of a tileset. @@ -184,8 +201,8 @@ async def get_map_attribution( position of the bounding box as float. E.g. BoundingBox(west=37.553, south=-122.453, east=33.2, north=57) :type bounds: BoundingBox - :return: MapAttribution - :rtype: ~azure.maps.render.models.MapAttribution + :return: List[str] + :rtype: List[str] :raises ~azure.core.exceptions.HttpResponseError: .. admonition:: Example: @@ -204,34 +221,35 @@ async def get_map_attribution( bounds.east ] - return await self._render_client.get_map_attribution( + async_result = await self._render_client.get_map_attribution( tileset_id=tileset_id, zoom=zoom, bounds=bounds, **kwargs ) + return async_result.copyrights @distributed_trace_async async def get_map_state_tile( self, stateset_id: str, - tile_index_z: int, - tile_index_x: int, - tile_index_y: int, + z: int, + x: int, + y: int, **kwargs: Any ) -> Iterator[bytes]: """Fetches state tiles in vector format typically to be integrated into indoor maps module of map control or SDK. - :param tile_index_z: + :param z: Zoom level for the desired tile. - :type tile_index_z: int - :param tile_index_x: + :type z: int + :param x: X coordinate of the tile on zoom grid. - :type tile_index_x: int - :param tile_index_y: + :type x: int + :param y: Y coordinate of the tile on zoom grid. - :type tile_index_y: int + :type y: int :param stateset_id: The stateset id. :type stateset_id: str @@ -241,9 +259,9 @@ async def get_map_state_tile( """ return await self._render_client.get_map_state_tile( stateset_id=stateset_id, - z=tile_index_z, - x=tile_index_x, - y=tile_index_y, + z=z, + x=x, + y=y, **kwargs ) @@ -306,7 +324,7 @@ async def get_map_static_image( :paramtype zoom: int :keyword center: Coordinates of the center point. - :paramtype center: Latlon + :paramtype center: LatLon or Tuple :keyword BoundingBox bounding_box_private: north(top), west(left), south(bottom), east(right) position of the bounding box as float. @@ -405,9 +423,9 @@ async def get_copyright_from_bounding_box( @distributed_trace_async async def get_copyright_for_tile( self, - tile_index_z: int, - tile_index_x: int, - tile_index_y: int, + z: int, + x: int, + y: int, **kwargs: Any ) -> Copyright: """Copyrights API is designed to serve copyright information for Render Tile service. In addition @@ -417,15 +435,15 @@ async def get_copyright_for_tile( particular tile, the request should specify the tile's zoom level and x and y coordinates (see: Zoom Levels and Tile Grid). - :param tile_index_z: + :param z: Zoom level for the desired tile. - :type tile_index_z: int - :param tile_index_x: + :type z: int + :param x: X coordinate of the tile on zoom grid. - :type tile_index_x: int - :param tile_index_y: + :type x: int + :param y: Y coordinate of the tile on zoom grid. - :type tile_index_y: int + :type y: int :keyword include_text: True or False to exclude textual data from response. Only images and country names will be in response. @@ -448,8 +466,8 @@ async def get_copyright_for_tile( return await self._render_client.get_copyright_for_tile( z=tile_index_z, - x=tile_index_x, - y=tile_index_y, + x=x, + y=y, include_text= "yes" if _include_text else "no", **kwargs ) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py index f0498076dc92..69242de5bc92 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py @@ -3,19 +3,19 @@ TilesetID, MapTileSize, LocalizedMapView, - MapTileset, MapAttribution, CopyrightCaption, StaticMapLayer, - Copyright, RasterTileFormat, - RegionCopyrights, - RegionCopyrightsCountry ) from ._models import ( LatLon, - BoundingBox + MapTileset, + BoundingBox, + Copyright, + RegionalCopyrights, + RegionCopyrightsCountry ) @@ -31,6 +31,6 @@ 'StaticMapLayer', 'Copyright', 'RasterTileFormat', - 'RegionCopyrights', + 'RegionalCopyrights', 'RegionCopyrightsCountry', ] diff --git a/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py index 521100f4293e..5fc8ffd54f56 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py @@ -5,7 +5,13 @@ # pylint: disable=unused-import,ungrouped-imports, C0302, C0203 from typing import NamedTuple -from .._generated.models import RegionCopyrightsCountry as GenRegionCopyrightsCountry +from .._generated.models import ( + Copyright as GenCopyright, + RegionCopyrights as GenRegionCopyrights, + RegionCopyrightsCountry as GenRegionCopyrightsCountry, + MapTileset as GenMapTileset +) + class LatLon(NamedTuple): """Represents coordinate latitude and longitude @@ -34,3 +40,131 @@ class BoundingBox(NamedTuple): south: float = 0.0 east: float = 0.0 north: float = 0.0 + + +class RegionalCopyrights(GenRegionCopyrights): + """RegionCopyrights. + + Variables are only populated by the server, and will be ignored when sending a request. + + :keyword copyrights: Copyrights array. + :paramtype copyrights: list[str] + :keyword country: Country property. + :paramtype country: ~azure.maps.render.models.RegionCopyrightsCountry + """ + def __init__(self, copyrights=None, country=None): + self.copyrights = copyrights + self.country = country + +class Copyright(GenCopyright): + """Represents information about the coordinate range + + :keyword format_version: Format Version property. + :paramtype format_version: str + :keyword general_copyrights: General Copyrights array. + :paramtype general_copyrights: list[str] + :keyword regional_copyrights: Regions array. + :paramtype regional_copyrights: list[RegionalCopyrights] + """ + def __init__(self, format_version=None, general_copyrights=None, regional_copyrights=None): + self.format_version = format_version + self.general_copyrights = general_copyrights + self.regional_copyrights = regional_copyrights + +class RegionCopyrightsCountry(GenRegionCopyrightsCountry): + """Country property. + + Variables are only populated by the server, and will be ignored when sending a request. + + :keyword iso3_code: ISO3 property. + :paramtype iso3_code: str + :keyword label: Label property. + :paramtype label: str + """ + def __init__(self, iso3_code=None, label=None): + self.iso3_code = iso3_code + self.label = label + + +class MapTileset(GenMapTileset): # pylint: disable=too-many-instance-attributes + """Metadata for a tileset in the TileJSON format. + + :keyword tilejson_version: Describes the version of the TileJSON spec that is implemented by this JSON + object. + :paramtype tilejson_version: str + :keyword name: A name describing the tileset. The name can contain any legal character. + Implementations SHOULD NOT interpret the name as HTML. + :paramtype name: str + :keyword description: Text description of the tileset. The description can contain any legal + character. Implementations SHOULD NOT interpret the description as HTML. + :paramtype description: str + :keyword version: A semver.org style version number for the tiles contained within the tileset. + When changes across tiles are introduced, the minor version MUST change. + :paramtype version: str + :keyword map_attribution: Copyright attribution to be displayed on the map. Implementations MAY decide + to treat this as HTML or literal text. For security reasons, make absolutely sure that this + field can't be abused as a vector for XSS or beacon tracking. + :paramtype map_attribution: str + :keyword template: A mustache template to be used to format data from grids for interaction. + :paramtype template: str + :keyword legend: A legend to be displayed with the map. Implementations MAY decide to treat this + as HTML or literal text. For security reasons, make absolutely sure that this field can't be + abused as a vector for XSS or beacon tracking. + :paramtype legend: str + :keyword scheme: Default: "xyz". Either "xyz" or "tms". Influences the y direction of the tile + coordinates. The global-mercator (aka Spherical Mercator) profile is assumed. + :paramtype scheme: str + :keyword tiles_endpoints: An array of tile endpoints. If multiple endpoints are specified, clients may use + any combination of endpoints. All endpoints MUST return the same content for the same URL. The + array MUST contain at least one endpoint. + :paramtype tiles_endpoints: list[str] + :keyword grid_endpoints: An array of interactivity endpoints. + :paramtype grid_endpoints: list[str] + :keyword data_files: An array of data files in GeoJSON format. + :paramtype data_files: list[str] + :keyword min_zoom: The minimum zoom level. + :paramtype min_zoom: int + :keyword max_zoom: The maximum zoom level. + :paramtype max_zoom: int + :keyword bounds: The maximum extent of available map tiles. Bounds MUST define an area covered by + all zoom levels. The bounds are represented in WGS:84 latitude and longitude values, in the + order left, bottom, right, top. Values may be integers or floating point numbers. + :paramtype bounds: BoundingBox + :keyword center: The default location of the tileset in the form [longitude, latitude, zoom]. The + zoom level MUST be between minzoom and maxzoom. Implementations can use this value to set the + default location. + :paramtype center: LatLon + """ + def __init__( + self, + tilejson_version= None, + name= None, + description= None, + version= None, + map_attribution= None, + template= None, + legend= None, + scheme= None, + tiles_endpoints= None, + grid_endpoints= None, + data_files = None, + min_zoom= None, + max_zoom= None, + bounds= None, + center= None + ): + self.tilejson_version = tilejson_version + self.name = name + self.description = description + self.version = version + self.map_attribution = map_attribution + self.template = template + self.legend = legend + self.scheme = scheme + self.tiles_endpoints = tiles_endpoints + self.grid_endpoints = grid_endpoints + self.data_files = data_files + self.min_zoom = min_zoom + self.max_zoom = max_zoom + self.bounds = bounds + self.center = center diff --git a/sdk/maps/azure-maps-render/dev_requirements.txt b/sdk/maps/azure-maps-render/dev_requirements.txt index d85375f9cdba..1ab09a46e87f 100644 --- a/sdk/maps/azure-maps-render/dev_requirements.txt +++ b/sdk/maps/azure-maps-render/dev_requirements.txt @@ -2,4 +2,4 @@ -e ../../../tools/azure-sdk-tools -e ../../core/azure-core -e ../../identity/azure-identity -aiohttp>=3.0; python_version >= '3.6' \ No newline at end of file +aiohttp>=3.0; python_version >= '3.7' \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_caption_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_caption_async.py index bd4f08b01651..5b02a81a6113 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_caption_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_caption_async.py @@ -34,9 +34,8 @@ async def get_copyright_caption_async(): result = await maps_render_client.get_copyright_caption() print("Get copyright caption result:") - print(result) + print(result.copyrights_caption) # [END get_copyright_caption_async] if __name__ == '__main__': - loop = asyncio.get_event_loop() - loop.run_until_complete(get_copyright_caption_async()) \ No newline at end of file + asyncio.run(get_copyright_caption_async()) \ No newline at end of file diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py index 2c7fa7d48c87..39c115fe7c4c 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_tile_async.py @@ -32,10 +32,10 @@ async def get_copyright_for_tile_async(): maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) async with maps_render_client: - result = await maps_render_client.get_copyright_for_tile(tile_index_z=6, tile_index_x=9, tile_index_y=22) + result = await maps_render_client.get_copyright_for_tile(z=6, x=9, y=22) print("Get copyright for tile result:") - print(result) + print(result.general_copyrights[0]) # [END get_copyright_for_tile_async] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py index c70f027648dd..b87e0b39ef84 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_for_world_async.py @@ -36,7 +36,7 @@ async def get_copyright_for_world_async(): result = await maps_render_client.get_copyright_for_world() print("Get copyright for the world result:") - print(result) + print(result.general_copyrights[0]) # [END get_copyright_for_world_async] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py index 41ee36a81b12..62b23837be1a 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_copyright_from_bounding_box_async.py @@ -41,7 +41,9 @@ async def get_copyright_from_bounding_box_async(): ) print("Get copyright from bounding box result:") - print(result) + print(result.general_copyrights[0]) + print("Result country code:") + print(result.regions[0].country.iso3) # [END get_copyright_from_bounding_box] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py index 42a31e19caa2..30d75c2c08bc 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py @@ -42,7 +42,7 @@ async def get_map_attribution_async(): ) print("Get map attribution result:") - print(result) + print(result[0]) # [END get_map_attribution_async] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py index 651d5702e71f..8799c68bf4ed 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_static_image_async.py @@ -29,9 +29,6 @@ async def get_map_static_image_async(): async with maps_render_client: result = await maps_render_client.get_map_static_image(img_format="png", center=(52.41064,4.84228)) - - print("Get map tile result:") - print(result) # [END get_map_static_image_async] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tile_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tile_async.py index 4fc868f0525d..1f2dd4bf640b 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tile_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tile_async.py @@ -33,10 +33,8 @@ async def get_map_tile_async(): async with maps_render_client: - result = await maps_render_client.get_map_tile(tileset_id=TilesetID.MICROSOFT_BASE, tile_index_z=6, tile_index_x=9, tile_index_y=22, tile_size="512") + result = await maps_render_client.get_map_tile(tileset_id=TilesetID.MICROSOFT_BASE, z=6, x=9, y=22, tile_size="512") - print("Get map tile result:") - print(result) # [END get_map_tile_async] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py index 67059badb882..23fb1d06ff6c 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_tileset_async.py @@ -32,7 +32,9 @@ async def get_map_tileset_async(): result = await maps_render_client.get_map_tileset(tileset_id=TilesetID.MICROSOFT_BASE) print("Get map tileset result:") - print(result) + print(result.map_attribution) + print(result.bounds) + print(result.version) # [END get_map_tile_async] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_copyright_caption.py b/sdk/maps/azure-maps-render/samples/sample_get_copyright_caption.py index cbd494af571e..ffca0376d5e1 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_copyright_caption.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_copyright_caption.py @@ -32,7 +32,7 @@ def get_copyright_caption(): result = maps_render_client.get_copyright_caption() print("Get copyright caption result:") - print(result) + print(result.copyrights_caption) # [END get_copyright_caption] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_tile.py b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_tile.py index 2938b0a25e47..14f2245be018 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_tile.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_tile.py @@ -31,10 +31,10 @@ def get_copyright_for_tile(): maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) - result = maps_render_client.get_copyright_for_tile(tile_index_z=6, tile_index_x=9, tile_index_y=22) + result = maps_render_client.get_copyright_for_tile(z=6, x=9, y=22) print("Get copyright for tile result:") - print(result) + print(result.general_copyrights[0]) # [END get_copyright_for_tile] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py index f4c340b11357..446ae2357dac 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_copyright_for_world.py @@ -35,7 +35,7 @@ def get_copyright_for_world(): result = maps_render_client.get_copyright_for_world() print("Get copyright for the world result:") - print(result) + print(result.general_copyrights[0]) # [END get_copyright_for_world] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_copyright_from_bounding_box.py b/sdk/maps/azure-maps-render/samples/sample_get_copyright_from_bounding_box.py index 065e9b252720..fb1a1d4ab41f 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_copyright_from_bounding_box.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_copyright_from_bounding_box.py @@ -39,7 +39,9 @@ def get_copyright_from_bounding_box(): ) print("Get copyright from bounding box result:") - print(result) + print(result.general_copyrights[0]) + print("Result country code:") + print(result.regions[0].country.iso3) # [END get_copyright_from_bounding_box] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py b/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py index 3c9fefe6a7bb..bbe20531409c 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py @@ -41,7 +41,7 @@ def get_map_attribution(): ) print("Get map attribution result:") - print(result) + print(result[0]) # [END get_map_attribution] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py b/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py index c2ceedda75cb..d3e7c2587dc6 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py @@ -29,10 +29,9 @@ def get_map_static_image(): result = maps_render_client.get_map_static_image(img_format="png", center=(52.41064, 5.84228)) - print("Get map tile result:") - print(result) + print("Get map tile result to png:") # Save result to file as png - file = open('result.png', 'wb') + file = open('map_static_image', 'wb') file.write(next(result)) file.close() # [END get_map_static_image] diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_tile.py b/sdk/maps/azure-maps-render/samples/sample_get_map_tile.py index e86b49238532..ea38df6be56c 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_map_tile.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_tile.py @@ -33,14 +33,17 @@ def get_map_tile(): result = maps_render_client.get_map_tile( tileset_id=TilesetID.MICROSOFT_BASE, - tile_index_z=6, - tile_index_x=9, - tile_index_y=22, + z=6, + x=9, + y=22, tile_size="512" ) print("Get map tile result:") - print(result) + # print(result) + file = open('map_tile.png', 'wb') + file.write(next(result)) + file.close() # [END get_map_tile] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py b/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py index 77a04620f197..ce7b550809e9 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_tileset.py @@ -31,7 +31,9 @@ def get_map_tileset(): result = maps_render_client.get_map_tileset(tileset_id=TilesetID.MICROSOFT_BASE) print("Get map tileset result:") - print(result) + print(result.map_attribution) + print(result.bounds) + print(result.version) # [END get_map_tileset] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_caption.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_caption.json index 150b5a74991c..4898ffcab850 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_caption.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_caption.json @@ -16,13 +16,13 @@ "Cache-Control": "max-age=86400", "Content-Length": "81", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Sep 2022 15:11:13 GMT", + "Date": "Wed, 05 Oct 2022 19:16:56 GMT", "ETag": "W/\u0022f3cfa19fc3c68912b94faa097ee62351\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: 2C66E332CDE04E8A9730F83EE93FF3E2 Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:13Z" + "X-MSEdge-Ref": "Ref A: 5BF71D0B7653476B8324DC9528C37E47 Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:56Z" }, "ResponseBody": { "formatVersion": "0.0.1", diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_tile.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_tile.json index 0d38215b621b..3c7900f93d62 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_tile.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_tile.json @@ -16,13 +16,13 @@ "Cache-Control": "max-age=86400", "Content-Length": "18516", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Sep 2022 15:11:13 GMT", + "Date": "Wed, 05 Oct 2022 19:16:56 GMT", "ETag": "W/\u00229de0508ecdba66c786311c93a8d63f16\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: 878FECD5265E4C1C80048C76DBF4B6CB Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:13Z" + "X-MSEdge-Ref": "Ref A: C9A85A3EA4584D0EAA4784BF1EE6A716 Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:56Z" }, "ResponseBody": { "formatVersion": "0.0.1", diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_world.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_world.json index c53d91a26267..95bdca4b994a 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_world.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_world.json @@ -16,13 +16,13 @@ "Cache-Control": "max-age=86400", "Content-Length": "912858", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Sep 2022 15:11:14 GMT", + "Date": "Wed, 05 Oct 2022 19:16:56 GMT", "ETag": "W/\u00225f623b123f86e7eaac582e7d4b3dbda4\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: CD9AE628EE7F46D2BB7F729F152B9574 Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:14Z" + "X-MSEdge-Ref": "Ref A: D3D1D0C29D8D45B098C2DC4AB3B2AB43 Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:56Z" }, "ResponseBody": { "formatVersion": "0.0.1", diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_from_bounding_box.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_from_bounding_box.json index e78842ea30eb..507eaaf2db92 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_from_bounding_box.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_from_bounding_box.json @@ -16,13 +16,13 @@ "Cache-Control": "max-age=86400", "Content-Length": "152659", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Sep 2022 15:11:12 GMT", + "Date": "Wed, 05 Oct 2022 19:16:55 GMT", "ETag": "W/\u002213fc5384a26881239fe43e68c5ff6981\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: AFFE330212FC46998050F30D8B19F7FF Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:12Z" + "X-MSEdge-Ref": "Ref A: 33F7BE833E3D49DE9CAA00E33B1E8CD0 Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:55Z" }, "ResponseBody": { "formatVersion": "0.0.1", diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_attribution.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_attribution.json index 886ccf9dc250..3590d5b8719f 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_attribution.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_attribution.json @@ -15,12 +15,12 @@ "ResponseHeaders": { "Content-Length": "98", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Sep 2022 15:11:12 GMT", + "Date": "Wed, 05 Oct 2022 19:16:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: 9A6E8C5BE0554D9D96F94B59FF035199 Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:12Z" + "X-MSEdge-Ref": "Ref A: 70091B1BD8D04D8F8E2142546436C485 Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:55Z" }, "ResponseBody": { "copyrights": [ diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tile.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tile.json index 0324e2c96713..b7cc9178efea 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tile.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tile.json @@ -14,19 +14,19 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "max-age=86400", - "Content-Length": "12273", + "Content-Length": "12274", "Content-Type": "application/vnd.mapbox-vector-tile", "Copyright": "2022 TomTom", - "Date": "Mon, 26 Sep 2022 15:11:11 GMT", - "ETag": "W/\u0022eadef53c2f46dda3046d02377f68544809bf7ce411d3bff917e723f7ba01e0f3279c355763cbdb17dbd060dcb42f7f28\u0022", - "Expires": "Tue, 27 Sep 2022 15:11:11 GMT", + "Date": "Wed, 05 Oct 2022 19:16:54 GMT", + "ETag": "W/\u0022eadef53c2f46dda3046d02377f68544809bf7ce411d3bff917e723f7ba01e0f3836f6fdfa286522a1c62857afddd2582\u0022", + "Expires": "Thu, 06 Oct 2022 19:16:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: F1DE481C64474A169696177D328890E8 Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:11Z" + "X-MSEdge-Ref": "Ref A: B26C5C7A8C3D45B280EE3B57E798DAC3 Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:53Z" }, - "ResponseBody": "Gq8TCg1OYXRpb25hbCBwYXJrEpYBGAMikQEJ\u002BC/gAaIEAAYDCDICDg4mAiITtAFuDUZgLB4BDgYqLSAmChADEhcWCQUJCgUFEQYDDAQgAwAXDR8ADQsLABUVJxMbARkLEQATDRMDKw8ZAw0KEQUVFwEPCQULHwYAAyEWIQEJDwsTGAAMDwwBDA8NAgkNCxMCDwwDCwkKCRMQAAkJCgUSAg4JAw8ICxABCAsPEpQBGAMijwEJyCi/AhIJCAkHDwk8ACIFCAIKBQsNBQ8JygEAwgMSFFpEEjQTGgAaGAABDgICDA4cBAQoBgYFAwMDAwsRCxMdAQMBCQ8IBRIaEgoKDwYUChABBQYKAxweCQoUDhkGBR8JCgEPHQURDwMRBwAGARUDAx0PBwoXIyETBRMIAwwNDwgCDREIFRkjHRUdHxEPDxKTARgDIo4BCYo20AKaBAICDiYJGAQMBxYGDAkMBxoaAgILHAQIBQAeJAABIg0gGxIdAwUOChQIAAYWFhACHQwABhYQBBoNDgIUEwoECBQNHBsmGwgJDh8SCxRBFx8AAAkfAAARHwIBBw8ACRMGHQsAAQ0UEwgPAR8NDQYdFAUKCxwREiECEQ8TEhsFCQQZGgUIDRQFDxJMGAMiSAn8PNIBggICAhQKCgwEHAkCPjIIAxIKLgAEBxQABBgHCBgCEgsBChgMBgMFDh0NCQEXBQ8BCQQJDzEAOx0VGQATDAkJBQ0ZDxIXGAMiEwm0Mb8CMgACDyoNAhkPBw8ADQ8SOhICAAAYAyIyCeA9vkKqAQAVPAAAG1cAAD0eAAAbDgEADQ4CAA4gAgEOHgACDjoAAEoaAAAQCQABFA8SPBICAAAYAyI0Cdw/3juyAQAORAEMBgVIFgAALgsAAA8XAgARDQIAHjsAACsdAAAOHQABOyAAAR8QAAINDxK0AhICAAAYAyKrAgngPro8igkWAAAcEAIBDicAADw2AAALHgEADRABAB5KAAAdDgACHgoAAA0YAQAQHgAAHSABABsfAAAdPAI6AwI8GAICHg0AAAwOAgA8DQAAEA0CAFRnAEkBAJYBEQAAHBwAASRfAAAWFQAAHh0BABsbAQA5GwACKgwAABANAAAeGgICHjkBAB49AAIrDwEACSUBAhoWAgEuGQEBDR0AAA8jAAorBggSCgQUFAUECgEJFQMDDRMRFQMGBwEXCgkDCQYRDAlMAAANPAECKw8CAA8NAAEOHQICLw4AABAuAgAPDgACLg4AAEseAAANLQEAEBsAAA8PAAANHgAAJToAAjsaAQA5FwABHh0AAQ4rAAAQRwACVxoAAB0QAgAPDgAADx4AACsgAAEOHgAPErIBEgIAABgDIqkBCdY5/gzyBAACIgQAHkAAAB7MAwoBRMABBEwBACADAwAZXwAANjcBIw8XAiUHGwERCQEoCwUJBhcAHwwCGh4UDgMcEBIYEg4CWgUICSIPCgAQEQUVEA0JEwIDCCEKJwQRAyMWGRErEB0GBwsRAAsJDQILDR8DGQ8LBACYAQECAQFZAgS/AR8AAB8dAAFdDAUyBAAxyAEEAUE/AAIfXQAAHxkABVsdAAAfDxJbEgIAABgDIlMJvkKQG6ICNwATA0cAABlbAgBgGwIABTkBAjNLBW8DABunAQMoJ6ABzwEeGQ4NDQ8KExIEBg0YAh4leAAAMhwAHAcMBAwHJCIgFwwdGAseAxwADxLYAxgDItMDCb5CgBiqDhsAIQYTCgseHxYjHwsIDQMZCBsAAEsJBAMLGQAPBhMFDQ4VAwcaHyYVAwMMEwERDAUNFwwRFBsIFRQRBQAjDgsKFR4JDgAcEToCAF0OAAwLAxMQHQULAB0TAw0JLQcTBAkHEQQvEx0MAAoPAh0LFQwHBQ0ECwUHEAAUJwQACB8ABxAdAAAYBwAAFjUAAAgfAA8IABAdEBcAAAgVAAAINxEYFQ4GDgAIAQwIAgIMAgQBFA8CAQgNAgAcDRoCCAkIBAYEAwUFAwMCGQQHBBsMAQIHDAECExARAAkJAQARBBEHGRgNAwALDQYACyoABAUYAQAINgAQDRAXDgAQDyYAAB8gBxAPHgcABSAAIicQAAAtEAMgFxYCEA0SJRQDCA0eFQMLCB8LBw0fGwcJCAcRAm0fAAAPXQENEAcHFhEAIz0AAA19AAIPTQAADS8BAMkBHgIICiAECg4SAAoIEgAIDB4FLA8aEiQVIgQ6CwQJFAEOChYPEgYADw4HDCMGBwFZDw0TFQcACw8VAhkNBR8gCxgACAUOCAIpDggcAiwKFgEkEB4BGgQANV4AAhoIFAcAADAkBDgWCgccARoCCAggBB4AFBEWABAIEhYGAQ8SmQIYAyKUAgnENZILqggEAAMCAQADAgIuDwgBkAEHAAAgHggAEBAIDwYIHBQaDgQBFgsCCxEFIAIoCBYJJAoJChYCAA4QBgUKHAYGBwEHFwsABw8JAAEPCQQBAAGEAQgWCAAALgYQGB4AHgYQIAIACBgCAEQkAgYQAxAgDgAgFgAAGBAIMAAAGAgAABgIEBAAAB4OEAIYBgACIBIOGgABDhsDDQkNFyMDDgcPJwATDSkTCw0CBw0fCQQNEQkJEQAVEwULEREHGRAEDxcTCREcAgEfFwcLCwUZDx0LAwUnDwMIIQ0nBA0FHQAdAx0LFQMXAiUKDwsxFREGDQ0VCx8LCwQFLgAAGR0AEAcKDxA1AA8JDQkfBgsWEQgrDxJWGAMiUgmSPpAqqgIGAgYABQgBFg0BAA4PAgEeEwIBKggCAE4DAgkHCykLAQcPAA0ZBgEYMQQDCAQjLAMYFSQJACAIGwEjEgEEExYRBAkCAwEEAgEEBQ8SRBgDIkAJujiSFOIBAAIEEhAOEAIALg8AACgQAgAmCAAAHggIACYQEgAeBggYAgBoAQATAwk7CycHMRVJFTUPVw4BABkPEl0SAgAAGAMiVQmOPo4WsgICACgWEgMMCBIDMggMChQEAB4GDA8eBBYLCg0AAF49ARcSDQAbCAsYDQwAJE8dDw1NGQA1AZEBBgkoAwATDA8IBg4DCAYYDRYMFgAACQ8SZhgDImIJrj2AKeoCBBAKCgMSBQMBAAIAAwAFCQAIBAQIBA0IAAQCCgAJDBACFQYFCgwHDggNAgEgEgAMERIDBwMCDQQOAQYMDgsAKhAWCxYfBAUdBhMJDxUJFSEODgQXBQcCKQwTDxI5EgIAABgDIjEJvkKYD6IBAwITFQ8HFQATEh8AHQMfCR0CCQg3FSMDAi8CAAAMQAA2BwoEIgCOAQIPGghjYXRlZ29yeSIICgZmb3Jlc3QogCB4AhrdLAoMT2NlYW4gb3Igc2VhEt0CGAMi2AIJ5jS0BZoKAgIIDAAMDgoeDAYFGhIUBBoSPhQwDBICOBQFACQKHhcQDyAJEAsYCQEJDAEDBQYEAgIAAQMDAAEBAAABAQUCBgACAAMABAADAAICAAABAAIAAgIAAAICAAEAAAEAAgABAAICAAYCAwYNCA4QAhYUEQoICwEDCBsMAQACAAEAAgEBABEGAwgZDg8SAAgQDhACBgQUABIKCAUECBoMKApACA4MChAADhwKIBQOBjIWPhIUCjIODhAQBw4OGA4kBgQBEggKAhIMGgoICgAOEgYYBw4CChQYEg4CBgUeBSgIFg4SBhQcJA8QABAJAAYSAA4OBQYYDAoCGAsFEgoWEAMUCggBBg4QCgEGGhIWAwQRCgMHAQQPGgMIBAgHDAAKCQUgDxICCBAAAhIUrgGdARthF7UBL7sBLw8FkQE9DQPrApcBswFJtwFLrwFHARUENQplDxKKBRgDIoUFCYhBvwKKCwAYEiIUBAgOFh4MDg4LDSkhOQUHjgEAAMoBGR0jNwUICQMAEAUKDBgEAg4WAgABAAACEBgeIAgEAFAVBx8bDQ8XDQEAAgIDCAASECAHDAYaAwoYFgsDEhQDAiYaFxQCBg0QAiQBFhIMEhQSEAQEABAFAQ0ACwoIBgYMBw4TDgAMFBYBBhwYAIYBAAsHHRkTABcREwsFEQ8hDREAJQ8OAQIHBAISCBEJAwsGAQ4PCgQSEggFAhUSJAoBBBAKCAAPDRsBCxgbCgELDQQZDQMVDwkKBRQPKQIHEAsQAgINBw8EBwUTHwsHDxsFBxUCCQkNAwgNAAULHSUJBQULAQMCBAADCyEEFgkCBxcfEQ8hCw0ZCxEPCQMVIwINDQMCAQQBAwIXFxMPAAUNBAUHDBEACCwgBAEgIhQIFBoBEQoECA8HHxERDwEFBwANEgMUBA4TDAEABw0HAAsHCQEBAgIBAAcHAgUJCw8JpAL0AaoBAAIaGAACAQECAgoICwcKCgYEAgIBAQICAgIEAgMBAgIEAgYGBQUIAhUXDwmfAVeSAQEAAAgLARIeBwYGCgUGDhwWCgMEDAoGDQEfAyEHEQQJCQIECA8JMhAqAQIUGBQKAgUlGw8Je3GSAQAQCQYFCQ8HBg4GIhAkEgIGGgoDCxsKAhgPAQsLEwsHCRUNBw8J4gHeBkITGwcDBRUFAggHFAoICwQTDwkAjAKaAQcCAR4GEgEWESIDFAQKBwcAFwgRAQkKCwMRDREFEQINDBEUAwYDDwkA5AMiBwIJIQoHCBEPCQC0AqIBDQQxBxO1AQgCCAkUBAAIGBEKAwILExMJEw8HCQMKAgEDBAIUDB4OBgUPEj4YAyI6CcxAognKAQACCAwRAh0WGBABBAcKAQwIDAEMDRcGERMKDQAVCwQDHAwOAxQHBwENBgcPCA8eFwoDDxLlAhgDIuACCbAovwKqCgQKCgEEBxgACAQGBgQIAQcECTYAEhAeIB4WGCIAFgYUBQAODgoCBA8KBRQGDA4YFAIICxAMBgoUBwEKEBIABQQGAAgSDggIDBgCAhAKCQgOBxAWAQ4gygLSAV4yHA4MBQIMEAsGCAAHEAEODAYUCAQACwoACg8DBRYZFA4BCBMeAwAIJAUCAhQSFAAOGhoIAwgIDgkaBBIILgwQDBYCHAwcAhwSCgQWFA4AFgwYABAODAMFGQADBgsQAwYGCgkGBhwVBBsQGwwHCA0MABAZDAcMAgMNABEOGRoVHCkMCwYTBAYKCwoEAA4GABEQAwoCFhEOCQQFChEKFyQGFAsWDRIRAQ8OFTACBgkOEwwFEBUCBQUHCBMJCwgEGgIICgISEBQFEBQEEAoMFgoGDAwICBoGAQwMCgUOCAVAC3YAPKsDrQHRBPMBgQOfAd8E\u002BQHzApkBswTnAV8nDxJsGAMiaAnSM78CggMDFgIcBwYFGgcKBRQBFgkMEwwRDgMSERI7Bx8MERAACgkGEggNBAAWBAwVBwkNBAMFAhEIBQwNJQgDBA8OBBQJBBEkGQQGJAUOCCIDGhcCDxwRDB8AFQYLAB8XCQEJGAUPEiMYAyIfCZAwwwFiAgwJCA4CEAwDCgoGARQxCwQZBgEHCw4PDxJGGAMiQgmKML8C6gEEEA4cCQgICAcGCRgAEBMQHSIADhoCAgYbEA0JARMECwEPDA0ECAwXCgoMDwQLAhULCwMPHgUJGwMDDxL1AhgDIvACCfIviwGiBAIAJgweAgAGGgoOEC4SJgQMJgsKCAgKFAYDBgwIBQQOCQwDDggGDQYREgMKFwAECgkGBg8lAQQGCwQlJAcaAAQAAxcKBxIJABMgDQoFDhECBQoICBESDQMNCgoKDQMCEHU93wGPAcABwQEWBRgCFhIQAgwKAAwKCA4JEAUIBwMFGAkIFQIBBAcIAAwLDwkxwgJKAQAPGAgOCgcCCQwBCgsHAg8FDwkUIUIBAgkICAEBDBAQBAwMJRcHDwmfAUVKAAIGEBMBAQQCDAwIHgcPGwkBDwmAAiWCAQECAwYGAwMEBwYDEgkBDQYFCgQKDgUQDQQCFAcOEQsJDwlWfcoBAQAHDg8CDRgXFggQCQAHCgYBBgwFCA8EBhIIBg4HFgAIFxQDBhEGAwIDAwIIJQwLBRUPCccCPDoECBcKAQYaCQMIEgMPEQ8JFBs6DxIWAwoKBQgaCRMPDQUPCWBNMgECAQwLGg4GAAkIGQ8SHRgDIhkJnDC4AUoAAgIiCw4RBAEGBwUKAQIBFBEPEk0YAyJJCZore4oCAgAMHAYACBAQDBgeBgwKAAgGBwgMAgQMBgEDBAEAFQECBREPCgEdHxEHAQYTBxAFBwkXCwEAAAIAAQEAChEDBQoHDxJSGAMiTgnULcMBkgIUBigGGA4MAAQuBAYNASEQDgIBCL8BwgFpQQslBgYkAAUJCAYSBgwJDgMACQYFBA0UAwIPEgsMEwwAJB8BDRAPFA0DCw4HDxIyGAMiLgm8MekBmgEGBg0UCAIYFBQKHiANBgIIDQgFBQUVDQ0BBycRCQcDCQwJCgQKEw8SLhgDIioJ6i2DAooBAgAMBAgQEAkKBAQmEQgACAwGBQIVAScJBhMHDwoNAQkMAw8SaBgDImQJoDGpAboBABIWBwgGDQgMBggDDAYECg8BAwYKCg0UBxYRABMDLRENDw0BCAUMBhIJGh0aEQ8JCBiiAQkGFQANCgEIDwwKBAUIGAoODRADAhMIBAwNCRQMAAMJBgQIBwsHDQcPEjAYAyIsCcAvgwKSAQMILxIPAB8MDQIBDBEHEwwHAwMfBgQcDCgHFgkIABoNBAgeCw8SQhgDIj4JokGeCdoBBgIBGgICEAQPAwAOGQQBCgsDDAMFCQUKFwcFEwsEDQEJBg0UEgIFDAAFCwULBx4XOAEWBAwNDxInGAMiIwmKQYwJcgIACBIOBwgCBwYRFhUDIwAIEQwFFgACBggJCQQPEh8YAyIbCaAwuAFSEBQOEQoCDxIIAAcEDwEABwkNAQEPEk0YAyJJCewcvwKaAWAowgKEAeYE/gHgBPoBggOgAdIE9AGoA6wBEwDZAUdVHbsBP4cDgwG7AT/NBfMBrwORAcsDmwG/BMMBwR0AAJMBDxIbGAMiFwm/ArhBOtQ\u002BAAMuABgHHgUeAgTDPgAPEv4DGAMi\u002BQMJvwKrAYIPwh0AwATEAcwDnAGwA5IBzgX0AbwBQIgDhAG8AUBWHtoBSAcKAxYAGgoeBgoWFhsIIRYbIAcOBRwAHAoiChAADAocDhwYEgEQBhgKFBccDRgBDAMmAgwOIiMIIRgZKgMOAB4IIhAYDCgMEBISDCQOFgMqBA4PGgUaBiwJJgAcBiAMGBQUHBIDJAokEBggGA4eCBwaJhQSEg4gCgwiCA4AAQ4SHhQIFA4OCigOFg4QDggQGg0SFSgJIAIkCBgQGBIQGAwYCB4CIgcIGgAUAhoIFAoOGqQBBiYFHAIcFDwRHgMQABwMNhQ8DBguLAAiDCQWICwcEE4WUAweARwMKhREBDYGGgBWBCgBFglIABQEPgQSDiYkIhZCCjIKOgxQGm4UXAx6AdoBBBABLgIQAFwEFAFSEVoFDAciARoHEgMmFlIOHBQcEg4gEiAIGCooZBRIBjQEPgckDw4dJg8GHRITHgcUASIIJAoSFBQeEAIIAh4BGgIYBhARHgcWBCgLEAcWAyICGgwWGBocDggQDAoBQgUgADwDDA0eASgHGgAkDCQCEBMQEyIDGAIcDSwAIggUFiAMCgESCTwXEhEoBR4AGAQaEhwWFgYWBBwFNg8aBx4CFAwoCA4AHgc0ByANJAkQCx4RQAMcARwIIAgSAQbTPgAPEpMDGAMijgMJhDy\u002BQpoMAQMGHQgdABUGNQcRBx8CGwQbEj8MHQoPDiMIHwgzAB0HDQsnARMIHRAZBjUDGwUVFRURGwMZABcGHRInGBEKOwIRCwkVHwcTACEOKwEbBBcUIRQPAQ8LIwAjCBkCJxIpADsGHwJBCwkHDxsNFxkLFQEZBCEIFQwPAycIFRIdBQ8BFwIdAx8dERMTCREHIwIhCBMUHR4REAUeJRANCCMDPQUzE0cnYxcpHwcfERENExsNGxFBGAF4Ax4BBBIEDBQoAQYQCAIGHj4YOAwoECAONAIeDjwIagUuCSATAg0EDwwDGBkUABIOCAgQABIIAggSAi4EIgEcBCgDLgUgASoTGgIMDgMIDAEMBhAWEgYKBBgAGgQIAFYEDgUKCVwFGAAYBRwKCAcEBiAFJAASAxoNJAUBCxAKBAQYBxIKDgwcDhINDAVWC0QREiEOBgYmAwgGDCYCFAA4B0gFDAEiCQ4OBAQcARwBPAMICUILOg8OERgGDgkMAhYDChAAAhIJDgI0C1AHKgMcDxJsGAMiaAnUPZw4ggMSBA4QEgYYBAALDgEHFAkKChIEGhASARIKCAEIEAEGAQUCAxgHEg8CBBAeDgIGCwUFAQQGAAQBGAIXAwEBAwEABAQBCgELAQEHCQ8LBQ0VEw8JExMHJwANCgUADQwXERMPEicYAyIjCdw9tDpyAAICCg4GDC4HFAsQDQoHGAURAh0OLwgBCxcGCQ8SJRgDIiEJ7j3gPGoDCg0AAQYBDgoGCxIFAAMRAAkMCQAJEgACBQ8S6gEYAyLlAQm\u002BQrIN0gYDBRcLDwMTBgcKEwAHBBUBHwkTDx8LDQAnCQYGEQwPBQIHDwoLARcEEwo5AQ0LBQgTBh0CCQsLAxUEHQAfAwcLJwYNARUFAwkTAhEHDwAVBQsFAwsvFw0LARMGCQ0JGQAFBR8THQ0VDScPGxUTAEUJFQklCQsNDQkfBhMFHR0hDQ0TCQErHQcBBwkpGQ8ADwsZHQsEBQkNAAkHCRclBSEBDQMLBg0FFQIVCA0HExAFFwUBCW8BcQADDAakAUK4AUy0AUrsApgBDgSSAT4QBrwBMLYBMGIYxAEiDAIOAw8S8AQYAyLrBAnWNJwIghMAAgpuBgIGJgQKFAwKEAIMDgoACgwMCloACgkODBoBFgMWFRIJEBQgAhoPNgkQBwERFgcEARAQFAgWDhoFDhQOCBABEAoQCxQBJgYKAQ4MFAQgACAGHAMODiYHIgYICgAGJgoEDhQIJgEOBwAEDgYDEhQHBgoQGhIDEjICBggKAQoOABIKBAAMDAIGCgMOEAAQBgoSFgAMDAgWBjAOHA0IEAAKBggDEBoWEggSCBwCFgo0GDgIIAQWCBIIMgwoCCwGMAgqDmwAJghIAjAKDgYkAh4IFgMEHgwKFgocDDAgABQUChAWUgQWDCYIJAxCCjwIHgAODEoCKAZ0AkQDOAMmAB4HAjwuBgIMLggQEEoMQAhQAiQDGAQQCgYcjgECGAciBCICMAQUAjQEGgJgAmgBRAA8ASYEBgVWBSoFHgkMBAYFHgEeIBsKDA4BBhQBBFUEVwIDFQQdCBECGQghBgsSWQJRAxMAWwEPAi0DDwLZAQt5E1sZbQtPCTkJMRVBIyENJQMRAz0AEwxdAycAVQUZAzUTQwspAhsLHRVPD00rGxUfCyMAIS0rCxcTOws1ABsEDxIdEzsBGwYbCTcVkQEJDQcTARkAEwcZIQgdARUFGQ0RDw8XBxcBIwofFicOEQ8XDQkNDw0VCSUNDwcTHRMNEQACCxcHFx8JEQ0TERklBxsNHRsTExsJIwQjGxETEwsXBR8AGwolBSsGGRAZAw0EKQ0VCyMREQsPCycJCwsfAR0EGxopIhckBw0hAQsEJQILDhcYGwkTBRcCDxcRDRsJGwALCQ8JIQAbBhsIDRwfIhUUBQ8SkwQYAyKOBAmuPrQk\u002BgwEAAkCAQIJFAwMBAIEBAMDAQMACQIMCgoGDhIEEwEHDggBDhYiDAgODAILBAwGAAgJDhcGKx4RDgsBDxAFAwwMAyoNBgsKGQgCJAEOBBYYDg4OChwCFA4SBg4SBAQaBwYCHAQQCAAFAgkCAhAPBQUNDQgCEAUSFw4BHAgSBgAaEA4UAxQKDhABFAgYAhMCFg4OBAoYBiwOAQIAAQIDCAIMBAIKAgUMBAsHAQMAAwMABwIBBAcNAAEABRkRIxcLAQoBCwkJCwAEEgIQAQ8LExkBAQIDBgIHCQcAFQETDQkDEAoYAwwMDAYOFRIDFBEEAA4JEA8KAwgJAREIHQAFDQATAQYAGwNHBREBFQAdBSMBGQIACAEHAAIRCAcDGQA1BB0AJQkXCwcDEQ8dAREIEwshCQIJDgQTARcbjQEoEB4SHhgKAQkDDQ0LAwAJCwMQAgAKFAAYDgASBwcGCAQEAg8uDgIHEQUNDxQIAgcTDQ4BBg8DDQYNAAoBBhAGGBYcABQDAgcDDQEFAgYACQoLFgUIBAELAwEPCQUJAAcKDQIBDwl3zASCAwEABwIHIgAcBgYDGA0NFiIWCgoQBRIGFgEKEgMSAAoVDxcAJwkEAQ4DDxEAEgUGCA4RAgsPDQ8DAAIHDAYNBwkHBAAYBwcECwkEAAoBCQADCgECBwkDAAkQDAQPCQkBDw8SIRgDIh0JwjX4CVoGBAsAEhAIGAsMBhQFGA8KBQUJWQ4LDxJuGAMiagmIPKYiigMCAhgKLgYDBgcsDxAGAhIDEg8EAwYBEggLAAkBBAoRBg4SDAQKEg4GCwQEAAkABQwBCR0jEQECDgoCEwYJEAQNCQQHEQQFBAUDBgIHCgUNAAUGBAUFBgENBwQNJQwFBBcFCw8SORgDIjUJvDz4H7IBAgIUEhoKECABDBYMFxoCBoMBYgUJCwYJAQclBxcBFwQdCxEHHQYTJBMWAy4EDxKCARgDIn4J\u002BjzuINoDAgAWDkAAEAEoBAMICwEFChECAwgmBSIADAYKBSQICgMFCAoDBQQOCgwCEgkWEQQGDwwNEikMHRYTBDcSKRQnAQ0OCRgLARcIHRAtBR8PAgEJAg0NCAELAAcSFQM7LR4FHBUQAAQDIQIJCAgJFgkFCBoBFAJ4Vw8SGxgDIhcJ4DmiC0IMADoKAAIFBhcKDQUXBQEJDxIhGAMiHQn0NZoJWhAAJAgQGhUMCwIJAQ0RCgMLAAsRBAMPEicYAyIjCZJCnA1yBAQVGBEMCQAbBxMACQULDQYDIAoWAggDFAASDQ8SHRgDIhkJvDSkB0oSAAYCAnYVFQUJCR0BDQYhCAcPKIAgeAIa9AIKC090aGVyIHdhdGVyEs8BGAMiygEJvkKqLYoGBwADBA0KDgkDEB0SHyABHg8ICwUbCisYDQELCRUONQATFwMEBQQJCAAUDAECAgYMCAMMAwgCBRADBQQHBgEFAhUEBQIADQ0AABMICQMJCgYHFQcCDRkKFQsEAw4TCgYGDwIJAAoBCQItDBsFEQoZAg8QIQULCgcbJxUCByENBwoPAxEdEgAXIRMSEycHGwQBBBsFCwQbDgUCAAACDgwUKCQIHBQQFhgYVAhUHzYHNB9AIB8KCAYgCwYEOhFaBkYJCgMPEo0BGAMiiAEJvkLyLIIECQRFClkFORJNJzMgNQhTIFMHJy0bEyMHEycNCw8EAxwGDAAEARgFEQYFFwsBFRAbCAYYGwIAIgYcFCAHAwYTBAIWEA4OHiIeAgoUDCAKGAAIDQoBDBUQBQwNFgEIFRgHJBYQAw4hIAQGFzIHBA4KBgQUAR4OCjAEFApSAQgHKgMPKIAgeAIaSAoNUmVnaW9uYWwgcGFyaxIyGAMiLgnMQOgXmgEASCAADgwVBh8UCRQREg0CExITFRcAHRkVDxwhHA8SFSQTGAEeCQ8ogCB4AhqlBQoWU3RhdGUgb3IgcHJvdmluY2UgcGFyaxIbGAMiFwm\u002BQpIHQgUIAgoRABAfAhMFFQIbCAEPEk4YAyJKCdo5jgeKAgoAAB4ICgICFgAcDRkYAgwwGA4HBQwoFDoOJhAsCAgGJgIIHgACIRkNCA8PMQ0TCRsFHwtBGx8TGwkADQcJCQsAEw8SyQEYAyLEAQm\u002BQvA1KhEECwsPBxIVHAAPCQCWA/IBDQALBh0HGwALDx4LHwwFGRAADAkUBQ4TAR0XCwkhCA8NAQ0GBw0ZAAAPCwAIAyAIHgMOCR4IDBYMBQYFDwkA8AGCAQMBCxADDQ8DFRERCAMNFRkBDxISHAAgCg4SDREOBQwADwkAqgOKAjEABxcQCQkLAwgPEwIjFgYDAwkFCRMXFQEhCRkCCQIKIgQLHRwZAhIMCwUNCBcKDRcMBgcRASIZDgUIDQcLCgQGAQ8SLhgDIioJ0j26OooBBhQJJAEOAzAIEA0YBhIAGAUAAQcvBgcFKg8MEQxXAg0CJw8SQhgDIj4JiD2kLdoBCAQGDA4IAAgBARECFiAKBAoLHgoFEg0ADgoACgEFAAgMJgEOCwQJGQsGDRsOAA0FJU8PBRQTDxIwGAMiLAnMPdIxkgEABAgODQAHGA0OABYIAAIUChAKAAMOCQALCwATExUBERoTBhkPEi4YAyIqCcQ9tjSKAQIAEAQDJhIOCgAAEBUMACIgAAgPAB4pAA0HCykNBAENFBcPElQYAyJQCehAwDGiAgQCCg4OAAAQEAEAHksCBxEJDAMSBgAABg8CBxgEEgACCxgNBg4NAg0IAwUVDBMCAwwBBQAAAQQVDAcAAQgIABMPAAANEAAADw8SIRgDIh0Jvjy0JloCAA4mBxICEhAeBBIQEDcACWkGEQoLDyiAIHgCGoYICgtFYXJ0aCBDb3ZlchIgEgIAABgDIhgJ4Dy\u002BQjoASSIAAJEBIQAAYaADAAC\u002BAg8SGBICAAAYAyIQCYBAvkIaAL0CvgIAAL4CDxIhEgIAABgDIhkJuEG/AjponAEeGACMAdEBACM1I6MBImUPEjQSAgAAGAMiLAmIK78CegBWmgE5NxuWFAAAwALrDwAAOU0AADq9BACXAXMAdU05vQEACRsPEjgSAgAAGAMiMAm\u002BQoAgWr0CAADnCyQ1bgAAa20AIzcAxQW2AQAAOIgBAA8JYdgEGgDaASRsAMUCDxIhEgIAABgDIhkJvkLmCjrPAQBtbQDhByQAIzcA3QG\u002BAgAPEiwSAgAAGAMiJAm\u002BQuYgYm0AADJuAADoHr0CAACZEmgAAGMhAEUxAM8MvgIADxKXARICAAAYAyKOAQnuNIoJogPcAQAAOGwAlAGkAZIBNrYBAG44JG6SATbKAgAApAFJAAA4SgAArBHtBAAAoQEjAADVASMAAGslAAA1RwAlawBrIwAAwwIjAAChASMAAGslAACjAUcAJaEBRwAjNwA1SQAjNQBtJQAAowEjACOPAiMAJTcANW4AAMkCIwAPCW64AxIA2gFIbQ8SiQESAgAAGAMigAEJ4DyAIKoDoAMAAIINiQEAADKLAQAAlQFnACFkIwAhMQCVASIAAMUDIQAAlQEiMyQAAGYiAADKAUYAAGREMSFlAGMhAACXASIxIgBDMQAxZwAAMiMAADEhACEzAJcBIjFFAACXASQAAGZEAABlaAAAMdIBACIzIQBpMQAyqwEADxJNEgIAABgDIkUJgDAAwgHuCAAkcJIBAG1vygYAAPgJtQEAADW3AQBHb6UCNUdttwEAkQFttQEAtwFvI21tAG1t2QEAJW\u002BRATUjpwFuNQ8SgwESAgAAGAMiewmCPYItogMiAABkRgAAZEYyaAAAYyEAADFEAEYxALgMiQEAAGFpACQwADIiAABiJDJEAAAxRgAAsgX9AgAiMQClAiQAAJMBRQAiMQAvJAAAkwEjAABjJAAA9QEiAAD3AUUAAI0DIQAAYyIxaAAAqwJDMgBjIwAAMSEADxIXEgIAABgDIg8Jti0AGoACAGumAZMBAA8SGxICAAEYAyITCYw\u002B/C4qAPoBIQAAlQEhAAAxDxIVEgIAARgDIg0JvkKYIRptAAAxbgAPEh4SAgAAGAMiFgmQO4AgOmgAADIjAACaASEAADMhAA8SGhICAAEYAyISCeo95i0qIjKMAQAAZGcARTEPEiQSAgABGAMiHAmwPoo5UkYAAGKKAQAAYkUAADJDACMxAGEhAA8aCGNhdGVnb3J5IhIKEHdvb2R5IHZlZ2V0YXRpb24iCgoIY3JvcGxhbmQogCB4AhqzAQoSSW50ZXJuYXRpb25hbCByb2FkEmgSBAAAAQEYAiJeCZhCkAciAAQVZzojAgIJGcYBEgs5AAMJGIMBOi0YGEYGiAEcFAIAAQAbGwkeiQKaATfLAbsBvQEZRQlvHkVBUV2jAUE3G0MAKRxwcn4uXERMFz4CfhpGwgHGAS6sARoMY291bnRyeV9jb2RlGhNjb3VudHJ5X3N1YmRpdmlzaW9uIgUKA0NBTiIECgJCQyiAIHgCGkoKDElzbGFuZCBsYWJlbBIRCAASBAAAAQEYASIFCco3hQIaBGljb24aBG5hbWUiAiABIhIKEFZhbmNvdXZlciBJc2xhbmQogCB4AhrQAwoTTmF0aW9uYWwgcGFyayBsYWJlbBIREgYAAAEBAgIYASIFCdo/swISERIGAAABAwIEGAEiBQn0OrwBEhESBgAAAQUCBhgBIgUJ6D2OCRIREgYAAAEHAggYASIFCfoqmQESERIGAAABCQIKGAEiBQmmQtAHEhESBgAAAQsCDBgBIgUJ/kCQEBoEaWNvbhoCaWQaBG5hbWUiAyCpASIRCg8xMjQ1OTgwMDAwMjkwNTIiIgogUm9iZXJ0cyBNZW1vcmlhbCBQcm92aW5jaWFsIFBhcmsiEQoPMTI0NTk3MDAwMDAxODAwIhwKGkdvcmRvbiBCYXkgUHJvdmluY2lhbCBQYXJrIhEKDzEyNDU5ODAwMDAyOTA0MiITChFGcmVuY2ggQmVhY2ggUGFyayIRCg8xMjQ1OTkwMDA1NDU3NTMiLQorUGFjaWZpYyBSaW0gTmF0aW9uYWwgUGFyayBSZXNlcnZlIG9mIENhbmFkYSIRCg8xMjQ1OTkwMDI2NzczNjUiHAoaR29sZHN0cmVhbSBQcm92aW5jaWFsIFBhcmsiEQoPODQwNTM5MDAwNTIxMTAxIhcKFU9seW1waWMgTmF0aW9uYWwgUGFyayiAIHgCGs8DChJOYXRpb25hbCBwYXJrIG5hbWUSERIGAAABAQICGAEiBQnaP7MCEhESBgAAAQMCBBgBIgUJ9Dq8ARIREgYAAAEFAgYYASIFCeg9jgkSERIGAAABBwIIGAEiBQn6KpkBEhESBgAAAQkCChgBIgUJpkLQBxIREgYAAAELAgwYASIFCf5AkBAaBGljb24aAmlkGgRuYW1lIgMgqQEiEQoPMTI0NTk4MDAwMDI5MDUyIiIKIFJvYmVydHMgTWVtb3JpYWwgUHJvdmluY2lhbCBQYXJrIhEKDzEyNDU5NzAwMDAwMTgwMCIcChpHb3Jkb24gQmF5IFByb3ZpbmNpYWwgUGFyayIRCg8xMjQ1OTgwMDAwMjkwNDIiEwoRRnJlbmNoIEJlYWNoIFBhcmsiEQoPMTI0NTk5MDAwNTQ1NzUzIi0KK1BhY2lmaWMgUmltIE5hdGlvbmFsIFBhcmsgUmVzZXJ2ZSBvZiBDYW5hZGEiEQoPMTI0NTk5MDAyNjc3MzY1IhwKGkdvbGRzdHJlYW0gUHJvdmluY2lhbCBQYXJrIhEKDzg0MDUzOTAwMDUyMTEwMSIXChVPbHltcGljIE5hdGlvbmFsIFBhcmsogCB4AhqTBQoRUG9pbnQgb2YgSW50ZXJlc3QSIQj8mqDco6ocEg4AAAEBAgIDAwQEBQUGBhgBIgUJ2j\u002BzAhIhCIiys/\u002BfqhwSDgAAAQECAgMHBAgFBQYGGAEiBQn0OrwBEiEI8pqg3KOqHBIOAAABAQICAwkECgUFBgYYASIFCeg9jgkSIQjZ86q5p6ocEg4AAAEBAgIDCwQMBQUGBhgBIgUJ\u002BiqZARIhCPWArbqnqhwSDgAAAQECAgMNBA4FBQYGGAEiBQmmQtAHEiIIjYOv5POOvwESDgAAAQECAgMPBBAFBQYGGAEiBQn\u002BQJAQGghjYXRlZ29yeRoLY2F0ZWdvcnlfaWQaBGljb24aAmlkGgRuYW1lGghwcmlvcml0eRoLc3ViY2F0ZWdvcnkiGAoWUGFyayAmIFJlY3JlYXRpb24gQXJlYSIFINi0uwQiAyCpASIRCg8xMjQ1OTgwMDAwMjkwNTIiIgogUm9iZXJ0cyBNZW1vcmlhbCBQcm92aW5jaWFsIFBhcmsiAiA8Ig8KDU5hdGlvbmFsIFBhcmsiEQoPMTI0NTk3MDAwMDAxODAwIhwKGkdvcmRvbiBCYXkgUHJvdmluY2lhbCBQYXJrIhEKDzEyNDU5ODAwMDAyOTA0MiITChFGcmVuY2ggQmVhY2ggUGFyayIRCg8xMjQ1OTkwMDA1NDU3NTMiLQorUGFjaWZpYyBSaW0gTmF0aW9uYWwgUGFyayBSZXNlcnZlIG9mIENhbmFkYSIRCg8xMjQ1OTkwMDI2NzczNjUiHAoaR29sZHN0cmVhbSBQcm92aW5jaWFsIFBhcmsiEQoPODQwNTM5MDAwNTIxMTAxIhcKFU9seW1waWMgTmF0aW9uYWwgUGFyayiAIHgCGi4KDFN0YXRlIGJvcmRlchIZGAIiFQnYPO4sMhBJkAF\u002BUAjCAUVIJOwBFyiAIHgC" + "ResponseBody": "Gq8TCg1OYXRpb25hbCBwYXJrEpYBGAMikQEJ\u002BC/gAaIEAAYDCDICDg4mAiITtAFuDUZgLB4BDgYqLSAmChADEhcWCQUJCgUFEQYDDAQgAwAXDR8ADQsLABUVJxMbARkLEQATDRMDKw8ZAw0KEQUVFwEPCQULHwYAAyEWIQEJDwsTGAAMDwwBDA8NAgkNCxMCDwwDCwkKCRMQAAkJCgUSAg4JAw8ICxABCAsPEpQBGAMijwEJyCi/AhIJCAkHDwk8ACIFCAIKBQsNBQ8JygEAwgMSFFpEEjQTGgAaGAABDgICDA4cBAQoBgYFAwMDAwsRCxMdAQMBCQ8IBRIaEgoKDwYUChABBQYKAxweCQoUDhkGBR8JCgEPHQURDwMRBwAGARUDAx0PBwoXIyETBRMIAwwNDwgCDREIFRkjHRUdHxEPDxKTARgDIo4BCYo20AKaBAICDiYJGAQMBxYGDAkMBxoaAgILHAQIBQAeJAABIg0gGxIdAwUOChQIAAYWFhACHQwABhYQBBoNDgIUEwoECBQNHBsmGwgJDh8SCxRBFx8AAAkfAAARHwIBBw8ACRMGHQsAAQ0UEwgPAR8NDQYdFAUKCxwREiECEQ8TEhsFCQQZGgUIDRQFDxJMGAMiSAn8PNIBggICAhQKCgwEHAkCPjIIAxIKLgAEBxQABBgHCBgCEgsBChgMBgMFDh0NCQEXBQ8BCQQJDzEAOx0VGQATDAkJBQ0ZDxIXGAMiEwm0Mb8CMgACDyoNAhkPBw8ADQ8SOhICAAAYAyIyCeA9vkKqAQAVPAAAG1cAAD0eAAAbDgEADQ4CAA4gAgEOHgACDjoAAEoaAAAQCQABFA8SPBICAAAYAyI0Cdw/3juyAQAORAEMBgVIFgAALgsAAA8XAgARDQIAHjsAACsdAAAOHQABOyAAAR8QAAINDxK0AhICAAAYAyKrAgngPro8igkWAAAcEAIBDicAADw2AAALHgEADRABAB5KAAAdDgACHgoAAA0YAQAQHgAAHSABABsfAAAdPAI6AwI8GAICHg0AAAwOAgA8DQAAEA0CAFRnAEkBAJYBEQAAHBwAASRfAAAWFQAAHh0BABsbAQA5GwACKgwAABANAAAeGgICHjkBAB49AAIrDwEACSUBAhoWAgEuGQEBDR0AAA8jAAorBggSCgQUFAUECgEJFQMDDRMRFQMGBwEXCgkDCQYRDAlMAAANPAECKw8CAA8NAAEOHQICLw4AABAuAgAPDgACLg4AAEseAAANLQEAEBsAAA8PAAANHgAAJToAAjsaAQA5FwABHh0AAQ4rAAAQRwACVxoAAB0QAgAPDgAADx4AACsgAAEOHgAPErIBEgIAABgDIqkBCdY5/gzyBAACIgQAHkAAAB7MAwoBRMABBEwBACADAwAZXwAANjcBIw8XAiUHGwERCQEoCwUJBhcAHwwCGh4UDgMcEBIYEg4CWgUICSIPCgAQEQUVEA0JEwIDCCEKJwQRAyMWGRErEB0GBwsRAAsJDQILDR8DGQ8LBACYAQECAQFZAgS/AR8AAB8dAAFdDAUyBAAxyAEEAUE/AAIfXQAAHxkABVsdAAAfDxJbEgIAABgDIlMJvkKQG6ICNwATA0cAABlbAgBgGwIABTkBAjNLBW8DABunAQMoJ6ABzwEeGQ4NDQ8KExIEBg0YAh4leAAAMhwAHAcMBAwHJCIgFwwdGAseAxwADxLYAxgDItMDCb5CgBiqDhsAIQYTCgseHxYjHwsIDQMZCBsAAEsJBAMLGQAPBhMFDQ4VAwcaHyYVAwMMEwERDAUNFwwRFBsIFRQRBQAjDgsKFR4JDgAcEToCAF0OAAwLAxMQHQULAB0TAw0JLQcTBAkHEQQvEx0MAAoPAh0LFQwHBQ0ECwUHEAAUJwQACB8ABxAdAAAYBwAAFjUAAAgfAA8IABAdEBcAAAgVAAAINxEYFQ4GDgAIAQwIAgIMAgQBFA8CAQgNAgAcDRoCCAkIBAYEAwUFAwMCGQQHBBsMAQIHDAECExARAAkJAQARBBEHGRgNAwALDQYACyoABAUYAQAINgAQDRAXDgAQDyYAAB8gBxAPHgcABSAAIicQAAAtEAMgFxYCEA0SJRQDCA0eFQMLCB8LBw0fGwcJCAcRAm0fAAAPXQENEAcHFhEAIz0AAA19AAIPTQAADS8BAMkBHgIICiAECg4SAAoIEgAIDB4FLA8aEiQVIgQ6CwQJFAEOChYPEgYADw4HDCMGBwFZDw0TFQcACw8VAhkNBR8gCxgACAUOCAIpDggcAiwKFgEkEB4BGgQANV4AAhoIFAcAADAkBDgWCgccARoCCAggBB4AFBEWABAIEhYGAQ8SmQIYAyKUAgnENZILqggEAAMCAQADAgIuDwgBkAEHAAAgHggAEBAIDwYIHBQaDgQBFgsCCxEFIAIoCBYJJAoJChYCAA4QBgUKHAYGBwEHFwsABw8JAAEPCQQBAAGEAQgWCAAALgYQGB4AHgYQIAIACBgCAEQkAgYQAxAgDgAgFgAAGBAIMAAAGAgAABgIEBAAAB4OEAIYBgACIBIOGgABDhsDDQkNFyMDDgcPJwATDSkTCw0CBw0fCQQNEQkJEQAVEwULEREHGRAEDxcTCREcAgEfFwcLCwUZDx0LAwUnDwMIIQ0nBA0FHQAdAx0LFQMXAiUKDwsxFREGDQ0VCx8LCwQFLgAAGR0AEAcKDxA1AA8JDQkfBgsWEQgrDxJWGAMiUgmSPpAqqgIGAgYABQgBFg0BAA4PAgEeEwIBKggCAE4DAgkHCykLAQcPAA0ZBgEYMQQDCAQjLAMYFSQJACAIGwEjEgEEExYRBAkCAwEEAgEEBQ8SRBgDIkAJujiSFOIBAAIEEhAOEAIALg8AACgQAgAmCAAAHggIACYQEgAeBggYAgBoAQATAwk7CycHMRVJFTUPVw4BABkPEl0SAgAAGAMiVQmOPo4WsgICACgWEgMMCBIDMggMChQEAB4GDA8eBBYLCg0AAF49ARcSDQAbCAsYDQwAJE8dDw1NGQA1AZEBBgkoAwATDA8IBg4DCAYYDRYMFgAACQ8SZhgDImIJrj2AKeoCBBAKCgMSBQMBAAIAAwAFCQAIBAQIBA0IAAQCCgAJDBACFQYFCgwHDggNAgEgEgAMERIDBwMCDQQOAQYMDgsAKhAWCxYfBAUdBhMJDxUJFSEODgQXBQcCKQwTDxI5EgIAABgDIjEJvkKYD6IBAwITFQ8HFQATEh8AHQMfCR0CCQg3FSMDAi8CAAAMQAA2BwoEIgCOAQIPGghjYXRlZ29yeSIICgZmb3Jlc3QogCB4AhrdLAoMT2NlYW4gb3Igc2VhEt0CGAMi2AIJ5jS0BZoKAgIIDAAMDgoeDAYFGhIUBBoSPhQwDBICOBQFACQKHhcQDyAJEAsYCQEJDAEDBQYEAgIAAQMDAAEBAAABAQUCBgACAAMABAADAAICAAABAAIAAgIAAAICAAEAAAEAAgABAAICAAYCAwYNCA4QAhYUEQoICwEDCBsMAQACAAEAAgEBABEGAwgZDg8SAAgQDhACBgQUABIKCAUECBoMKApACA4MChAADhwKIBQOBjIWPhIUCjIODhAQBw4OGA4kBgQBEggKAhIMGgoICgAOEgYYBw4CChQYEg4CBgUeBSgIFg4SBhQcJA8QABAJAAYSAA4OBQYYDAoCGAsFEgoWEAMUCggBBg4QCgEGGhIWAwQRCgMHAQQPGgMIBAgHDAAKCQUgDxICCBAAAhIUrgGdARthF7UBL7sBLw8FkQE9DQPrApcBswFJtwFLrwFHARUENQplDxKKBRgDIoUFCYhBvwKKCwAYEiIUBAgOFh4MDg4LDSkhOQUHjgEAAMoBGR0jNwUICQMAEAUKDBgEAg4WAgABAAACEBgeIAgEAFAVBx8bDQ8XDQEAAgIDCAASECAHDAYaAwoYFgsDEhQDAiYaFxQCBg0QAiQBFhIMEhQSEAQEABAFAQ0ACwoIBgYMBw4TDgAMFBYBBhwYAIYBAAsHHRkTABcREwsFEQ8hDREAJQ8OAQIHBAISCBEJAwsGAQ4PCgQSEggFAhUSJAoBBBAKCAAPDRsBCxgbCgELDQQZDQMVDwkKBRQPKQIHEAsQAgINBw8EBwUTHwsHDxsFBxUCCQkNAwgNAAULHSUJBQULAQMCBAADCyEEFgkCBxcfEQ8hCw0ZCxEPCQMVIwINDQMCAQQBAwIXFxMPAAUNBAUHDBEACCwgBAEgIhQIFBoBEQoECA8HHxERDwEFBwANEgMUBA4TDAEABw0HAAsHCQEBAgIBAAcHAgUJCw8JpAL0AaoBAAIaGAACAQECAgoICwcKCgYEAgIBAQICAgIEAgMBAgIEAgYGBQUIAhUXDwmfAVeSAQEAAAgLARIeBwYGCgUGDhwWCgMEDAoGDQEfAyEHEQQJCQIECA8JMhAqAQIUGBQKAgUlGw8Je3GSAQAQCQYFCQ8HBg4GIhAkEgIGGgoDCxsKAhgPAQsLEwsHCRUNBw8J4gHeBkITGwcDBRUFAggHFAoICwQTDwkAjAKaAQcCAR4GEgEWESIDFAQKBwcAFwgRAQkKCwMRDREFEQINDBEUAwYDDwkA5AMiBwIJIQoHCBEPCQC0AqIBDQQxBxO1AQgCCAkUBAAIGBEKAwILExMJEw8HCQMKAgEDBAIUDB4OBgUPEj4YAyI6CcxAognKAQACCAwRAh0WGBABBAcKAQwIDAEMDRcGERMKDQAVCwQDHAwOAxQHBwENBgcPCA8eFwoDDxLlAhgDIuACCbAovwKqCgQKCgEEBxgACAQGBgQIAQcECTYAEhAeIB4WGCIAFgYUBQAODgoCBA8KBRQGDA4YFAIICxAMBgoUBwEKEBIABQQGAAgSDggIDBgCAhAKCQgOBxAWAQ4gygLSAV4yHA4MBQIMEAsGCAAHEAEODAYUCAQACwoACg8DBRYZFA4BCBMeAwAIJAUCAhQSFAAOGhoIAwgIDgkaBBIILgwQDBYCHAwcAhwSCgQWFA4AFgwYABAODAMFGQADBgsQAwYGCgkGBhwVBBsQGwwHCA0MABAZDAcMAgMNABEOGRoVHCkMCwYTBAYKCwoEAA4GABEQAwoCFhEOCQQFChEKFyQGFAsWDRIRAQ8OFTACBgkOEwwFEBUCBQUHCBMJCwgEGgIICgISEBQFEBQEEAoMFgoGDAwICBoGAQwMCgUOCAVAC3YAPKsDrQHRBPMBgQOfAd8E\u002BQHzApkBswTnAV8nDxJsGAMiaAnSM78CggMDFgIcBwYFGgcKBRQBFgkMEwwRDgMSERI7Bx8MERAACgkGEggNBAAWBAwVBwkNBAMFAhEIBQwNJQgDBA8OBBQJBBEkGQQGJAUOCCIDGhcCDxwRDB8AFQYLAB8XCQEJGAUPEiMYAyIfCZAwwwFiAgwJCA4CEAwDCgoGARQxCwQZBgEHCw4PDxJGGAMiQgmKML8C6gEEEA4cCQgICAcGCRgAEBMQHSIADhoCAgYbEA0JARMECwEPDA0ECAwXCgoMDwQLAhULCwMPHgUJGwMDDxL1AhgDIvACCfIviwGiBAIAJgweAgAGGgoOEC4SJgQMJgsKCAgKFAYDBgwIBQQOCQwDDggGDQYREgMKFwAECgkGBg8lAQQGCwQlJAcaAAQAAxcKBxIJABMgDQoFDhECBQoICBESDQMNCgoKDQMCEHU93wGPAcABwQEWBRgCFhIQAgwKAAwKCA4JEAUIBwMFGAkIFQIBBAcIAAwLDwkxwgJKAQAPGAgOCgcCCQwBCgsHAg8FDwkUIUIBAgkICAEBDBAQBAwMJRcHDwmfAUVKAAIGEBMBAQQCDAwIHgcPGwkBDwmAAiWCAQECAwYGAwMEBwYDEgkBDQYFCgQKDgUQDQQCFAcOEQsJDwlWfcoBAQAHDg8CDRgXFggQCQAHCgYBBgwFCA8EBhIIBg4HFgAIFxQDBhEGAwIDAwIIJQwLBRUPCccCPDoECBcKAQYaCQMIEgMPEQ8JFBs6DxIWAwoKBQgaCRMPDQUPCWBNMgECAQwLGg4GAAkIGQ8SHRgDIhkJnDC4AUoAAgIiCw4RBAEGBwUKAQIBFBEPEk0YAyJJCZore4oCAgAMHAYACBAQDBgeBgwKAAgGBwgMAgQMBgEDBAEAFQECBREPCgEdHxEHAQYTBxAFBwkXCwEAAAIAAQEAChEDBQoHDxJSGAMiTgnULcMBkgIUBigGGA4MAAQuBAYNASEQDgIBCL8BwgFpQQslBgYkAAUJCAYSBgwJDgMACQYFBA0UAwIPEgsMEwwAJB8BDRAPFA0DCw4HDxIyGAMiLgm8MekBmgEGBg0UCAIYFBQKHiANBgIIDQgFBQUVDQ0BBycRCQcDCQwJCgQKEw8SLhgDIioJ6i2DAooBAgAMBAgQEAkKBAQmEQgACAwGBQIVAScJBhMHDwoNAQkMAw8SaBgDImQJoDGpAboBABIWBwgGDQgMBggDDAYECg8BAwYKCg0UBxYRABMDLRENDw0BCAUMBhIJGh0aEQ8JCBiiAQkGFQANCgEIDwwKBAUIGAoODRADAhMIBAwNCRQMAAMJBgQIBwsHDQcPEjAYAyIsCcAvgwKSAQMILxIPAB8MDQIBDBEHEwwHAwMfBgQcDCgHFgkIABoNBAgeCw8SQhgDIj4JokGeCdoBBgIBGgICEAQPAwAOGQQBCgsDDAMFCQUKFwcFEwsEDQEJBg0UEgIFDAAFCwULBx4XOAEWBAwNDxInGAMiIwmKQYwJcgIACBIOBwgCBwYRFhUDIwAIEQwFFgACBggJCQQPEh8YAyIbCaAwuAFSEBQOEQoCDxIIAAcEDwEABwkNAQEPEk0YAyJJCewcvwKaAWAowgKEAeYE/gHgBPoBggOgAdIE9AGoA6wBEwDZAUdVHbsBP4cDgwG7AT/NBfMBrwORAcsDmwG/BMMBwR0AAJMBDxIbGAMiFwm/ArhBOtQ\u002BAAMuABgHHgUeAgTDPgAPEv4DGAMi\u002BQMJvwKrAYIPwh0AwATEAcwDnAGwA5IBzgX0AbwBQIgDhAG8AUBWHtoBSAcKAxYAGgoeBgoWFhsIIRYbIAcOBRwAHAoiChAADAocDhwYEgEQBhgKFBccDRgBDAMmAgwOIiMIIRgZKgMOAB4IIhAYDCgMEBISDCQOFgMqBA4PGgUaBiwJJgAcBiAMGBQUHBIDJAokEBggGA4eCBwaJhQSEg4gCgwiCA4AAQ4SHhQIFA4OCigOFg4QDggQGg0SFSgJIAIkCBgQGBIQGAwYCB4CIgcIGgAUAhoIFAoOGqQBBiYFHAIcFDwRHgMQABwMNhQ8DBguLAAiDCQWICwcEE4WUAweARwMKhREBDYGGgBWBCgBFglIABQEPgQSDiYkIhZCCjIKOgxQGm4UXAx6AdoBBBABLgIQAFwEFAFSEVoFDAciARoHEgMmFlIOHBQcEg4gEiAIGCooZBRIBjQEPgckDw4dJg8GHRITHgcUASIIJAoSFBQeEAIIAh4BGgIYBhARHgcWBCgLEAcWAyICGgwWGBocDggQDAoBQgUgADwDDA0eASgHGgAkDCQCEBMQEyIDGAIcDSwAIggUFiAMCgESCTwXEhEoBR4AGAQaEhwWFgYWBBwFNg8aBx4CFAwoCA4AHgc0ByANJAkQCx4RQAMcARwIIAgSAQbTPgAPEpMDGAMijgMJhDy\u002BQpoMAQMGHQgdABUGNQcRBx8CGwQbEj8MHQoPDiMIHwgzAB0HDQsnARMIHRAZBjUDGwUVFRURGwMZABcGHRInGBEKOwIRCwkVHwcTACEOKwEbBBcUIRQPAQ8LIwAjCBkCJxIpADsGHwJBCwkHDxsNFxkLFQEZBCEIFQwPAycIFRIdBQ8BFwIdAx8dERMTCREHIwIhCBMUHR4REAUeJRANCCMDPQUzE0cnYxcpHwcfERENExsNGxFBGAF4Ax4BBBIEDBQoAQYQCAIGHj4YOAwoECAONAIeDjwIagUuCSATAg0EDwwDGBkUABIOCAgQABIIAggSAi4EIgEcBCgDLgUgASoTGgIMDgMIDAEMBhAWEgYKBBgAGgQIAFYEDgUKCVwFGAAYBRwKCAcEBiAFJAASAxoNJAUBCxAKBAQYBxIKDgwcDhINDAVWC0QREiEOBgYmAwgGDCYCFAA4B0gFDAEiCQ4OBAQcARwBPAMICUILOg8OERgGDgkMAhYDChAAAhIJDgI0C1AHKgMcDxJsGAMiaAnUPZw4ggMSBA4QEgYYBAALDgEHFAkKChIEGhASARIKCAEIEAEGAQUCAxgHEg8CBBAeDgIGCwUFAQQGAAQBGAIXAwEBAwEABAQBCgELAQEHCQ8LBQ0VEw8JExMHJwANCgUADQwXERMPEicYAyIjCdw9tDpyAAICCg4GDC4HFAsQDQoHGAURAh0OLwgBCxcGCQ8SJRgDIiEJ7j3gPGoDCg0AAQYBDgoGCxIFAAMRAAkMCQAJEgACBQ8S6gEYAyLlAQm\u002BQrIN0gYDBRcLDwMTBgcKEwAHBBUBHwkTDx8LDQAnCQYGEQwPBQIHDwoLARcEEwo5AQ0LBQgTBh0CCQsLAxUEHQAfAwcLJwYNARUFAwkTAhEHDwAVBQsFAwsvFw0LARMGCQ0JGQAFBR8THQ0VDScPGxUTAEUJFQklCQsNDQkfBhMFHR0hDQ0TCQErHQcBBwkpGQ8ADwsZHQsEBQkNAAkHCRclBSEBDQMLBg0FFQIVCA0HExAFFwUBCW8BcQADDAakAUK4AUy0AUrsApgBDgSSAT4QBrwBMLYBMGIYxAEiDAIOAw8S8AQYAyLrBAnWNJwIghMAAgpuBgIGJgQKFAwKEAIMDgoACgwMCloACgkODBoBFgMWFRIJEBQgAhoPNgkQBwERFgcEARAQFAgWDhoFDhQOCBABEAoQCxQBJgYKAQ4MFAQgACAGHAMODiYHIgYICgAGJgoEDhQIJgEOBwAEDgYDEhQHBgoQGhIDEjICBggKAQoOABIKBAAMDAIGCgMOEAAQBgoSFgAMDAgWBjAOHA0IEAAKBggDEBoWEggSCBwCFgo0GDgIIAQWCBIIMgwoCCwGMAgqDmwAJghIAjAKDgYkAh4IFgMEHgwKFgocDDAgABQUChAWUgQWDCYIJAxCCjwIHgAODEoCKAZ0AkQDOAMmAB4HAjwuBgIMLggQEEoMQAhQAiQDGAQQCgYcjgECGAciBCICMAQUAjQEGgJgAmgBRAA8ASYEBgVWBSoFHgkMBAYFHgEeIBsKDA4BBhQBBFUEVwIDFQQdCBECGQghBgsSWQJRAxMAWwEPAi0DDwLZAQt5E1sZbQtPCTkJMRVBIyENJQMRAz0AEwxdAycAVQUZAzUTQwspAhsLHRVPD00rGxUfCyMAIS0rCxcTOws1ABsEDxIdEzsBGwYbCTcVkQEJDQcTARkAEwcZIQgdARUFGQ0RDw8XBxcBIwofFicOEQ8XDQkNDw0VCSUNDwcTHRMNEQACCxcHFx8JEQ0TERklBxsNHRsTExsJIwQjGxETEwsXBR8AGwolBSsGGRAZAw0EKQ0VCyMREQsPCycJCwsfAR0EGxopIhckBw0hAQsEJQILDhcYGwkTBRcCDxcRDRsJGwALCQ8JIQAbBhsIDRwfIhUUBQ8SkwQYAyKOBAmuPrQk\u002BgwEAAkCAQIJFAwMBAIEBAMDAQMACQIMCgoGDhIEEwEHDggBDhYiDAgODAILBAwGAAgJDhcGKx4RDgsBDxAFAwwMAyoNBgsKGQgCJAEOBBYYDg4OChwCFA4SBg4SBAQaBwYCHAQQCAAFAgkCAhAPBQUNDQgCEAUSFw4BHAgSBgAaEA4UAxQKDhABFAgYAhMCFg4OBAoYBiwOAQIAAQIDCAIMBAIKAgUMBAsHAQMAAwMABwIBBAcNAAEABRkRIxcLAQoBCwkJCwAEEgIQAQ8LExkBAQIDBgIHCQcAFQETDQkDEAoYAwwMDAYOFRIDFBEEAA4JEA8KAwgJAREIHQAFDQATAQYAGwNHBREBFQAdBSMBGQIACAEHAAIRCAcDGQA1BB0AJQkXCwcDEQ8dAREIEwshCQIJDgQTARcbjQEoEB4SHhgKAQkDDQ0LAwAJCwMQAgAKFAAYDgASBwcGCAQEAg8uDgIHEQUNDxQIAgcTDQ4BBg8DDQYNAAoBBhAGGBYcABQDAgcDDQEFAgYACQoLFgUIBAELAwEPCQUJAAcKDQIBDwl3zASCAwEABwIHIgAcBgYDGA0NFiIWCgoQBRIGFgEKEgMSAAoVDxcAJwkEAQ4DDxEAEgUGCA4RAgsPDQ8DAAIHDAYNBwkHBAAYBwcECwkEAAoBCQADCgECBwkDAAkQDAQPCQkBDw8SIRgDIh0JwjX4CVoGBAsAEhAIGAsMBhQFGA8KBQUJWQ4LDxJuGAMiagmIPKYiigMCAhgKLgYDBgcsDxAGAhIDEg8EAwYBEggLAAkBBAoRBg4SDAQKEg4GCwQEAAkABQwBCR0jEQECDgoCEwYJEAQNCQQHEQQFBAUDBgIHCgUNAAUGBAUFBgENBwQNJQwFBBcFCw8SORgDIjUJvDz4H7IBAgIUEhoKECABDBYMFxoCBoMBYgUJCwYJAQclBxcBFwQdCxEHHQYTJBMWAy4EDxKCARgDIn4J\u002BjzuINoDAgAWDkAAEAEoBAMICwEFChECAwgmBSIADAYKBSQICgMFCAoDBQQOCgwCEgkWEQQGDwwNEikMHRYTBDcSKRQnAQ0OCRgLARcIHRAtBR8PAgEJAg0NCAELAAcSFQM7LR4FHBUQAAQDIQIJCAgJFgkFCBoBFAJ4Vw8SGxgDIhcJ4DmiC0IMADoKAAIFBhcKDQUXBQEJDxIhGAMiHQn0NZoJWhAAJAgQGhUMCwIJAQ0RCgMLAAsRBAMPEicYAyIjCZJCnA1yBAQVGBEMCQAbBxMACQULDQYDIAoWAggDFAASDQ8SHRgDIhkJvDSkB0oSAAYCAnYVFQUJCR0BDQYhCAcPKIAgeAIa9AIKC090aGVyIHdhdGVyEs8BGAMiygEJvkKqLYoGBwADBA0KDgkDEB0SHyABHg8ICwUbCisYDQELCRUONQATFwMEBQQJCAAUDAECAgYMCAMMAwgCBRADBQQHBgEFAhUEBQIADQ0AABMICQMJCgYHFQcCDRkKFQsEAw4TCgYGDwIJAAoBCQItDBsFEQoZAg8QIQULCgcbJxUCByENBwoPAxEdEgAXIRMSEycHGwQBBBsFCwQbDgUCAAACDgwUKCQIHBQQFhgYVAhUHzYHNB9AIB8KCAYgCwYEOhFaBkYJCgMPEo0BGAMiiAEJvkLyLIIECQRFClkFORJNJzMgNQhTIFMHJy0bEyMHEycNCw8EAxwGDAAEARgFEQYFFwsBFRAbCAYYGwIAIgYcFCAHAwYTBAIWEA4OHiIeAgoUDCAKGAAIDQoBDBUQBQwNFgEIFRgHJBYQAw4hIAQGFzIHBA4KBgQUAR4OCjAEFApSAQgHKgMPKIAgeAIaSAoNUmVnaW9uYWwgcGFyaxIyGAMiLgnMQOgXmgEASCAADgwVBh8UCRQREg0CExITFRcAHRkVDxwhHA8SFSQTGAEeCQ8ogCB4AhqlBQoWU3RhdGUgb3IgcHJvdmluY2UgcGFyaxIbGAMiFwm\u002BQpIHQgUIAgoRABAfAhMFFQIbCAEPEk4YAyJKCdo5jgeKAgoAAB4ICgICFgAcDRkYAgwwGA4HBQwoFDoOJhAsCAgGJgIIHgACIRkNCA8PMQ0TCRsFHwtBGx8TGwkADQcJCQsAEw8SyQEYAyLEAQm\u002BQvA1KhEECwsPBxIVHAAPCQCWA/IBDQALBh0HGwALDx4LHwwFGRAADAkUBQ4TAR0XCwkhCA8NAQ0GBw0ZAAAPCwAIAyAIHgMOCR4IDBYMBQYFDwkA8AGCAQMBCxADDQ8DFRERCAMNFRkBDxISHAAgCg4SDREOBQwADwkAqgOKAjEABxcQCQkLAwgPEwIjFgYDAwkFCRMXFQEhCRkCCQIKIgQLHRwZAhIMCwUNCBcKDRcMBgcRASIZDgUIDQcLCgQGAQ8SLhgDIioJ0j26OooBBhQJJAEOAzAIEA0YBhIAGAUAAQcvBgcFKg8MEQxXAg0CJw8SQhgDIj4JiD2kLdoBCAQGDA4IAAgBARECFiAKBAoLHgoFEg0ADgoACgEFAAgMJgEOCwQJGQsGDRsOAA0FJU8PBRQTDxIwGAMiLAnMPdIxkgEABAgODQAHGA0OABYIAAIUChAKAAMOCQALCwATExUBERoTBhkPEi4YAyIqCcQ9tjSKAQIAEAQDJhIOCgAAEBUMACIgAAgPAB4pAA0HCykNBAENFBcPElQYAyJQCehAwDGiAgQCCg4OAAAQEAEAHksCBxEJDAMSBgAABg8CBxgEEgACCxgNBg4NAg0IAwUVDBMCAwwBBQAAAQQVDAcAAQgIABMPAAANEAAADw8SIRgDIh0Jvjy0JloCAA4mBxICEhAeBBIQEDcACWkGEQoLDyiAIHgCGoYICgtFYXJ0aCBDb3ZlchIgEgIAABgDIhgJ4Dy\u002BQjoASSIAAJEBIQAAYaADAAC\u002BAg8SGBICAAAYAyIQCYBAvkIaAL0CvgIAAL4CDxIhEgIAABgDIhkJuEG/AjponAEeGACMAdEBACM1I6MBImUPEjQSAgAAGAMiLAmIK78CegBWmgE5NxuWFAAAwALrDwAAOU0AADq9BACXAXMAdU05vQEACRsPEjgSAgAAGAMiMAm\u002BQoAgWr0CAADnCyQ1bgAAa20AIzcAxQW2AQAAOIgBAA8JYdgEGgDaASRsAMUCDxIhEgIAABgDIhkJvkLmCjrPAQBtbQDhByQAIzcA3QG\u002BAgAPEiwSAgAAGAMiJAm\u002BQuYgYm0AADJuAADoHr0CAACZEmgAAGMhAEUxAM8MvgIADxKXARICAAAYAyKOAQnuNIoJogPcAQAAOGwAlAGkAZIBNrYBAG44JG6SATbKAgAApAFJAAA4SgAArBHtBAAAoQEjAADVASMAAGslAAA1RwAlawBrIwAAwwIjAAChASMAAGslAACjAUcAJaEBRwAjNwA1SQAjNQBtJQAAowEjACOPAiMAJTcANW4AAMkCIwAPCW64AxIA2gFIbQ8SiQESAgAAGAMigAEJ4DyAIKoDoAMAAIINiQEAADKLAQAAlQFnACFkIwAhMQCVASIAAMUDIQAAlQEiMyQAAGYiAADKAUYAAGREMSFlAGMhAACXASIxIgBDMQAxZwAAMiMAADEhACEzAJcBIjFFAACXASQAAGZEAABlaAAAMdIBACIzIQBpMQAyqwEADxJNEgIAABgDIkUJgDAAwgHuCAAkcJIBAG1vygYAAPgJtQEAADW3AQBHb6UCNUdttwEAkQFttQEAtwFvI21tAG1t2QEAJW\u002BRATUjpwFuNQ8SgwESAgAAGAMiewmCPYItogMiAABkRgAAZEYyaAAAYyEAADFEAEYxALgMiQEAAGFpACQwADIiAABiJDJEAAAxRgAAsgX9AgAiMQClAiQAAJMBRQAiMQAvJAAAkwEjAABjJAAA9QEiAAD3AUUAAI0DIQAAYyIxaAAAqwJDMgBjIwAAMSEADxIXEgIAABgDIg8Jti0AGoACAGumAZMBAA8SGxICAAEYAyITCYw\u002B/C4qAPoBIQAAlQEhAAAxDxIVEgIAARgDIg0JvkKYIRptAAAxbgAPEh4SAgAAGAMiFgmQO4AgOmgAADIjAACaASEAADMhAA8SGhICAAEYAyISCeo95i0qIjKMAQAAZGcARTEPEiQSAgABGAMiHAmwPoo5UkYAAGKKAQAAYkUAADJDACMxAGEhAA8aCGNhdGVnb3J5IhIKEHdvb2R5IHZlZ2V0YXRpb24iCgoIY3JvcGxhbmQogCB4Ahq0AQoSSW50ZXJuYXRpb25hbCByb2FkEmkSBAAAAQEYAiJfCZhCkAciAAQVZzojAgIJGcYBEgs5AAMJGIMBOi0YGEYGiAEcFAIAAQAbGwkeiQKSATfLAbsBvQEZRQlvHkU9SzFhjQHFAQAnHG4iFlKAAXCSARc\u002BAn4aRsIBxgEurAEaDGNvdW50cnlfY29kZRoTY291bnRyeV9zdWJkaXZpc2lvbiIFCgNDQU4iBAoCQkMogCB4AhpKCgxJc2xhbmQgbGFiZWwSEQgAEgQAAAEBGAEiBQnKN4UCGgRpY29uGgRuYW1lIgIgASISChBWYW5jb3V2ZXIgSXNsYW5kKIAgeAIa0AMKE05hdGlvbmFsIHBhcmsgbGFiZWwSERIGAAABAQICGAEiBQnaP7MCEhESBgAAAQMCBBgBIgUJ9Dq8ARIREgYAAAEFAgYYASIFCeg9jgkSERIGAAABBwIIGAEiBQn6KpkBEhESBgAAAQkCChgBIgUJpkLQBxIREgYAAAELAgwYASIFCf5AkBAaBGljb24aAmlkGgRuYW1lIgMgqQEiEQoPMTI0NTk4MDAwMDI5MDUyIiIKIFJvYmVydHMgTWVtb3JpYWwgUHJvdmluY2lhbCBQYXJrIhEKDzEyNDU5NzAwMDAwMTgwMCIcChpHb3Jkb24gQmF5IFByb3ZpbmNpYWwgUGFyayIRCg8xMjQ1OTgwMDAwMjkwNDIiEwoRRnJlbmNoIEJlYWNoIFBhcmsiEQoPMTI0NTk5MDAwNTQ1NzUzIi0KK1BhY2lmaWMgUmltIE5hdGlvbmFsIFBhcmsgUmVzZXJ2ZSBvZiBDYW5hZGEiEQoPMTI0NTk5MDAyNjc3MzY1IhwKGkdvbGRzdHJlYW0gUHJvdmluY2lhbCBQYXJrIhEKDzg0MDUzOTAwMDUyMTEwMSIXChVPbHltcGljIE5hdGlvbmFsIFBhcmsogCB4AhrPAwoSTmF0aW9uYWwgcGFyayBuYW1lEhESBgAAAQECAhgBIgUJ2j\u002BzAhIREgYAAAEDAgQYASIFCfQ6vAESERIGAAABBQIGGAEiBQnoPY4JEhESBgAAAQcCCBgBIgUJ\u002BiqZARIREgYAAAEJAgoYASIFCaZC0AcSERIGAAABCwIMGAEiBQn\u002BQJAQGgRpY29uGgJpZBoEbmFtZSIDIKkBIhEKDzEyNDU5ODAwMDAyOTA1MiIiCiBSb2JlcnRzIE1lbW9yaWFsIFByb3ZpbmNpYWwgUGFyayIRCg8xMjQ1OTcwMDAwMDE4MDAiHAoaR29yZG9uIEJheSBQcm92aW5jaWFsIFBhcmsiEQoPMTI0NTk4MDAwMDI5MDQyIhMKEUZyZW5jaCBCZWFjaCBQYXJrIhEKDzEyNDU5OTAwMDU0NTc1MyItCitQYWNpZmljIFJpbSBOYXRpb25hbCBQYXJrIFJlc2VydmUgb2YgQ2FuYWRhIhEKDzEyNDU5OTAwMjY3NzM2NSIcChpHb2xkc3RyZWFtIFByb3ZpbmNpYWwgUGFyayIRCg84NDA1MzkwMDA1MjExMDEiFwoVT2x5bXBpYyBOYXRpb25hbCBQYXJrKIAgeAIakwUKEVBvaW50IG9mIEludGVyZXN0EiEI/Jqg3KOqHBIOAAABAQICAwMEBAUFBgYYASIFCdo/swISIQiIsrP/n6ocEg4AAAEBAgIDBwQIBQUGBhgBIgUJ9Dq8ARIhCPKaoNyjqhwSDgAAAQECAgMJBAoFBQYGGAEiBQnoPY4JEiEI2fOquaeqHBIOAAABAQICAwsEDAUFBgYYASIFCfoqmQESIQj1gK26p6ocEg4AAAEBAgIDDQQOBQUGBhgBIgUJpkLQBxIiCI2Dr\u002BTzjr8BEg4AAAEBAgIDDwQQBQUGBhgBIgUJ/kCQEBoIY2F0ZWdvcnkaC2NhdGVnb3J5X2lkGgRpY29uGgJpZBoEbmFtZRoIcHJpb3JpdHkaC3N1YmNhdGVnb3J5IhgKFlBhcmsgJiBSZWNyZWF0aW9uIEFyZWEiBSDYtLsEIgMgqQEiEQoPMTI0NTk4MDAwMDI5MDUyIiIKIFJvYmVydHMgTWVtb3JpYWwgUHJvdmluY2lhbCBQYXJrIgIgPCIPCg1OYXRpb25hbCBQYXJrIhEKDzEyNDU5NzAwMDAwMTgwMCIcChpHb3Jkb24gQmF5IFByb3ZpbmNpYWwgUGFyayIRCg8xMjQ1OTgwMDAwMjkwNDIiEwoRRnJlbmNoIEJlYWNoIFBhcmsiEQoPMTI0NTk5MDAwNTQ1NzUzIi0KK1BhY2lmaWMgUmltIE5hdGlvbmFsIFBhcmsgUmVzZXJ2ZSBvZiBDYW5hZGEiEQoPMTI0NTk5MDAyNjc3MzY1IhwKGkdvbGRzdHJlYW0gUHJvdmluY2lhbCBQYXJrIhEKDzg0MDUzOTAwMDUyMTEwMSIXChVPbHltcGljIE5hdGlvbmFsIFBhcmsogCB4AhouCgxTdGF0ZSBib3JkZXISGRgCIhUJ2DzuLDIQSZABflAIwgFFSCTsARcogCB4Ag==" } ], "Variables": {} diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tileset.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tileset.json index 72f3c838553b..ade7ada7ed37 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tileset.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tileset.json @@ -15,13 +15,13 @@ "ResponseHeaders": { "Content-Length": "365", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Sep 2022 15:11:11 GMT", - "Expires": "Mon, 03 Oct 2022 15:11:11 GMT", + "Date": "Wed, 05 Oct 2022 19:16:54 GMT", + "Expires": "Wed, 12 Oct 2022 19:16:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: A37E85465DA3456D9B91F11297772F6A Ref B: TPE30EDGE0910 Ref C: 2022-09-26T15:11:11Z" + "X-MSEdge-Ref": "Ref A: 0E7FB7A78C174B46949B016B3B9D64ED Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:54Z" }, "ResponseBody": { "tilejson": "2.2.0", diff --git a/sdk/maps/azure-maps-render/tests/test_render_client.py b/sdk/maps/azure-maps-render/tests/test_render_client.py index c775ab34f936..b53d7d0280b4 100644 --- a/sdk/maps/azure-maps-render/tests/test_render_client.py +++ b/sdk/maps/azure-maps-render/tests/test_render_client.py @@ -22,9 +22,9 @@ def setup_method(self, method): def test_get_map_tile(self): result = self.client.get_map_tile( tileset_id=TilesetID.MICROSOFT_BASE, - tile_index_z=6, - tile_index_x=9, - tile_index_y=22, + z=6, + x=9, + y=22, tile_size="512" ) @@ -47,7 +47,7 @@ def test_get_map_attribution(self): zoom=6, bounds=BoundingBox(south=42.982261, west=24.980233, north=56.526017, east=1.355233) ) - assert len(result.copyrights) > 0 + assert len(result) > 0 @MapsRenderPreparer() @recorded_by_proxy @@ -63,7 +63,7 @@ def test_get_copyright_from_bounding_box(self): @MapsRenderPreparer() @recorded_by_proxy def test_get_copyright_for_tile(self): - result = self.client.get_copyright_for_tile(tile_index_z=6, tile_index_x=9, tile_index_y=22) + result = self.client.get_copyright_for_tile(z=6, x=9, y=22) assert len(result.general_copyrights) > 0 copyrights = result.general_copyrights[0] assert "TomTom" in copyrights From 223a6700edd4e4cfd89a03d3605ef0b6b50c626f Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Thu, 6 Oct 2022 14:52:28 +0800 Subject: [PATCH 12/14] Update according to feedback --- .../azure/maps/render/_render_client.py | 55 +++++-- .../maps/render/aio/_render_client_async.py | 76 ++++++--- .../azure/maps/render/models/__init__.py | 6 +- .../azure/maps/render/models/_models.py | 152 +++++++++++++----- .../sample_get_map_attribution_async.py | 2 +- .../samples/sample_get_map_attribution.py | 2 +- .../samples/sample_get_map_static_image.py | 21 ++- .../samples/sample_get_map_tile.py | 8 +- ...enderClienttest_get_copyright_caption.json | 4 +- ...nderClienttest_get_copyright_for_tile.json | 4 +- ...derClienttest_get_copyright_for_world.json | 4 +- ...ttest_get_copyright_from_bounding_box.json | 4 +- ...sRenderClienttest_get_map_attribution.json | 4 +- ...TestMapsRenderClienttest_get_map_tile.json | 6 +- ...tMapsRenderClienttest_get_map_tileset.json | 6 +- .../tests/test_render_client.py | 6 +- shared_requirements.txt | 7 - 17 files changed, 251 insertions(+), 116 deletions(-) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py b/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py index ca9e50ff8378..9074fcd936dd 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/_render_client.py @@ -18,7 +18,10 @@ Copyright, MapTileset, CopyrightCaption, - RasterTileFormat + RasterTileFormat, + MapAttribution, + ImagePushpinStyle, + ImagePathStyle ) class MapsRenderClient(MapsRenderClientBase): @@ -179,7 +182,7 @@ def get_map_attribution( zoom: int, bounds: BoundingBox, **kwargs: Any - ) -> List[str]: + ) -> MapAttribution: """The Get Map Attribution API allows users to request map copyright attribution information for a section of a tileset. @@ -196,8 +199,8 @@ def get_map_attribution( position of the bounding box as float. E.g. BoundingBox(west=37.553, south=-122.453, east=33.2, north=57) :type bounds: BoundingBox - :return: List[str] - :rtype: List[str] + :return: MapAttribution + :rtype: ~azure.maps.render.models.MapAttribution :raises ~azure.core.exceptions.HttpResponseError: .. admonition:: Example: @@ -221,7 +224,7 @@ def get_map_attribution( zoom=zoom, bounds=bounds, **kwargs - ).copyrights + ) @distributed_trace def get_map_state_tile( @@ -294,7 +297,6 @@ def get_copyright_caption( @distributed_trace def get_map_static_image( self, - img_format: Union[str, RasterTileFormat], **kwargs: Any ) -> Iterator[bytes]: """ The static image service renders a user-defined, rectangular image containing a map section @@ -306,9 +308,9 @@ def get_map_static_image( choice. If you want to support a lot of zooming, panning and changing of the map content, the map tile service would be a better choice. - :param img_format: + :keyword img_format: Desired format of the response. Possible value: png. "png" Default value is "png". - :type img_format: str or ~azure.maps.render.models.RasterTileFormat + :paramtype img_format: str or ~azure.maps.render.models.RasterTileFormat :keyword layer: Map layer requested. :paramtype layer: str or ~azure.maps.render.models.StaticMapLayer @@ -341,11 +343,13 @@ def get_map_static_image( :paramtype localized_map_view: str or ~azure.maps.render.models.LocalizedMapView :keyword pins: Pushpin style and instances. Use this parameter to optionally add pushpins to the image. - :paramtype pins: list[str] + :paramtype pins: + list[str] or ~azure.maps.render.models.ImagePushpinStyle :keyword path: Path style and locations. Use this parameter to optionally add lines, polygons or circles to the image. - :paramtype path: list[str] + :paramtype path: + list[str] or ~azure.maps.render.models.ImagePathStyle :return: Iterator of the response bytes :rtype: Iterator[bytes] :raises ~azure.core.exceptions.HttpResponseError: @@ -360,6 +364,31 @@ def get_map_static_image( :caption: Return static image service renders a user-defined, rectangular image containing a map section using a zoom level from 0 to 20. """ + _pins=kwargs.pop("pins", None) + if _pins is not None: + if isinstance(_pins, ImagePushpinStyle): + res=[ + f"{ImagePushpinStyle.pushpin_positions or ''}|" \ + f"{ImagePushpinStyle.label_anchor_shift_in_pixels or ''}|" \ + f"{ImagePushpinStyle.label_color or ''}|{ImagePushpinStyle.pushpin_scale_ratio or ''}|" \ + f"{ImagePushpinStyle.custom_pushpin_image_uri or ''}|" \ + f"{ImagePushpinStyle.label_anchor_shift_in_pixels or ''}|" \ + f"{ImagePushpinStyle.label_color or ''}|" \ + f"{ImagePushpinStyle.label_scale_ratio or ''}|" \ + f"{ImagePushpinStyle.rotation_in_degrees or ''}" + ] + _pins = list(filter(None, res)) + + _path=kwargs.pop("path", None) + if _path is not None: + if isinstance(_path, ImagePathStyle): + res=[ + f"{ImagePathStyle.path_positions or ''}|" \ + f"{ImagePathStyle.line_color or ''}|{ImagePathStyle.fill_color or ''}|" \ + f"{ImagePathStyle.line_width_in_pixels or ''}|" \ + f"{ImagePathStyle.circle_radius_in_meters or ''}|" \ + ] + _path = list(filter(None, res)) _center=kwargs.pop("center", None) if _center is not None: @@ -367,11 +396,13 @@ def get_map_static_image( _bbox = kwargs.pop("bounding_box_private", None) if _bbox is not None: - _bbox = f"{_bbox.south}, {_bbox.west}, {_bbox.north}, {_bbox.east}" + _bbox = [_bbox.south, _bbox.west, _bbox.north, _bbox.east] return self._render_client.get_map_static_image( - format=img_format, + format=kwargs.pop("img_format", "png"), center=_center, + pins=_pins, + path=_path, bounding_box_private=_bbox, **kwargs ) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py index ec5c3a939993..b2e792b07413 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/aio/_render_client_async.py @@ -5,7 +5,7 @@ # --------------------------------------------------------------------- # pylint: disable=unused-import,ungrouped-imports, R0904, C0302 -from typing import Iterator, Any, Union, Tuple, List +from typing import AsyncIterator, Any, Union, Tuple, List from azure.core.tracing.decorator_async import distributed_trace_async from azure.core.exceptions import HttpResponseError from azure.core.credentials import AzureKeyCredential @@ -21,7 +21,9 @@ MapTileset, MapAttribution, CopyrightCaption, - RasterTileFormat + RasterTileFormat, + ImagePushpinStyle, + ImagePathStyle ) @@ -68,7 +70,7 @@ async def get_map_tile( x: int, y: int, **kwargs: Any - ) -> Iterator[bytes]: + ) -> AsyncIterator[bytes]: """The Get Map Tiles API allows users to request map tiles in vector or raster formats typically to be integrated into a map control or SDK. Some example tiles that can be requested are Azure Maps road tiles, real-time Weather Radar tiles. By default, Azure Maps uses vector tiles for its web map @@ -104,8 +106,8 @@ async def get_map_tile( regions. :paramtype localized_map_view: str or ~azure.maps.render.models.LocalizedMapView :return: - Iterator of the response bytes - :rtype: Iterator[bytes] + AsyncIterator of the response bytes + :rtype: AsyncIterator[bytes] :raises ~azure.core.exceptions.HttpResponseError: .. admonition:: Example: @@ -184,7 +186,7 @@ async def get_map_attribution( zoom: int, bounds: BoundingBox, **kwargs: Any - ) -> List[str]: + ) -> MapAttribution: """The Get Map Attribution API allows users to request map copyright attribution information for a section of a tileset. @@ -201,8 +203,8 @@ async def get_map_attribution( position of the bounding box as float. E.g. BoundingBox(west=37.553, south=-122.453, east=33.2, north=57) :type bounds: BoundingBox - :return: List[str] - :rtype: List[str] + :return: MapAttribution + :rtype: ~azure.maps.render.models.MapAttribution :raises ~azure.core.exceptions.HttpResponseError: .. admonition:: Example: @@ -227,7 +229,7 @@ async def get_map_attribution( bounds=bounds, **kwargs ) - return async_result.copyrights + return async_result @distributed_trace_async async def get_map_state_tile( @@ -237,7 +239,7 @@ async def get_map_state_tile( x: int, y: int, **kwargs: Any - ) -> Iterator[bytes]: + ) -> AsyncIterator[bytes]: """Fetches state tiles in vector format typically to be integrated into indoor maps module of map control or SDK. @@ -253,8 +255,8 @@ async def get_map_state_tile( :param stateset_id: The stateset id. :type stateset_id: str - :return: Iterator of the response bytes - :rtype: Iterator[bytes] + :return: AsyncIterator of the response bytes + :rtype: AsyncIterator[bytes] :raises ~azure.core.exceptions.HttpResponseError: """ return await self._render_client.get_map_state_tile( @@ -298,9 +300,8 @@ async def get_copyright_caption( @distributed_trace_async async def get_map_static_image( self, - img_format: Union[str, RasterTileFormat], **kwargs: Any - ) -> Iterator[bytes]: + ) -> AsyncIterator[bytes]: """ The static image service renders a user-defined, rectangular image containing a map section using a zoom level from 0 to 20. The static image service renders a user-defined, rectangular image containing a map section using a zoom level from 0 to 20. The supported resolution range @@ -310,9 +311,9 @@ async def get_map_static_image( choice. If you want to support a lot of zooming, panning and changing of the map content, the map tile service would be a better choice. - :param img_format: + :keyword img_format: Desired format of the response. Possible value: png. "png" Default value is "png". - :type img_format: str or ~azure.maps.render.models.RasterTileFormat + :paramtype img_format: str or ~azure.maps.render.models.RasterTileFormat :keyword layer: Map layer requested. :paramtype layer: str or ~azure.maps.render.models.StaticMapLayer @@ -345,13 +346,15 @@ async def get_map_static_image( :paramtype localized_map_view: str or ~azure.maps.render.models.LocalizedMapView :keyword pins: Pushpin style and instances. Use this parameter to optionally add pushpins to the image. - :paramtype pins: list[str] + :paramtype pins: + list[str] or ~azure.maps.render.models.ImagePushpinStyle :keyword path: Path style and locations. Use this parameter to optionally add lines, polygons or circles to the image. - :paramtype path: list[str] - :return: Iterator of the response bytes - :rtype: Iterator[bytes] + :paramtype path: + list[str] or ~azure.maps.render.models.ImagePathStyle + :return: AsyncIterator of the response bytes + :rtype: AsyncIterator[bytes] :raises ~azure.core.exceptions.HttpResponseError: .. admonition:: Example: @@ -364,6 +367,31 @@ async def get_map_static_image( :caption: Return static image service renders a user-defined, rectangular image containing a map section using a zoom level from 0 to 20. """ + _pins=kwargs.pop("pins", None) + if _pins is not None: + if isinstance(_pins, ImagePushpinStyle): + res=[ + f"{ImagePushpinStyle.pushpin_positions or ''}|" \ + f"{ImagePushpinStyle.label_anchor_shift_in_pixels or ''}|" \ + f"{ImagePushpinStyle.label_color or ''}|{ImagePushpinStyle.pushpin_scale_ratio or ''}|" \ + f"{ImagePushpinStyle.custom_pushpin_image_uri or ''}|" \ + f"{ImagePushpinStyle.label_anchor_shift_in_pixels or ''}|" \ + f"{ImagePushpinStyle.label_color or ''}|" \ + f"{ImagePushpinStyle.label_scale_ratio or ''}|" \ + f"{ImagePushpinStyle.rotation_in_degrees or ''}" + ] + _pins = list(filter(None, res)) + + _path=kwargs.pop("path", None) + if _path is not None: + if isinstance(_path, ImagePathStyle): + res=[ + f"{ImagePathStyle.path_positions or ''}|" \ + f"{ImagePathStyle.line_color or ''}|{ImagePathStyle.fill_color or ''}|" \ + f"{ImagePathStyle.line_width_in_pixels or ''}|" \ + f"{ImagePathStyle.circle_radius_in_meters or ''}|" \ + ] + _path = list(filter(None, res)) _center=kwargs.pop("center", None) if _center is not None: @@ -371,11 +399,13 @@ async def get_map_static_image( _bbox = kwargs.pop("bounding_box_private", None) if _bbox is not None: - _bbox = f"{_bbox.south}, {_bbox.west}, {_bbox.north}, {_bbox.east}" + _bbox = [_bbox.south, _bbox.west, _bbox.north, _bbox.east] return await self._render_client.get_map_static_image( - format=img_format, + format=kwargs.pop("img_format", "png"), center=_center, + pins=_pins, + path=_path, bounding_box_private=_bbox, **kwargs ) @@ -465,7 +495,7 @@ async def get_copyright_for_tile( _include_text=kwargs.pop("include_text", True) return await self._render_client.get_copyright_for_tile( - z=tile_index_z, + z=z, x=x, y=y, include_text= "yes" if _include_text else "no", diff --git a/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py index 69242de5bc92..850834cb8d63 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py @@ -15,7 +15,9 @@ BoundingBox, Copyright, RegionalCopyrights, - RegionCopyrightsCountry + RegionCopyrightsCountry, + ImagePushpinStyle, + ImagePathStyle ) @@ -33,4 +35,6 @@ 'RasterTileFormat', 'RegionalCopyrights', 'RegionCopyrightsCountry', + 'ImagePushpinStyle', + 'ImagePathStyle' ] diff --git a/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py index 5fc8ffd54f56..f9b8b902ef16 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py @@ -3,8 +3,8 @@ # Licensed under the MIT License. # ------------------------------------ -# pylint: disable=unused-import,ungrouped-imports, C0302, C0203 -from typing import NamedTuple +# pylint: disable=unused-import,ungrouped-imports,super-init-not-called, C0302, C0203 +from typing import NamedTuple, Any from .._generated.models import ( Copyright as GenCopyright, RegionCopyrights as GenRegionCopyrights, @@ -52,9 +52,12 @@ class RegionalCopyrights(GenRegionCopyrights): :keyword country: Country property. :paramtype country: ~azure.maps.render.models.RegionCopyrightsCountry """ - def __init__(self, copyrights=None, country=None): - self.copyrights = copyrights - self.country = country + def __init__( + self, + **kwargs: Any + ): + self.copyrights = kwargs.get("copyrights", None) + self.country = kwargs.get("country", None) class Copyright(GenCopyright): """Represents information about the coordinate range @@ -66,10 +69,13 @@ class Copyright(GenCopyright): :keyword regional_copyrights: Regions array. :paramtype regional_copyrights: list[RegionalCopyrights] """ - def __init__(self, format_version=None, general_copyrights=None, regional_copyrights=None): - self.format_version = format_version - self.general_copyrights = general_copyrights - self.regional_copyrights = regional_copyrights + def __init__( + self, + **kwargs: Any + ): + self.format_version = kwargs.get("format_version", None) + self.general_copyrights = kwargs.get("general_copyrights", None) + self.regional_copyrights = kwargs.get("regional_copyrights", None) class RegionCopyrightsCountry(GenRegionCopyrightsCountry): """Country property. @@ -81,9 +87,12 @@ class RegionCopyrightsCountry(GenRegionCopyrightsCountry): :keyword label: Label property. :paramtype label: str """ - def __init__(self, iso3_code=None, label=None): - self.iso3_code = iso3_code - self.label = label + def __init__( + self, + **kwargs: Any + ): + self.iso3_code = kwargs.get("iso3_code", None) + self.label = kwargs.get("label", None) class MapTileset(GenMapTileset): # pylint: disable=too-many-instance-attributes @@ -137,34 +146,93 @@ class MapTileset(GenMapTileset): # pylint: disable=too-many-instance-attributes """ def __init__( self, - tilejson_version= None, - name= None, - description= None, - version= None, - map_attribution= None, - template= None, - legend= None, - scheme= None, - tiles_endpoints= None, - grid_endpoints= None, - data_files = None, - min_zoom= None, - max_zoom= None, - bounds= None, - center= None + **kwargs: Any ): - self.tilejson_version = tilejson_version - self.name = name - self.description = description - self.version = version - self.map_attribution = map_attribution - self.template = template - self.legend = legend - self.scheme = scheme - self.tiles_endpoints = tiles_endpoints - self.grid_endpoints = grid_endpoints - self.data_files = data_files - self.min_zoom = min_zoom - self.max_zoom = max_zoom - self.bounds = bounds - self.center = center + self.tilejson_version = kwargs.get("tilejson_version", None) + self.name = kwargs.get("name", None) + self.description = kwargs.get("description", None) + self.version = kwargs.get("version", None) + self.map_attribution = kwargs.get("map_attribution", None) + self.template = kwargs.get("template", None) + self.legend = kwargs.get("legend", None) + self.scheme = kwargs.get("scheme", None) + self.tiles_endpoints = kwargs.get("tiles_endpoints", None) + self.grid_endpoints = kwargs.get("grid_endpoints", None) + self.data_files = kwargs.get("data_files", None) + self.min_zoom = kwargs.get("min_zoom", None) + self.max_zoom = kwargs.get("max_zoom", None) + self.bounds = kwargs.get("bounds", None) + self.center = kwargs.get("center", None) + +class ImagePathStyle(object): + """Path style including line color, line opacity, circle position, color and opacity settings + + :keyword path_positions: + The list of point coordinate on the path. + :paramtype path_positions: LatLon + :keyword line_color: + Line color of the path, including line opacity information. + :paramtype line_color: str + :keyword fill_color: + Fill color of the path, including line opacity information. + :paramtype fill_color: str + :keyword line_width_in_pixels: + Line width of the path in pixels. + :paramtype line_width_in_pixels: int + :keyword circle_radius_in_meters: + Circle radius in meters. + :paramtype circle_radius_in_meters: int + """ + path_positions: LatLon = None + line_color: str = None + fill_color: str = None + line_width_in_pixels: int = 0 + circle_radius_in_meters: int = 0 + +class ImagePushpinStyle(object): + """Pushpin style including pin and label color, scale, rotation and position settings + + :keyword pushpin_positions: + The list of Pushpin coordinate on the map. + :paramtype path_positions: LatLon + :keyword pushpin_anchor_shift_in_pixels: + To override the anchor location of the pin image, + user can designate how to shift or move the anchor location by pixels + :paramtype pushpin_anchor_shift_in_pixels: int + :keyword pushpin_color: + Pushpin color including opacity information. + :paramtype pushpin_color: str + :keyword pushpin_scale_ratio: + Pushpin scale ratio. Value should greater than zero. A value of 1 is the standard scale. + Values larger than 1 will make the pins larger, and values smaller than 1 will make them smaller. + :paramtype pushpin_scale_ratio: float + :keyword custom_pushpin_image_uri: + Custom pushpin image, can only be 'ref="Uri"' format. + :paramtype custom_pushpin_image_uri: str + :keyword label_anchor_shift_in_pixels: + The anchor location of label for built-in pushpins is at the top center of custom pushpins. + To override the anchor location of the pin image, + user can designate how to shift or move the anchor location by pixels + :paramtype label_anchor_shift_in_pixels: LatLon + :keyword label_color: + Label color information. Opacity value other than 1 be ignored. + :paramtype label_color: str + :keyword label_scale_ratio: + Label scale ratio. Should greater than 0. A value of 1 is the standard scale. + Values larger than 1 will make the label larger. + :paramtype label_scale_ratio: float + :keyword rotation_in_degrees: + A number of degrees of clockwise rotation. + Use a negative number to rotate counter-clockwise. + Value can be -360 to 360. + :paramtype rotation_in_degrees: int + """ + pushpin_positions: LatLon = None + pushpin_anchor_shift_in_pixels: int = 0 + pushpin_color: str = None + pushpin_scale_ratio: float = 0.0 + custom_pushpin_image_uri: str = None + label_anchor_shift_in_pixels: LatLon = None + label_color: str = None + label_scale_ratio: float = 0.0 + rotation_in_degrees: int = 0 diff --git a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py index 30d75c2c08bc..323ed0eeba3a 100644 --- a/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py +++ b/sdk/maps/azure-maps-render/samples/async_samples/sample_get_map_attribution_async.py @@ -42,7 +42,7 @@ async def get_map_attribution_async(): ) print("Get map attribution result:") - print(result[0]) + print(result.copyrights[0]) # [END get_map_attribution_async] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py b/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py index bbe20531409c..484ef35df9c1 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_attribution.py @@ -41,7 +41,7 @@ def get_map_attribution(): ) print("Get map attribution result:") - print(result[0]) + print(result.copyrights[0]) # [END get_map_attribution] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py b/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py index d3e7c2587dc6..ad1884d8b9bf 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_static_image.py @@ -24,16 +24,25 @@ def get_map_static_image(): # [START get_map_static_image] from azure.core.credentials import AzureKeyCredential from azure.maps.render import MapsRenderClient + from azure.maps.render.models import BoundingBox maps_render_client = MapsRenderClient(credential=AzureKeyCredential(subscription_key)) - result = maps_render_client.get_map_static_image(img_format="png", center=(52.41064, 5.84228)) - - print("Get map tile result to png:") + result = maps_render_client.get_map_static_image( + img_format="png", + layer="basic", + style="dark", + zoom=10, + bounding_box_private= BoundingBox( + 13.228, 52.4559, 13.5794, 52.629 + ) + ) + + print("Get map tile result to png file as 'map_static_image.png'") # Save result to file as png - file = open('map_static_image', 'wb') - file.write(next(result)) - file.close() + with open('map_static_image.png', 'wb') as file: + file.write(next(result)) + file.close() # [END get_map_static_image] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/samples/sample_get_map_tile.py b/sdk/maps/azure-maps-render/samples/sample_get_map_tile.py index ea38df6be56c..fe1ce1bb16ec 100644 --- a/sdk/maps/azure-maps-render/samples/sample_get_map_tile.py +++ b/sdk/maps/azure-maps-render/samples/sample_get_map_tile.py @@ -39,11 +39,11 @@ def get_map_tile(): tile_size="512" ) - print("Get map tile result:") + print("Get map tile result store in file name 'map_tile.png'") # print(result) - file = open('map_tile.png', 'wb') - file.write(next(result)) - file.close() + with open('map_tile.png', 'wb') as file: + file.write(next(result)) + file.close() # [END get_map_tile] if __name__ == '__main__': diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_caption.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_caption.json index 4898ffcab850..98836e417af8 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_caption.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_caption.json @@ -16,13 +16,13 @@ "Cache-Control": "max-age=86400", "Content-Length": "81", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 05 Oct 2022 19:16:56 GMT", + "Date": "Thu, 06 Oct 2022 06:50:55 GMT", "ETag": "W/\u0022f3cfa19fc3c68912b94faa097ee62351\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: 5BF71D0B7653476B8324DC9528C37E47 Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:56Z" + "X-MSEdge-Ref": "Ref A: 8E47AD95A8F2417B99DCB4D5EB4930ED Ref B: TPE30EDGE0920 Ref C: 2022-10-06T06:50:56Z" }, "ResponseBody": { "formatVersion": "0.0.1", diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_tile.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_tile.json index 3c7900f93d62..ca137fa69f1d 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_tile.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_tile.json @@ -16,13 +16,13 @@ "Cache-Control": "max-age=86400", "Content-Length": "18516", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 05 Oct 2022 19:16:56 GMT", + "Date": "Thu, 06 Oct 2022 06:50:55 GMT", "ETag": "W/\u00229de0508ecdba66c786311c93a8d63f16\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: C9A85A3EA4584D0EAA4784BF1EE6A716 Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:56Z" + "X-MSEdge-Ref": "Ref A: C966263A2946411A92618323EC966CED Ref B: TPE30EDGE0920 Ref C: 2022-10-06T06:50:55Z" }, "ResponseBody": { "formatVersion": "0.0.1", diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_world.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_world.json index 95bdca4b994a..046bc63cf551 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_world.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_for_world.json @@ -16,13 +16,13 @@ "Cache-Control": "max-age=86400", "Content-Length": "912858", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 05 Oct 2022 19:16:56 GMT", + "Date": "Thu, 06 Oct 2022 06:50:56 GMT", "ETag": "W/\u00225f623b123f86e7eaac582e7d4b3dbda4\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: D3D1D0C29D8D45B098C2DC4AB3B2AB43 Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:56Z" + "X-MSEdge-Ref": "Ref A: 10C26161FC2646749D6D118F20EAC882 Ref B: TPE30EDGE0920 Ref C: 2022-10-06T06:50:56Z" }, "ResponseBody": { "formatVersion": "0.0.1", diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_from_bounding_box.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_from_bounding_box.json index 507eaaf2db92..7aded6e5830c 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_from_bounding_box.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_copyright_from_bounding_box.json @@ -16,13 +16,13 @@ "Cache-Control": "max-age=86400", "Content-Length": "152659", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 05 Oct 2022 19:16:55 GMT", + "Date": "Thu, 06 Oct 2022 06:50:54 GMT", "ETag": "W/\u002213fc5384a26881239fe43e68c5ff6981\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: 33F7BE833E3D49DE9CAA00E33B1E8CD0 Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:55Z" + "X-MSEdge-Ref": "Ref A: 24D3E8573A8F44A49229229EDD031555 Ref B: TPE30EDGE0920 Ref C: 2022-10-06T06:50:55Z" }, "ResponseBody": { "formatVersion": "0.0.1", diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_attribution.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_attribution.json index 3590d5b8719f..036b340db3d3 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_attribution.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_attribution.json @@ -15,12 +15,12 @@ "ResponseHeaders": { "Content-Length": "98", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 05 Oct 2022 19:16:55 GMT", + "Date": "Thu, 06 Oct 2022 06:50:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: 70091B1BD8D04D8F8E2142546436C485 Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:55Z" + "X-MSEdge-Ref": "Ref A: 4363EC4FCC2E4692ADEF04967DF73721 Ref B: TPE30EDGE0920 Ref C: 2022-10-06T06:50:54Z" }, "ResponseBody": { "copyrights": [ diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tile.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tile.json index b7cc9178efea..4c985672c420 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tile.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tile.json @@ -17,14 +17,14 @@ "Content-Length": "12274", "Content-Type": "application/vnd.mapbox-vector-tile", "Copyright": "2022 TomTom", - "Date": "Wed, 05 Oct 2022 19:16:54 GMT", + "Date": "Thu, 06 Oct 2022 06:50:53 GMT", "ETag": "W/\u0022eadef53c2f46dda3046d02377f68544809bf7ce411d3bff917e723f7ba01e0f3836f6fdfa286522a1c62857afddd2582\u0022", - "Expires": "Thu, 06 Oct 2022 19:16:54 GMT", + "Expires": "Fri, 07 Oct 2022 06:50:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: B26C5C7A8C3D45B280EE3B57E798DAC3 Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:53Z" + "X-MSEdge-Ref": "Ref A: CA8CB984F12C473688FAC436E3442926 Ref B: TPE30EDGE0920 Ref C: 2022-10-06T06:50:53Z" }, "ResponseBody": "Gq8TCg1OYXRpb25hbCBwYXJrEpYBGAMikQEJ\u002BC/gAaIEAAYDCDICDg4mAiITtAFuDUZgLB4BDgYqLSAmChADEhcWCQUJCgUFEQYDDAQgAwAXDR8ADQsLABUVJxMbARkLEQATDRMDKw8ZAw0KEQUVFwEPCQULHwYAAyEWIQEJDwsTGAAMDwwBDA8NAgkNCxMCDwwDCwkKCRMQAAkJCgUSAg4JAw8ICxABCAsPEpQBGAMijwEJyCi/AhIJCAkHDwk8ACIFCAIKBQsNBQ8JygEAwgMSFFpEEjQTGgAaGAABDgICDA4cBAQoBgYFAwMDAwsRCxMdAQMBCQ8IBRIaEgoKDwYUChABBQYKAxweCQoUDhkGBR8JCgEPHQURDwMRBwAGARUDAx0PBwoXIyETBRMIAwwNDwgCDREIFRkjHRUdHxEPDxKTARgDIo4BCYo20AKaBAICDiYJGAQMBxYGDAkMBxoaAgILHAQIBQAeJAABIg0gGxIdAwUOChQIAAYWFhACHQwABhYQBBoNDgIUEwoECBQNHBsmGwgJDh8SCxRBFx8AAAkfAAARHwIBBw8ACRMGHQsAAQ0UEwgPAR8NDQYdFAUKCxwREiECEQ8TEhsFCQQZGgUIDRQFDxJMGAMiSAn8PNIBggICAhQKCgwEHAkCPjIIAxIKLgAEBxQABBgHCBgCEgsBChgMBgMFDh0NCQEXBQ8BCQQJDzEAOx0VGQATDAkJBQ0ZDxIXGAMiEwm0Mb8CMgACDyoNAhkPBw8ADQ8SOhICAAAYAyIyCeA9vkKqAQAVPAAAG1cAAD0eAAAbDgEADQ4CAA4gAgEOHgACDjoAAEoaAAAQCQABFA8SPBICAAAYAyI0Cdw/3juyAQAORAEMBgVIFgAALgsAAA8XAgARDQIAHjsAACsdAAAOHQABOyAAAR8QAAINDxK0AhICAAAYAyKrAgngPro8igkWAAAcEAIBDicAADw2AAALHgEADRABAB5KAAAdDgACHgoAAA0YAQAQHgAAHSABABsfAAAdPAI6AwI8GAICHg0AAAwOAgA8DQAAEA0CAFRnAEkBAJYBEQAAHBwAASRfAAAWFQAAHh0BABsbAQA5GwACKgwAABANAAAeGgICHjkBAB49AAIrDwEACSUBAhoWAgEuGQEBDR0AAA8jAAorBggSCgQUFAUECgEJFQMDDRMRFQMGBwEXCgkDCQYRDAlMAAANPAECKw8CAA8NAAEOHQICLw4AABAuAgAPDgACLg4AAEseAAANLQEAEBsAAA8PAAANHgAAJToAAjsaAQA5FwABHh0AAQ4rAAAQRwACVxoAAB0QAgAPDgAADx4AACsgAAEOHgAPErIBEgIAABgDIqkBCdY5/gzyBAACIgQAHkAAAB7MAwoBRMABBEwBACADAwAZXwAANjcBIw8XAiUHGwERCQEoCwUJBhcAHwwCGh4UDgMcEBIYEg4CWgUICSIPCgAQEQUVEA0JEwIDCCEKJwQRAyMWGRErEB0GBwsRAAsJDQILDR8DGQ8LBACYAQECAQFZAgS/AR8AAB8dAAFdDAUyBAAxyAEEAUE/AAIfXQAAHxkABVsdAAAfDxJbEgIAABgDIlMJvkKQG6ICNwATA0cAABlbAgBgGwIABTkBAjNLBW8DABunAQMoJ6ABzwEeGQ4NDQ8KExIEBg0YAh4leAAAMhwAHAcMBAwHJCIgFwwdGAseAxwADxLYAxgDItMDCb5CgBiqDhsAIQYTCgseHxYjHwsIDQMZCBsAAEsJBAMLGQAPBhMFDQ4VAwcaHyYVAwMMEwERDAUNFwwRFBsIFRQRBQAjDgsKFR4JDgAcEToCAF0OAAwLAxMQHQULAB0TAw0JLQcTBAkHEQQvEx0MAAoPAh0LFQwHBQ0ECwUHEAAUJwQACB8ABxAdAAAYBwAAFjUAAAgfAA8IABAdEBcAAAgVAAAINxEYFQ4GDgAIAQwIAgIMAgQBFA8CAQgNAgAcDRoCCAkIBAYEAwUFAwMCGQQHBBsMAQIHDAECExARAAkJAQARBBEHGRgNAwALDQYACyoABAUYAQAINgAQDRAXDgAQDyYAAB8gBxAPHgcABSAAIicQAAAtEAMgFxYCEA0SJRQDCA0eFQMLCB8LBw0fGwcJCAcRAm0fAAAPXQENEAcHFhEAIz0AAA19AAIPTQAADS8BAMkBHgIICiAECg4SAAoIEgAIDB4FLA8aEiQVIgQ6CwQJFAEOChYPEgYADw4HDCMGBwFZDw0TFQcACw8VAhkNBR8gCxgACAUOCAIpDggcAiwKFgEkEB4BGgQANV4AAhoIFAcAADAkBDgWCgccARoCCAggBB4AFBEWABAIEhYGAQ8SmQIYAyKUAgnENZILqggEAAMCAQADAgIuDwgBkAEHAAAgHggAEBAIDwYIHBQaDgQBFgsCCxEFIAIoCBYJJAoJChYCAA4QBgUKHAYGBwEHFwsABw8JAAEPCQQBAAGEAQgWCAAALgYQGB4AHgYQIAIACBgCAEQkAgYQAxAgDgAgFgAAGBAIMAAAGAgAABgIEBAAAB4OEAIYBgACIBIOGgABDhsDDQkNFyMDDgcPJwATDSkTCw0CBw0fCQQNEQkJEQAVEwULEREHGRAEDxcTCREcAgEfFwcLCwUZDx0LAwUnDwMIIQ0nBA0FHQAdAx0LFQMXAiUKDwsxFREGDQ0VCx8LCwQFLgAAGR0AEAcKDxA1AA8JDQkfBgsWEQgrDxJWGAMiUgmSPpAqqgIGAgYABQgBFg0BAA4PAgEeEwIBKggCAE4DAgkHCykLAQcPAA0ZBgEYMQQDCAQjLAMYFSQJACAIGwEjEgEEExYRBAkCAwEEAgEEBQ8SRBgDIkAJujiSFOIBAAIEEhAOEAIALg8AACgQAgAmCAAAHggIACYQEgAeBggYAgBoAQATAwk7CycHMRVJFTUPVw4BABkPEl0SAgAAGAMiVQmOPo4WsgICACgWEgMMCBIDMggMChQEAB4GDA8eBBYLCg0AAF49ARcSDQAbCAsYDQwAJE8dDw1NGQA1AZEBBgkoAwATDA8IBg4DCAYYDRYMFgAACQ8SZhgDImIJrj2AKeoCBBAKCgMSBQMBAAIAAwAFCQAIBAQIBA0IAAQCCgAJDBACFQYFCgwHDggNAgEgEgAMERIDBwMCDQQOAQYMDgsAKhAWCxYfBAUdBhMJDxUJFSEODgQXBQcCKQwTDxI5EgIAABgDIjEJvkKYD6IBAwITFQ8HFQATEh8AHQMfCR0CCQg3FSMDAi8CAAAMQAA2BwoEIgCOAQIPGghjYXRlZ29yeSIICgZmb3Jlc3QogCB4AhrdLAoMT2NlYW4gb3Igc2VhEt0CGAMi2AIJ5jS0BZoKAgIIDAAMDgoeDAYFGhIUBBoSPhQwDBICOBQFACQKHhcQDyAJEAsYCQEJDAEDBQYEAgIAAQMDAAEBAAABAQUCBgACAAMABAADAAICAAABAAIAAgIAAAICAAEAAAEAAgABAAICAAYCAwYNCA4QAhYUEQoICwEDCBsMAQACAAEAAgEBABEGAwgZDg8SAAgQDhACBgQUABIKCAUECBoMKApACA4MChAADhwKIBQOBjIWPhIUCjIODhAQBw4OGA4kBgQBEggKAhIMGgoICgAOEgYYBw4CChQYEg4CBgUeBSgIFg4SBhQcJA8QABAJAAYSAA4OBQYYDAoCGAsFEgoWEAMUCggBBg4QCgEGGhIWAwQRCgMHAQQPGgMIBAgHDAAKCQUgDxICCBAAAhIUrgGdARthF7UBL7sBLw8FkQE9DQPrApcBswFJtwFLrwFHARUENQplDxKKBRgDIoUFCYhBvwKKCwAYEiIUBAgOFh4MDg4LDSkhOQUHjgEAAMoBGR0jNwUICQMAEAUKDBgEAg4WAgABAAACEBgeIAgEAFAVBx8bDQ8XDQEAAgIDCAASECAHDAYaAwoYFgsDEhQDAiYaFxQCBg0QAiQBFhIMEhQSEAQEABAFAQ0ACwoIBgYMBw4TDgAMFBYBBhwYAIYBAAsHHRkTABcREwsFEQ8hDREAJQ8OAQIHBAISCBEJAwsGAQ4PCgQSEggFAhUSJAoBBBAKCAAPDRsBCxgbCgELDQQZDQMVDwkKBRQPKQIHEAsQAgINBw8EBwUTHwsHDxsFBxUCCQkNAwgNAAULHSUJBQULAQMCBAADCyEEFgkCBxcfEQ8hCw0ZCxEPCQMVIwINDQMCAQQBAwIXFxMPAAUNBAUHDBEACCwgBAEgIhQIFBoBEQoECA8HHxERDwEFBwANEgMUBA4TDAEABw0HAAsHCQEBAgIBAAcHAgUJCw8JpAL0AaoBAAIaGAACAQECAgoICwcKCgYEAgIBAQICAgIEAgMBAgIEAgYGBQUIAhUXDwmfAVeSAQEAAAgLARIeBwYGCgUGDhwWCgMEDAoGDQEfAyEHEQQJCQIECA8JMhAqAQIUGBQKAgUlGw8Je3GSAQAQCQYFCQ8HBg4GIhAkEgIGGgoDCxsKAhgPAQsLEwsHCRUNBw8J4gHeBkITGwcDBRUFAggHFAoICwQTDwkAjAKaAQcCAR4GEgEWESIDFAQKBwcAFwgRAQkKCwMRDREFEQINDBEUAwYDDwkA5AMiBwIJIQoHCBEPCQC0AqIBDQQxBxO1AQgCCAkUBAAIGBEKAwILExMJEw8HCQMKAgEDBAIUDB4OBgUPEj4YAyI6CcxAognKAQACCAwRAh0WGBABBAcKAQwIDAEMDRcGERMKDQAVCwQDHAwOAxQHBwENBgcPCA8eFwoDDxLlAhgDIuACCbAovwKqCgQKCgEEBxgACAQGBgQIAQcECTYAEhAeIB4WGCIAFgYUBQAODgoCBA8KBRQGDA4YFAIICxAMBgoUBwEKEBIABQQGAAgSDggIDBgCAhAKCQgOBxAWAQ4gygLSAV4yHA4MBQIMEAsGCAAHEAEODAYUCAQACwoACg8DBRYZFA4BCBMeAwAIJAUCAhQSFAAOGhoIAwgIDgkaBBIILgwQDBYCHAwcAhwSCgQWFA4AFgwYABAODAMFGQADBgsQAwYGCgkGBhwVBBsQGwwHCA0MABAZDAcMAgMNABEOGRoVHCkMCwYTBAYKCwoEAA4GABEQAwoCFhEOCQQFChEKFyQGFAsWDRIRAQ8OFTACBgkOEwwFEBUCBQUHCBMJCwgEGgIICgISEBQFEBQEEAoMFgoGDAwICBoGAQwMCgUOCAVAC3YAPKsDrQHRBPMBgQOfAd8E\u002BQHzApkBswTnAV8nDxJsGAMiaAnSM78CggMDFgIcBwYFGgcKBRQBFgkMEwwRDgMSERI7Bx8MERAACgkGEggNBAAWBAwVBwkNBAMFAhEIBQwNJQgDBA8OBBQJBBEkGQQGJAUOCCIDGhcCDxwRDB8AFQYLAB8XCQEJGAUPEiMYAyIfCZAwwwFiAgwJCA4CEAwDCgoGARQxCwQZBgEHCw4PDxJGGAMiQgmKML8C6gEEEA4cCQgICAcGCRgAEBMQHSIADhoCAgYbEA0JARMECwEPDA0ECAwXCgoMDwQLAhULCwMPHgUJGwMDDxL1AhgDIvACCfIviwGiBAIAJgweAgAGGgoOEC4SJgQMJgsKCAgKFAYDBgwIBQQOCQwDDggGDQYREgMKFwAECgkGBg8lAQQGCwQlJAcaAAQAAxcKBxIJABMgDQoFDhECBQoICBESDQMNCgoKDQMCEHU93wGPAcABwQEWBRgCFhIQAgwKAAwKCA4JEAUIBwMFGAkIFQIBBAcIAAwLDwkxwgJKAQAPGAgOCgcCCQwBCgsHAg8FDwkUIUIBAgkICAEBDBAQBAwMJRcHDwmfAUVKAAIGEBMBAQQCDAwIHgcPGwkBDwmAAiWCAQECAwYGAwMEBwYDEgkBDQYFCgQKDgUQDQQCFAcOEQsJDwlWfcoBAQAHDg8CDRgXFggQCQAHCgYBBgwFCA8EBhIIBg4HFgAIFxQDBhEGAwIDAwIIJQwLBRUPCccCPDoECBcKAQYaCQMIEgMPEQ8JFBs6DxIWAwoKBQgaCRMPDQUPCWBNMgECAQwLGg4GAAkIGQ8SHRgDIhkJnDC4AUoAAgIiCw4RBAEGBwUKAQIBFBEPEk0YAyJJCZore4oCAgAMHAYACBAQDBgeBgwKAAgGBwgMAgQMBgEDBAEAFQECBREPCgEdHxEHAQYTBxAFBwkXCwEAAAIAAQEAChEDBQoHDxJSGAMiTgnULcMBkgIUBigGGA4MAAQuBAYNASEQDgIBCL8BwgFpQQslBgYkAAUJCAYSBgwJDgMACQYFBA0UAwIPEgsMEwwAJB8BDRAPFA0DCw4HDxIyGAMiLgm8MekBmgEGBg0UCAIYFBQKHiANBgIIDQgFBQUVDQ0BBycRCQcDCQwJCgQKEw8SLhgDIioJ6i2DAooBAgAMBAgQEAkKBAQmEQgACAwGBQIVAScJBhMHDwoNAQkMAw8SaBgDImQJoDGpAboBABIWBwgGDQgMBggDDAYECg8BAwYKCg0UBxYRABMDLRENDw0BCAUMBhIJGh0aEQ8JCBiiAQkGFQANCgEIDwwKBAUIGAoODRADAhMIBAwNCRQMAAMJBgQIBwsHDQcPEjAYAyIsCcAvgwKSAQMILxIPAB8MDQIBDBEHEwwHAwMfBgQcDCgHFgkIABoNBAgeCw8SQhgDIj4JokGeCdoBBgIBGgICEAQPAwAOGQQBCgsDDAMFCQUKFwcFEwsEDQEJBg0UEgIFDAAFCwULBx4XOAEWBAwNDxInGAMiIwmKQYwJcgIACBIOBwgCBwYRFhUDIwAIEQwFFgACBggJCQQPEh8YAyIbCaAwuAFSEBQOEQoCDxIIAAcEDwEABwkNAQEPEk0YAyJJCewcvwKaAWAowgKEAeYE/gHgBPoBggOgAdIE9AGoA6wBEwDZAUdVHbsBP4cDgwG7AT/NBfMBrwORAcsDmwG/BMMBwR0AAJMBDxIbGAMiFwm/ArhBOtQ\u002BAAMuABgHHgUeAgTDPgAPEv4DGAMi\u002BQMJvwKrAYIPwh0AwATEAcwDnAGwA5IBzgX0AbwBQIgDhAG8AUBWHtoBSAcKAxYAGgoeBgoWFhsIIRYbIAcOBRwAHAoiChAADAocDhwYEgEQBhgKFBccDRgBDAMmAgwOIiMIIRgZKgMOAB4IIhAYDCgMEBISDCQOFgMqBA4PGgUaBiwJJgAcBiAMGBQUHBIDJAokEBggGA4eCBwaJhQSEg4gCgwiCA4AAQ4SHhQIFA4OCigOFg4QDggQGg0SFSgJIAIkCBgQGBIQGAwYCB4CIgcIGgAUAhoIFAoOGqQBBiYFHAIcFDwRHgMQABwMNhQ8DBguLAAiDCQWICwcEE4WUAweARwMKhREBDYGGgBWBCgBFglIABQEPgQSDiYkIhZCCjIKOgxQGm4UXAx6AdoBBBABLgIQAFwEFAFSEVoFDAciARoHEgMmFlIOHBQcEg4gEiAIGCooZBRIBjQEPgckDw4dJg8GHRITHgcUASIIJAoSFBQeEAIIAh4BGgIYBhARHgcWBCgLEAcWAyICGgwWGBocDggQDAoBQgUgADwDDA0eASgHGgAkDCQCEBMQEyIDGAIcDSwAIggUFiAMCgESCTwXEhEoBR4AGAQaEhwWFgYWBBwFNg8aBx4CFAwoCA4AHgc0ByANJAkQCx4RQAMcARwIIAgSAQbTPgAPEpMDGAMijgMJhDy\u002BQpoMAQMGHQgdABUGNQcRBx8CGwQbEj8MHQoPDiMIHwgzAB0HDQsnARMIHRAZBjUDGwUVFRURGwMZABcGHRInGBEKOwIRCwkVHwcTACEOKwEbBBcUIRQPAQ8LIwAjCBkCJxIpADsGHwJBCwkHDxsNFxkLFQEZBCEIFQwPAycIFRIdBQ8BFwIdAx8dERMTCREHIwIhCBMUHR4REAUeJRANCCMDPQUzE0cnYxcpHwcfERENExsNGxFBGAF4Ax4BBBIEDBQoAQYQCAIGHj4YOAwoECAONAIeDjwIagUuCSATAg0EDwwDGBkUABIOCAgQABIIAggSAi4EIgEcBCgDLgUgASoTGgIMDgMIDAEMBhAWEgYKBBgAGgQIAFYEDgUKCVwFGAAYBRwKCAcEBiAFJAASAxoNJAUBCxAKBAQYBxIKDgwcDhINDAVWC0QREiEOBgYmAwgGDCYCFAA4B0gFDAEiCQ4OBAQcARwBPAMICUILOg8OERgGDgkMAhYDChAAAhIJDgI0C1AHKgMcDxJsGAMiaAnUPZw4ggMSBA4QEgYYBAALDgEHFAkKChIEGhASARIKCAEIEAEGAQUCAxgHEg8CBBAeDgIGCwUFAQQGAAQBGAIXAwEBAwEABAQBCgELAQEHCQ8LBQ0VEw8JExMHJwANCgUADQwXERMPEicYAyIjCdw9tDpyAAICCg4GDC4HFAsQDQoHGAURAh0OLwgBCxcGCQ8SJRgDIiEJ7j3gPGoDCg0AAQYBDgoGCxIFAAMRAAkMCQAJEgACBQ8S6gEYAyLlAQm\u002BQrIN0gYDBRcLDwMTBgcKEwAHBBUBHwkTDx8LDQAnCQYGEQwPBQIHDwoLARcEEwo5AQ0LBQgTBh0CCQsLAxUEHQAfAwcLJwYNARUFAwkTAhEHDwAVBQsFAwsvFw0LARMGCQ0JGQAFBR8THQ0VDScPGxUTAEUJFQklCQsNDQkfBhMFHR0hDQ0TCQErHQcBBwkpGQ8ADwsZHQsEBQkNAAkHCRclBSEBDQMLBg0FFQIVCA0HExAFFwUBCW8BcQADDAakAUK4AUy0AUrsApgBDgSSAT4QBrwBMLYBMGIYxAEiDAIOAw8S8AQYAyLrBAnWNJwIghMAAgpuBgIGJgQKFAwKEAIMDgoACgwMCloACgkODBoBFgMWFRIJEBQgAhoPNgkQBwERFgcEARAQFAgWDhoFDhQOCBABEAoQCxQBJgYKAQ4MFAQgACAGHAMODiYHIgYICgAGJgoEDhQIJgEOBwAEDgYDEhQHBgoQGhIDEjICBggKAQoOABIKBAAMDAIGCgMOEAAQBgoSFgAMDAgWBjAOHA0IEAAKBggDEBoWEggSCBwCFgo0GDgIIAQWCBIIMgwoCCwGMAgqDmwAJghIAjAKDgYkAh4IFgMEHgwKFgocDDAgABQUChAWUgQWDCYIJAxCCjwIHgAODEoCKAZ0AkQDOAMmAB4HAjwuBgIMLggQEEoMQAhQAiQDGAQQCgYcjgECGAciBCICMAQUAjQEGgJgAmgBRAA8ASYEBgVWBSoFHgkMBAYFHgEeIBsKDA4BBhQBBFUEVwIDFQQdCBECGQghBgsSWQJRAxMAWwEPAi0DDwLZAQt5E1sZbQtPCTkJMRVBIyENJQMRAz0AEwxdAycAVQUZAzUTQwspAhsLHRVPD00rGxUfCyMAIS0rCxcTOws1ABsEDxIdEzsBGwYbCTcVkQEJDQcTARkAEwcZIQgdARUFGQ0RDw8XBxcBIwofFicOEQ8XDQkNDw0VCSUNDwcTHRMNEQACCxcHFx8JEQ0TERklBxsNHRsTExsJIwQjGxETEwsXBR8AGwolBSsGGRAZAw0EKQ0VCyMREQsPCycJCwsfAR0EGxopIhckBw0hAQsEJQILDhcYGwkTBRcCDxcRDRsJGwALCQ8JIQAbBhsIDRwfIhUUBQ8SkwQYAyKOBAmuPrQk\u002BgwEAAkCAQIJFAwMBAIEBAMDAQMACQIMCgoGDhIEEwEHDggBDhYiDAgODAILBAwGAAgJDhcGKx4RDgsBDxAFAwwMAyoNBgsKGQgCJAEOBBYYDg4OChwCFA4SBg4SBAQaBwYCHAQQCAAFAgkCAhAPBQUNDQgCEAUSFw4BHAgSBgAaEA4UAxQKDhABFAgYAhMCFg4OBAoYBiwOAQIAAQIDCAIMBAIKAgUMBAsHAQMAAwMABwIBBAcNAAEABRkRIxcLAQoBCwkJCwAEEgIQAQ8LExkBAQIDBgIHCQcAFQETDQkDEAoYAwwMDAYOFRIDFBEEAA4JEA8KAwgJAREIHQAFDQATAQYAGwNHBREBFQAdBSMBGQIACAEHAAIRCAcDGQA1BB0AJQkXCwcDEQ8dAREIEwshCQIJDgQTARcbjQEoEB4SHhgKAQkDDQ0LAwAJCwMQAgAKFAAYDgASBwcGCAQEAg8uDgIHEQUNDxQIAgcTDQ4BBg8DDQYNAAoBBhAGGBYcABQDAgcDDQEFAgYACQoLFgUIBAELAwEPCQUJAAcKDQIBDwl3zASCAwEABwIHIgAcBgYDGA0NFiIWCgoQBRIGFgEKEgMSAAoVDxcAJwkEAQ4DDxEAEgUGCA4RAgsPDQ8DAAIHDAYNBwkHBAAYBwcECwkEAAoBCQADCgECBwkDAAkQDAQPCQkBDw8SIRgDIh0JwjX4CVoGBAsAEhAIGAsMBhQFGA8KBQUJWQ4LDxJuGAMiagmIPKYiigMCAhgKLgYDBgcsDxAGAhIDEg8EAwYBEggLAAkBBAoRBg4SDAQKEg4GCwQEAAkABQwBCR0jEQECDgoCEwYJEAQNCQQHEQQFBAUDBgIHCgUNAAUGBAUFBgENBwQNJQwFBBcFCw8SORgDIjUJvDz4H7IBAgIUEhoKECABDBYMFxoCBoMBYgUJCwYJAQclBxcBFwQdCxEHHQYTJBMWAy4EDxKCARgDIn4J\u002BjzuINoDAgAWDkAAEAEoBAMICwEFChECAwgmBSIADAYKBSQICgMFCAoDBQQOCgwCEgkWEQQGDwwNEikMHRYTBDcSKRQnAQ0OCRgLARcIHRAtBR8PAgEJAg0NCAELAAcSFQM7LR4FHBUQAAQDIQIJCAgJFgkFCBoBFAJ4Vw8SGxgDIhcJ4DmiC0IMADoKAAIFBhcKDQUXBQEJDxIhGAMiHQn0NZoJWhAAJAgQGhUMCwIJAQ0RCgMLAAsRBAMPEicYAyIjCZJCnA1yBAQVGBEMCQAbBxMACQULDQYDIAoWAggDFAASDQ8SHRgDIhkJvDSkB0oSAAYCAnYVFQUJCR0BDQYhCAcPKIAgeAIa9AIKC090aGVyIHdhdGVyEs8BGAMiygEJvkKqLYoGBwADBA0KDgkDEB0SHyABHg8ICwUbCisYDQELCRUONQATFwMEBQQJCAAUDAECAgYMCAMMAwgCBRADBQQHBgEFAhUEBQIADQ0AABMICQMJCgYHFQcCDRkKFQsEAw4TCgYGDwIJAAoBCQItDBsFEQoZAg8QIQULCgcbJxUCByENBwoPAxEdEgAXIRMSEycHGwQBBBsFCwQbDgUCAAACDgwUKCQIHBQQFhgYVAhUHzYHNB9AIB8KCAYgCwYEOhFaBkYJCgMPEo0BGAMiiAEJvkLyLIIECQRFClkFORJNJzMgNQhTIFMHJy0bEyMHEycNCw8EAxwGDAAEARgFEQYFFwsBFRAbCAYYGwIAIgYcFCAHAwYTBAIWEA4OHiIeAgoUDCAKGAAIDQoBDBUQBQwNFgEIFRgHJBYQAw4hIAQGFzIHBA4KBgQUAR4OCjAEFApSAQgHKgMPKIAgeAIaSAoNUmVnaW9uYWwgcGFyaxIyGAMiLgnMQOgXmgEASCAADgwVBh8UCRQREg0CExITFRcAHRkVDxwhHA8SFSQTGAEeCQ8ogCB4AhqlBQoWU3RhdGUgb3IgcHJvdmluY2UgcGFyaxIbGAMiFwm\u002BQpIHQgUIAgoRABAfAhMFFQIbCAEPEk4YAyJKCdo5jgeKAgoAAB4ICgICFgAcDRkYAgwwGA4HBQwoFDoOJhAsCAgGJgIIHgACIRkNCA8PMQ0TCRsFHwtBGx8TGwkADQcJCQsAEw8SyQEYAyLEAQm\u002BQvA1KhEECwsPBxIVHAAPCQCWA/IBDQALBh0HGwALDx4LHwwFGRAADAkUBQ4TAR0XCwkhCA8NAQ0GBw0ZAAAPCwAIAyAIHgMOCR4IDBYMBQYFDwkA8AGCAQMBCxADDQ8DFRERCAMNFRkBDxISHAAgCg4SDREOBQwADwkAqgOKAjEABxcQCQkLAwgPEwIjFgYDAwkFCRMXFQEhCRkCCQIKIgQLHRwZAhIMCwUNCBcKDRcMBgcRASIZDgUIDQcLCgQGAQ8SLhgDIioJ0j26OooBBhQJJAEOAzAIEA0YBhIAGAUAAQcvBgcFKg8MEQxXAg0CJw8SQhgDIj4JiD2kLdoBCAQGDA4IAAgBARECFiAKBAoLHgoFEg0ADgoACgEFAAgMJgEOCwQJGQsGDRsOAA0FJU8PBRQTDxIwGAMiLAnMPdIxkgEABAgODQAHGA0OABYIAAIUChAKAAMOCQALCwATExUBERoTBhkPEi4YAyIqCcQ9tjSKAQIAEAQDJhIOCgAAEBUMACIgAAgPAB4pAA0HCykNBAENFBcPElQYAyJQCehAwDGiAgQCCg4OAAAQEAEAHksCBxEJDAMSBgAABg8CBxgEEgACCxgNBg4NAg0IAwUVDBMCAwwBBQAAAQQVDAcAAQgIABMPAAANEAAADw8SIRgDIh0Jvjy0JloCAA4mBxICEhAeBBIQEDcACWkGEQoLDyiAIHgCGoYICgtFYXJ0aCBDb3ZlchIgEgIAABgDIhgJ4Dy\u002BQjoASSIAAJEBIQAAYaADAAC\u002BAg8SGBICAAAYAyIQCYBAvkIaAL0CvgIAAL4CDxIhEgIAABgDIhkJuEG/AjponAEeGACMAdEBACM1I6MBImUPEjQSAgAAGAMiLAmIK78CegBWmgE5NxuWFAAAwALrDwAAOU0AADq9BACXAXMAdU05vQEACRsPEjgSAgAAGAMiMAm\u002BQoAgWr0CAADnCyQ1bgAAa20AIzcAxQW2AQAAOIgBAA8JYdgEGgDaASRsAMUCDxIhEgIAABgDIhkJvkLmCjrPAQBtbQDhByQAIzcA3QG\u002BAgAPEiwSAgAAGAMiJAm\u002BQuYgYm0AADJuAADoHr0CAACZEmgAAGMhAEUxAM8MvgIADxKXARICAAAYAyKOAQnuNIoJogPcAQAAOGwAlAGkAZIBNrYBAG44JG6SATbKAgAApAFJAAA4SgAArBHtBAAAoQEjAADVASMAAGslAAA1RwAlawBrIwAAwwIjAAChASMAAGslAACjAUcAJaEBRwAjNwA1SQAjNQBtJQAAowEjACOPAiMAJTcANW4AAMkCIwAPCW64AxIA2gFIbQ8SiQESAgAAGAMigAEJ4DyAIKoDoAMAAIINiQEAADKLAQAAlQFnACFkIwAhMQCVASIAAMUDIQAAlQEiMyQAAGYiAADKAUYAAGREMSFlAGMhAACXASIxIgBDMQAxZwAAMiMAADEhACEzAJcBIjFFAACXASQAAGZEAABlaAAAMdIBACIzIQBpMQAyqwEADxJNEgIAABgDIkUJgDAAwgHuCAAkcJIBAG1vygYAAPgJtQEAADW3AQBHb6UCNUdttwEAkQFttQEAtwFvI21tAG1t2QEAJW\u002BRATUjpwFuNQ8SgwESAgAAGAMiewmCPYItogMiAABkRgAAZEYyaAAAYyEAADFEAEYxALgMiQEAAGFpACQwADIiAABiJDJEAAAxRgAAsgX9AgAiMQClAiQAAJMBRQAiMQAvJAAAkwEjAABjJAAA9QEiAAD3AUUAAI0DIQAAYyIxaAAAqwJDMgBjIwAAMSEADxIXEgIAABgDIg8Jti0AGoACAGumAZMBAA8SGxICAAEYAyITCYw\u002B/C4qAPoBIQAAlQEhAAAxDxIVEgIAARgDIg0JvkKYIRptAAAxbgAPEh4SAgAAGAMiFgmQO4AgOmgAADIjAACaASEAADMhAA8SGhICAAEYAyISCeo95i0qIjKMAQAAZGcARTEPEiQSAgABGAMiHAmwPoo5UkYAAGKKAQAAYkUAADJDACMxAGEhAA8aCGNhdGVnb3J5IhIKEHdvb2R5IHZlZ2V0YXRpb24iCgoIY3JvcGxhbmQogCB4Ahq0AQoSSW50ZXJuYXRpb25hbCByb2FkEmkSBAAAAQEYAiJfCZhCkAciAAQVZzojAgIJGcYBEgs5AAMJGIMBOi0YGEYGiAEcFAIAAQAbGwkeiQKSATfLAbsBvQEZRQlvHkU9SzFhjQHFAQAnHG4iFlKAAXCSARc\u002BAn4aRsIBxgEurAEaDGNvdW50cnlfY29kZRoTY291bnRyeV9zdWJkaXZpc2lvbiIFCgNDQU4iBAoCQkMogCB4AhpKCgxJc2xhbmQgbGFiZWwSEQgAEgQAAAEBGAEiBQnKN4UCGgRpY29uGgRuYW1lIgIgASISChBWYW5jb3V2ZXIgSXNsYW5kKIAgeAIa0AMKE05hdGlvbmFsIHBhcmsgbGFiZWwSERIGAAABAQICGAEiBQnaP7MCEhESBgAAAQMCBBgBIgUJ9Dq8ARIREgYAAAEFAgYYASIFCeg9jgkSERIGAAABBwIIGAEiBQn6KpkBEhESBgAAAQkCChgBIgUJpkLQBxIREgYAAAELAgwYASIFCf5AkBAaBGljb24aAmlkGgRuYW1lIgMgqQEiEQoPMTI0NTk4MDAwMDI5MDUyIiIKIFJvYmVydHMgTWVtb3JpYWwgUHJvdmluY2lhbCBQYXJrIhEKDzEyNDU5NzAwMDAwMTgwMCIcChpHb3Jkb24gQmF5IFByb3ZpbmNpYWwgUGFyayIRCg8xMjQ1OTgwMDAwMjkwNDIiEwoRRnJlbmNoIEJlYWNoIFBhcmsiEQoPMTI0NTk5MDAwNTQ1NzUzIi0KK1BhY2lmaWMgUmltIE5hdGlvbmFsIFBhcmsgUmVzZXJ2ZSBvZiBDYW5hZGEiEQoPMTI0NTk5MDAyNjc3MzY1IhwKGkdvbGRzdHJlYW0gUHJvdmluY2lhbCBQYXJrIhEKDzg0MDUzOTAwMDUyMTEwMSIXChVPbHltcGljIE5hdGlvbmFsIFBhcmsogCB4AhrPAwoSTmF0aW9uYWwgcGFyayBuYW1lEhESBgAAAQECAhgBIgUJ2j\u002BzAhIREgYAAAEDAgQYASIFCfQ6vAESERIGAAABBQIGGAEiBQnoPY4JEhESBgAAAQcCCBgBIgUJ\u002BiqZARIREgYAAAEJAgoYASIFCaZC0AcSERIGAAABCwIMGAEiBQn\u002BQJAQGgRpY29uGgJpZBoEbmFtZSIDIKkBIhEKDzEyNDU5ODAwMDAyOTA1MiIiCiBSb2JlcnRzIE1lbW9yaWFsIFByb3ZpbmNpYWwgUGFyayIRCg8xMjQ1OTcwMDAwMDE4MDAiHAoaR29yZG9uIEJheSBQcm92aW5jaWFsIFBhcmsiEQoPMTI0NTk4MDAwMDI5MDQyIhMKEUZyZW5jaCBCZWFjaCBQYXJrIhEKDzEyNDU5OTAwMDU0NTc1MyItCitQYWNpZmljIFJpbSBOYXRpb25hbCBQYXJrIFJlc2VydmUgb2YgQ2FuYWRhIhEKDzEyNDU5OTAwMjY3NzM2NSIcChpHb2xkc3RyZWFtIFByb3ZpbmNpYWwgUGFyayIRCg84NDA1MzkwMDA1MjExMDEiFwoVT2x5bXBpYyBOYXRpb25hbCBQYXJrKIAgeAIakwUKEVBvaW50IG9mIEludGVyZXN0EiEI/Jqg3KOqHBIOAAABAQICAwMEBAUFBgYYASIFCdo/swISIQiIsrP/n6ocEg4AAAEBAgIDBwQIBQUGBhgBIgUJ9Dq8ARIhCPKaoNyjqhwSDgAAAQECAgMJBAoFBQYGGAEiBQnoPY4JEiEI2fOquaeqHBIOAAABAQICAwsEDAUFBgYYASIFCfoqmQESIQj1gK26p6ocEg4AAAEBAgIDDQQOBQUGBhgBIgUJpkLQBxIiCI2Dr\u002BTzjr8BEg4AAAEBAgIDDwQQBQUGBhgBIgUJ/kCQEBoIY2F0ZWdvcnkaC2NhdGVnb3J5X2lkGgRpY29uGgJpZBoEbmFtZRoIcHJpb3JpdHkaC3N1YmNhdGVnb3J5IhgKFlBhcmsgJiBSZWNyZWF0aW9uIEFyZWEiBSDYtLsEIgMgqQEiEQoPMTI0NTk4MDAwMDI5MDUyIiIKIFJvYmVydHMgTWVtb3JpYWwgUHJvdmluY2lhbCBQYXJrIgIgPCIPCg1OYXRpb25hbCBQYXJrIhEKDzEyNDU5NzAwMDAwMTgwMCIcChpHb3Jkb24gQmF5IFByb3ZpbmNpYWwgUGFyayIRCg8xMjQ1OTgwMDAwMjkwNDIiEwoRRnJlbmNoIEJlYWNoIFBhcmsiEQoPMTI0NTk5MDAwNTQ1NzUzIi0KK1BhY2lmaWMgUmltIE5hdGlvbmFsIFBhcmsgUmVzZXJ2ZSBvZiBDYW5hZGEiEQoPMTI0NTk5MDAyNjc3MzY1IhwKGkdvbGRzdHJlYW0gUHJvdmluY2lhbCBQYXJrIhEKDzg0MDUzOTAwMDUyMTEwMSIXChVPbHltcGljIE5hdGlvbmFsIFBhcmsogCB4AhouCgxTdGF0ZSBib3JkZXISGRgCIhUJ2DzuLDIQSZABflAIwgFFSCTsARcogCB4Ag==" } diff --git a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tileset.json b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tileset.json index ade7ada7ed37..164ea2b4f3a7 100644 --- a/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tileset.json +++ b/sdk/maps/azure-maps-render/tests/recordings/test_render_client.pyTestMapsRenderClienttest_get_map_tileset.json @@ -15,13 +15,13 @@ "ResponseHeaders": { "Content-Length": "365", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 05 Oct 2022 19:16:54 GMT", - "Expires": "Wed, 12 Oct 2022 19:16:54 GMT", + "Date": "Thu, 06 Oct 2022 06:50:53 GMT", + "Expires": "Thu, 13 Oct 2022 06:50:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Cache": "CONFIG_NOCACHE", "X-Content-Type-Options": "nosniff", "x-ms-azuremaps-region": "West US 2", - "X-MSEdge-Ref": "Ref A: 0E7FB7A78C174B46949B016B3B9D64ED Ref B: TPE30EDGE0622 Ref C: 2022-10-05T19:16:54Z" + "X-MSEdge-Ref": "Ref A: 386E85CA98434B049F8CF419CBE5D288 Ref B: TPE30EDGE0920 Ref C: 2022-10-06T06:50:54Z" }, "ResponseBody": { "tilejson": "2.2.0", diff --git a/sdk/maps/azure-maps-render/tests/test_render_client.py b/sdk/maps/azure-maps-render/tests/test_render_client.py index b53d7d0280b4..104ce1271304 100644 --- a/sdk/maps/azure-maps-render/tests/test_render_client.py +++ b/sdk/maps/azure-maps-render/tests/test_render_client.py @@ -36,8 +36,8 @@ def test_get_map_tile(self): def test_get_map_tileset(self): result = self.client.get_map_tileset(tileset_id=TilesetID.MICROSOFT_BASE) assert result.name == "microsoft.base" - assert "TomTom" in result.attribution - assert len(result.tiles) > 0 + assert "TomTom" in result.map_attribution + assert len(result.tiles_endpoints) > 0 @MapsRenderPreparer() @recorded_by_proxy @@ -47,7 +47,7 @@ def test_get_map_attribution(self): zoom=6, bounds=BoundingBox(south=42.982261, west=24.980233, north=56.526017, east=1.355233) ) - assert len(result) > 0 + assert len(result.copyrights) > 0 @MapsRenderPreparer() @recorded_by_proxy diff --git a/shared_requirements.txt b/shared_requirements.txt index 099e10d39e2c..45d9ca0fadcf 100644 --- a/shared_requirements.txt +++ b/shared_requirements.txt @@ -129,14 +129,7 @@ isodate>=0.6.0 avro>=1.11.0 pyjwt>=1.7.1 chardet<5,>=3.0.2 -<<<<<<< HEAD -<<<<<<< HEAD yarl<2.0,>=1.0 -======= -azure-maps-nspkg~=3.0.2 ->>>>>>> 3cb788f927 (init PR) -======= ->>>>>>> 658596fc2d (Add Unit/Live test) #override azure-core typing-extensions>=4.0.1 #override azure-search-documents typing-extensions>=3.7.4.3 #override azure azure-keyvault~=1.0 From 95052853a8c799ff188be5a3d9bb265a7f3fe3eb Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Thu, 13 Oct 2022 01:53:58 +0800 Subject: [PATCH 13/14] update minors according to feedback --- .../azure/maps/render/models/__init__.py | 4 +- .../azure/maps/render/models/_models.py | 39 +++++++++---------- 2 files changed, 21 insertions(+), 22 deletions(-) diff --git a/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py b/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py index 850834cb8d63..e68ee28310c6 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/models/__init__.py @@ -15,7 +15,7 @@ BoundingBox, Copyright, RegionalCopyrights, - RegionCopyrightsCountry, + RegionalCopyrightsCountry, ImagePushpinStyle, ImagePathStyle ) @@ -34,7 +34,7 @@ 'Copyright', 'RasterTileFormat', 'RegionalCopyrights', - 'RegionCopyrightsCountry', + 'RegionalCopyrightsCountry', 'ImagePushpinStyle', 'ImagePathStyle' ] diff --git a/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py index f9b8b902ef16..58d41fb7f8ef 100644 --- a/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py +++ b/sdk/maps/azure-maps-render/azure/maps/render/models/_models.py @@ -6,6 +6,7 @@ # pylint: disable=unused-import,ungrouped-imports,super-init-not-called, C0302, C0203 from typing import NamedTuple, Any from .._generated.models import ( + MapAttribution, Copyright as GenCopyright, RegionCopyrights as GenRegionCopyrights, RegionCopyrightsCountry as GenRegionCopyrightsCountry, @@ -41,6 +42,22 @@ class BoundingBox(NamedTuple): east: float = 0.0 north: float = 0.0 +class RegionalCopyrightsCountry(GenRegionCopyrightsCountry): + """Country property. + + Variables are only populated by the server, and will be ignored when sending a request. + + :keyword iso3_code: ISO3 property. + :paramtype iso3_code: str + :keyword label: Label property. + :paramtype label: str + """ + def __init__( + self, + **kwargs: Any + ): + self.iso3_code = kwargs.get("iso3_code", None) + self.label = kwargs.get("label", None) class RegionalCopyrights(GenRegionCopyrights): """RegionCopyrights. @@ -50,7 +67,7 @@ class RegionalCopyrights(GenRegionCopyrights): :keyword copyrights: Copyrights array. :paramtype copyrights: list[str] :keyword country: Country property. - :paramtype country: ~azure.maps.render.models.RegionCopyrightsCountry + :paramtype country: RegionalCopyrightsCountry """ def __init__( self, @@ -77,24 +94,6 @@ def __init__( self.general_copyrights = kwargs.get("general_copyrights", None) self.regional_copyrights = kwargs.get("regional_copyrights", None) -class RegionCopyrightsCountry(GenRegionCopyrightsCountry): - """Country property. - - Variables are only populated by the server, and will be ignored when sending a request. - - :keyword iso3_code: ISO3 property. - :paramtype iso3_code: str - :keyword label: Label property. - :paramtype label: str - """ - def __init__( - self, - **kwargs: Any - ): - self.iso3_code = kwargs.get("iso3_code", None) - self.label = kwargs.get("label", None) - - class MapTileset(GenMapTileset): # pylint: disable=too-many-instance-attributes """Metadata for a tileset in the TileJSON format. @@ -113,7 +112,7 @@ class MapTileset(GenMapTileset): # pylint: disable=too-many-instance-attributes :keyword map_attribution: Copyright attribution to be displayed on the map. Implementations MAY decide to treat this as HTML or literal text. For security reasons, make absolutely sure that this field can't be abused as a vector for XSS or beacon tracking. - :paramtype map_attribution: str + :paramtype map_attribution: ~azure.maps.render.models.MapAttribution :keyword template: A mustache template to be used to format data from grids for interaction. :paramtype template: str :keyword legend: A legend to be displayed with the map. Implementations MAY decide to treat this From 0e89c5b0450d56cfb8b08f2fa9b1b910f02017de Mon Sep 17 00:00:00 2001 From: Alex Tsao Date: Thu, 13 Oct 2022 23:20:57 +0800 Subject: [PATCH 14/14] update release date --- sdk/maps/azure-maps-geolocation/swagger/README.md | 11 ++++++++--- sdk/maps/azure-maps-render/CHANGELOG.md | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/sdk/maps/azure-maps-geolocation/swagger/README.md b/sdk/maps/azure-maps-geolocation/swagger/README.md index cb9c7ee82325..db2d9c3d4604 100644 --- a/sdk/maps/azure-maps-geolocation/swagger/README.md +++ b/sdk/maps/azure-maps-geolocation/swagger/README.md @@ -25,9 +25,6 @@ require: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/speci output-folder: ../azure/maps/geolocation/_generated namespace: azure.maps.geolocation no-namespace-folders: true -use-extension: - "@autorest/modelerfour": "4.22.3" - license-header: MICROSOFT_MIT_NO_VERSION enable-xml: true vanilla: true @@ -37,3 +34,11 @@ python3-only: true version-tolerant: true models-mode: msrest ``` + +```yaml +directive: +- from: swagger-document + where: $.securityDefinitions + transform: | + $["SharedKey"]["in"] = "header"; +``` diff --git a/sdk/maps/azure-maps-render/CHANGELOG.md b/sdk/maps/azure-maps-render/CHANGELOG.md index c75caf041d69..2e1e960fdf9c 100644 --- a/sdk/maps/azure-maps-render/CHANGELOG.md +++ b/sdk/maps/azure-maps-render/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.0.0b1 (2022-10-11) +## 1.0.0b1 (2022-10-13) ### Features Added