diff --git a/.github/workflows/release-upload.yml b/.github/workflows/release-upload.yml index 8da3f40..d4ec89e 100644 --- a/.github/workflows/release-upload.yml +++ b/.github/workflows/release-upload.yml @@ -38,4 +38,4 @@ jobs: with: files: build/*.zip env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml new file mode 100644 index 0000000..d30e7e5 --- /dev/null +++ b/.github/workflows/unit-tests.yml @@ -0,0 +1,28 @@ +name: Run unit tests on PR branch + +on: + pull_request: + +jobs: + test-on-pr: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.12' + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + pip install -r requirements_dev.txt + + - name: Run unit tests (headless PyQt) + env: + QT_QPA_PLATFORM: offscreen + run: | + python -m pytest -s --import-mode=importlib -q diff --git a/.gitignore b/.gitignore index 4f50d5f..7e284ca 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ -*.yml -*.pyc \ No newline at end of file +*.pyc +.venv_workflow* +tests/yaml_samples/saved_* \ No newline at end of file diff --git a/README.md b/README.md index 68dcb27..60e289f 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,12 @@ copy this folder to your QGIS plugin directory. Something like: Modify the user interface by opening pygeoapiconfig_dialog_base.ui in [Qt Creator](https://doc.qt.io/qtcreator/). + ## Run unit tests locally + Run the following command from the root folder: + `python tests\run_tests_locally.py` + + The YAML files to test against are stored under tests/yaml_samples and names as follows: 'organisation_repository_commit_filename'. + ## Screenshot ![screenshot](/screenshot.png) diff --git a/models/ConfigData.py b/models/ConfigData.py index 9cc4c50..ab6ecba 100644 --- a/models/ConfigData.py +++ b/models/ConfigData.py @@ -1,4 +1,5 @@ from dataclasses import dataclass, field, fields, is_dataclass +from datetime import datetime, timezone from enum import Enum from .utils import update_dataclass_from_dict @@ -8,9 +9,10 @@ MetadataConfig, ResourceConfigTemplate, ) -from .top_level.utils import InlineList, bbox_from_list +from .top_level.utils import InlineList from .top_level.providers import ProviderTemplate from .top_level.providers.records import ProviderTypes +from .top_level.ResourceConfigTemplate import ResourceTypesEnum @dataclass(kw_only=True) @@ -23,7 +25,9 @@ class ConfigData: server: ServerConfig = field(default_factory=lambda: ServerConfig()) logging: LoggingConfig = field(default_factory=lambda: LoggingConfig()) metadata: MetadataConfig = field(default_factory=lambda: MetadataConfig()) - resources: dict[str, ResourceConfigTemplate] = field(default_factory=lambda: {}) + resources: dict[str, ResourceConfigTemplate | dict] = field( + default_factory=lambda: {} + ) def set_data_from_yaml(self, dict_content: dict): """Parse YAML file content and overwride .config_data properties where available.""" @@ -69,30 +73,38 @@ def set_data_from_yaml(self, dict_content: dict): resource_instance_name = next(iter(res_config)) resource_data = res_config[resource_instance_name] - # Create a new ResourceConfigTemplate instance and update with available values - new_resource_item = ResourceConfigTemplate( - instance_name=resource_instance_name - ) - defaults_resource, wrong_types_resource, all_missing_props_resource = ( - update_dataclass_from_dict( + # only cast to ResourceConfigTemplate, if it's supported Resource type (e.g. 'collection, stac-collection') + if resource_data.get("type") in [e.value for e in ResourceTypesEnum]: + + # Create a new ResourceConfigTemplate instance and update with available values + new_resource_item = ResourceConfigTemplate.init_with_name( + instance_name=resource_instance_name + ) + ( + defaults_resource, + wrong_types_resource, + all_missing_props_resource, + ) = update_dataclass_from_dict( new_resource_item, resource_data, f"resources.{resource_instance_name}", ) - ) - default_fields.extend(defaults_resource) - wrong_types.extend(wrong_types_resource) - all_missing_props.extend(all_missing_props_resource) - - # Exceptional check: verify that all list items of BBox are integers, and len(list)=4 or 6 - if not new_resource_item.validate_reassign_bbox(): - wrong_types.append( - f"resources.{resource_instance_name}.extents.spatial.bbox" - ) - - # reorder providers to move read-only to the end of the list - # this is needed to not accidentally match read-only providers when deleting a provider - new_resource_item.providers.sort(key=lambda x: isinstance(x, dict)) + default_fields.extend(defaults_resource) + wrong_types.extend(wrong_types_resource) + all_missing_props.extend(all_missing_props_resource) + + # Exceptional check: verify that all list items of BBox are integers, and len(list)=4 or 6 + if not new_resource_item.validate_reassign_bbox(): + wrong_types.append( + f"resources.{resource_instance_name}.extents.spatial.bbox" + ) + + # reorder providers to move read-only to the end of the list + # this is needed to not accidentally match read-only providers when deleting a provider + new_resource_item.providers.sort(key=lambda x: isinstance(x, dict)) + else: + # keep as dict if unsopported resource type (e.g. 'process') + new_resource_item = resource_data self.resources[resource_instance_name] = new_resource_item @@ -129,33 +141,52 @@ def all_missing_props(self): return self._all_missing_props return [] - def asdict_enum_safe(self, obj): + def datetime_to_string(self, data: datetime): + # normalize to UTC and format with Z + if data.tzinfo is None: + data = data.replace(tzinfo=timezone.utc) + else: + data = data.astimezone(timezone.utc) + return data.strftime("%Y-%m-%dT%H:%M:%SZ") + + def asdict_enum_safe(self, obj, datetime_to_str=False): """Overwriting dataclass 'asdict' fuction to replace Enums with strings.""" if is_dataclass(obj): result = {} for f in fields(obj): value = getattr(obj, f.name) + + key = f.name + if key == "linked__data": + key = "linked-data" if value is not None: - result[f.name] = self.asdict_enum_safe(value) + result[key] = self.asdict_enum_safe(value, datetime_to_str) return result elif isinstance(obj, Enum): return obj.value elif isinstance(obj, InlineList): return obj elif isinstance(obj, list): - return [self.asdict_enum_safe(v) for v in obj] + return [self.asdict_enum_safe(v, datetime_to_str) for v in obj] elif isinstance(obj, dict): return { - self.asdict_enum_safe(k): self.asdict_enum_safe(v) + self.asdict_enum_safe(k, datetime_to_str): self.asdict_enum_safe( + v, datetime_to_str + ) for k, v in obj.items() } else: - return obj + if isinstance(obj, datetime) and datetime_to_str: + return self.datetime_to_string(obj) + else: + return obj def add_new_resource(self) -> str: """Add a placeholder resource.""" new_name = "new_resource" - self.resources[new_name] = ResourceConfigTemplate(instance_name=new_name) + self.resources[new_name] = ResourceConfigTemplate.init_with_name( + instance_name=new_name + ) return new_name def delete_resource(self, dialog): @@ -173,7 +204,7 @@ def set_validate_new_provider_data( # initialize provider; assign ui_dict data to the provider instance new_provider = ProviderTemplate.init_provider_from_type(provider_type) - new_provider.assign_ui_dict_to_provider_data(values) + new_provider.assign_ui_dict_to_provider_data_on_save(values) # if incomplete data, remove Provider from ConfigData and show Warning invalid_props = new_provider.get_invalid_properties() @@ -192,9 +223,11 @@ def validate_config_data(self) -> int: invalid_props.extend(self.server.get_invalid_properties()) invalid_props.extend(self.metadata.get_invalid_properties()) for key, resource in self.resources.items(): - invalid_res_props = [ - f"resources.{key}.{prop}" for prop in resource.get_invalid_properties() - ] - invalid_props.extend(invalid_res_props) + if not isinstance(resource, dict): + invalid_res_props = [ + f"resources.{key}.{prop}" + for prop in resource.get_invalid_properties() + ] + invalid_props.extend(invalid_res_props) return invalid_props diff --git a/models/top_level/LoggingConfig.py b/models/top_level/LoggingConfig.py index 747d5fc..bb830a5 100644 --- a/models/top_level/LoggingConfig.py +++ b/models/top_level/LoggingConfig.py @@ -34,5 +34,4 @@ class LoggingConfig: logfile: str | None = None logformat: str | None = None dateformat: str | None = None - # TODO: Not currently used in the UI - # rotation: LoggingRotationConfig | None = None + rotation: dict | None = None diff --git a/models/top_level/MetadataConfig.py b/models/top_level/MetadataConfig.py index f2de742..ddbbef5 100644 --- a/models/top_level/MetadataConfig.py +++ b/models/top_level/MetadataConfig.py @@ -5,6 +5,7 @@ # records class MetadataKeywordTypeEnum(Enum): + NONE = "" DISCIPLINE = "discipline" TEMPORAL = "temporal" PLACE = "place" @@ -13,6 +14,7 @@ class MetadataKeywordTypeEnum(Enum): class MetadataRoleEnum(Enum): + NONE = "" AUTHOR = "author" COAUTHOR = "coAuthor" COLLABORATOR = "collaborator" @@ -41,45 +43,39 @@ class MetadataIdentificationConfig: title: str | dict = field(default_factory=lambda: "") description: str | dict = field(default_factory=lambda: "") keywords: list | dict = field(default_factory=lambda: []) - keywords_type: MetadataKeywordTypeEnum = field( - default_factory=lambda: MetadataKeywordTypeEnum.THEME - ) - terms_of_service: str = field( - default="https://creativecommons.org/licenses/by/4.0/" - ) url: str = field(default="https://example.org") + keywords_type: MetadataKeywordTypeEnum | None = None + terms_of_service: str | None = None @dataclass(kw_only=True) class MetadataLicenseConfig: name: str = field(default="CC-BY 4.0 license") - url: str = field(default="https://creativecommons.org/licenses/by/4.0/") + url: str | None = None @dataclass(kw_only=True) class MetadataProviderConfig: name: str = field(default="Organization Name") - url: str = field(default="https://pygeoapi.io") + url: str | None = None @dataclass(kw_only=True) class MetadataContactConfig: name: str = field(default="Lastname, Firstname") - position: str = field(default="Position Title") - address: str = field(default="Mailing Address") - city: str = field(default="City") - stateorprovince: str = field(default="Administrative Area") - postalcode: str = field(default="Zip or Postal Code") - country: str = field(default="Country") - phone: str = field(default="+xx-xxx-xxx-xxxx") - fax: str = field(default="+xx-xxx-xxx-xxxx") - email: str = field(default="you@example.org") - url: str = field(default="Contact URL") - hours: str = field(default="Mo-Fr 08:00-17:00") - instructions: str = field(default="During hours of service. Off on weekends.") - role: MetadataRoleEnum = field( - default_factory=lambda: MetadataRoleEnum.POINTOFCONTACT - ) + position: str | None = None + address: str | None = None + city: str | None = None + stateorprovince: str | None = None + postalcode: str | None = None + country: str | None = None + phone: str | None = None + fax: str | None = None + email: str | None = None + url: str | None = None + hours: str | None = None + instructions: str | None = None + role: MetadataRoleEnum | None = None @dataclass(kw_only=True) @@ -109,6 +105,8 @@ def get_invalid_properties(self): all_invalid_fields.append("metadata.identification.description") if len(self.identification.keywords) == 0: all_invalid_fields.append("metadata.identification.keywords") + if len(self.identification.url) == 0: + all_invalid_fields.append("metadata.identification.url") if len(self.license.name) == 0: all_invalid_fields.append("metadata.license.name") if len(self.provider.name) == 0: @@ -116,8 +114,8 @@ def get_invalid_properties(self): if len(self.contact.name) == 0: all_invalid_fields.append("metadata.contact.name") - parsed_url = urlparse(self.identification.url) - if not all([parsed_url.scheme, parsed_url.netloc]): - all_invalid_fields.append("metadata.identification.url") + # parsed_url = urlparse(self.identification.url) + # if not all([parsed_url.scheme, parsed_url.netloc]): + # all_invalid_fields.append("metadata.identification.url") return all_invalid_fields diff --git a/models/top_level/ResourceConfigTemplate.py b/models/top_level/ResourceConfigTemplate.py index 20a2a3d..ef0828b 100644 --- a/models/top_level/ResourceConfigTemplate.py +++ b/models/top_level/ResourceConfigTemplate.py @@ -10,7 +10,6 @@ is_valid_string, ) from .providers.records import CrsAuthorities -from .providers.records import Languages # records @@ -36,7 +35,7 @@ class ResourceLinkTemplate: # optional title: str | None = None - hreflang: Languages | None = None + hreflang: str | None = None length: int | None = None @@ -44,20 +43,29 @@ class ResourceLinkTemplate: class ResourceSpatialConfig: bbox: InlineList = field(default_factory=lambda: InlineList([-180, -90, 180, 90])) - # optional, but with assumed default value: - crs: str = field(default="http://www.opengis.net/def/crs/OGC/1.3/CRS84") + # optional + crs: str | None = None # we need these as separate properties so that Enum class values can be set&selected in the UI @property def crs_authority(self): + if self.crs is None: + return CrsAuthorities.OGC13 + crs_auth_id = self.crs.split("http://www.opengis.net/def/crs/")[ -1 ] # OGC/1.3/CRS84 auth_string = "/".join(crs_auth_id.split("/")[:-1]) - return get_enum_value_from_string(CrsAuthorities, auth_string) + try: + return get_enum_value_from_string(CrsAuthorities, auth_string) + except ValueError: + # 'swallow' the error, as we technically accept any strings + return CrsAuthorities.OGC13 @property def crs_id(self): + if self.crs is None: + return "" return self.crs.split("/")[-1] @@ -65,8 +73,8 @@ def crs_id(self): class ResourceTemporalConfig: # optional - begin: str | datetime | None = None - end: str | datetime | None = None + begin: datetime | None = None + end: datetime | None = None trs: str | None = None @@ -94,7 +102,6 @@ class ResourceConfigTemplate: title: str | dict = field(default="") description: str | dict = field(default="") keywords: list | dict = field(default_factory=lambda: []) - links: list[ResourceLinkTemplate] = field(default_factory=lambda: []) extents: ResourceExtentsConfig = field( default_factory=lambda: ResourceExtentsConfig() ) @@ -104,54 +111,20 @@ class ResourceConfigTemplate: ] = field(default_factory=lambda: []) # optional + links: list[ResourceLinkTemplate] | None = None visibility: ResourceVisibilityEnum | None = None - # limits, linked-data: ignored for now + linked__data: dict | None = ( + None # intentionally with double undersore to not confuse with any reserved keyword + ) + # limits: ignored for now # Overwriding __init__ method to pass 'instance_name' as an input but not make it an instance property # This will allow to have a clean 'asdict(class)' output without 'instance_name' in it - def __init__( - self, - *, - instance_name: str, - type: ResourceTypesEnum = ResourceTypesEnum.COLLECTION, - title: str = "", - description: str = "", - keywords: dict = None, - links: list[ResourceLinkTemplate] = None, - extents: ResourceExtentsConfig = None, - providers: list[ - ProviderPostgresql | ProviderMvtProxy | ProviderWmsFacade - ] = None, - visibility: ResourceVisibilityEnum | None = None - ): - self._instance_name = instance_name - self.type = type - self.title = title - self.description = description - - # using full class name here instead of type(self), because "type" is used here as a property name - if keywords is None: - keywords = ResourceConfigTemplate.__dataclass_fields__[ - "keywords" - ].default_factory() - if links is None: - links = ResourceConfigTemplate.__dataclass_fields__[ - "links" - ].default_factory() - if extents is None: - extents = ResourceConfigTemplate.__dataclass_fields__[ - "extents" - ].default_factory() - if providers is None: - providers = ResourceConfigTemplate.__dataclass_fields__[ - "providers" - ].default_factory() - - self.keywords = keywords - self.links = links - self.extents = extents - self.providers = providers - self.visibility = visibility + @classmethod + def init_with_name(cls, *, instance_name: str): + obj = cls() + obj._instance_name = instance_name + return obj @property def instance_name(self): @@ -180,9 +153,7 @@ def get_invalid_properties(self): all_invalid_fields.append("keywords") if len(self.providers) == 0: all_invalid_fields.append("providers") - if not is_valid_string(self.extents.spatial.crs): - all_invalid_fields.append("extents.spatial.crs") - if len(self.extents.spatial.bbox) < 4: + if len(self.extents.spatial.bbox) < 4 or len(self.extents.spatial.bbox) > 6: all_invalid_fields.append("extents.spatial.bbox") return all_invalid_fields diff --git a/models/top_level/ServerConfig.py b/models/top_level/ServerConfig.py index 8c3d445..b325983 100644 --- a/models/top_level/ServerConfig.py +++ b/models/top_level/ServerConfig.py @@ -2,28 +2,37 @@ from enum import Enum from .utils import is_valid_string +from ..top_level.providers.records import Languages # records class ServerOnExceedEnum(Enum): + NONE = "" THROTTLE = "throttle" ERROR = "error" +class ServerOptionalBoolsEnum(Enum): + NONE = None + TRUE = True + FALSE = False + + # data classes @dataclass(kw_only=True) class ServerBindConfig: host: str = field(default="0.0.0.0") - port: int = field(default=5000) + port: int | str = field(default=5000) @dataclass(kw_only=True) class ServerLimitsConfig: - default_items: int = field(default=20) - max_items: int = field(default=50) - on_exceed: ServerOnExceedEnum = field( - default_factory=lambda: ServerOnExceedEnum.THROTTLE - ) + default_items: int = field(default=10) + max_items: int = field(default=10) + on_exceed: ServerOnExceedEnum | None = None + max_distance_x: int | None = None + max_distance_y: int | None = None + max_distance_units: int | None = None @dataclass(kw_only=True) @@ -49,6 +58,13 @@ class ServerApiRulesConfig: version_header: str = field(default="X-API-Version") +@dataclass(kw_only=True) +class ServerManagerConfig: + name: str = "" + connection: str = "" + output_dir: str = "" + + @dataclass(kw_only=True) class ServerConfig: """Placeholder class for Server configuration data.""" @@ -60,16 +76,20 @@ class ServerConfig: map: ServerMapConfig = field(default_factory=lambda: ServerMapConfig()) # optional fields: - gzip: bool = field(default=False) - languages: list = field(default_factory=lambda: ["en-US"]) # to format with " - " - cors: bool = field(default=False) - pretty_print: bool = field(default=False) - limits: ServerLimitsConfig = field(default_factory=lambda: ServerLimitsConfig()) - admin: bool = field(default=False) + language: Languages | None = None + languages: list | None = None + gzip: ServerOptionalBoolsEnum | None = None + pretty_print: ServerOptionalBoolsEnum | None = None + admin: ServerOptionalBoolsEnum | None = None + cors: ServerOptionalBoolsEnum | None = None + limits: ServerLimitsConfig | None = None templates: ServerTemplatesConfig | None = None - - # Not currently used in the UI - # api_rules: ServerApiRulesConfig | None = None + manager: dict | None = None + ogc_schemas_location: str | None = None + icon: str | None = None + logo: str | None = None + locale_dir: str | None = None + api_rules: dict | None = None def get_invalid_properties(self): """Checks the values of mandatory fields: bind (host), url, languages.""" @@ -77,9 +97,17 @@ def get_invalid_properties(self): if not is_valid_string(self.bind.host): all_invalid_fields.append("server.bind.host") + if not is_valid_string(self.bind.port): + all_invalid_fields.append("server.bind.port") if not is_valid_string(self.url): all_invalid_fields.append("server.url") - if len(self.languages) == 0: - all_invalid_fields.append("server.languages") + if not is_valid_string(self.mimetype): + all_invalid_fields.append("server.mimetype") + if not is_valid_string(self.encoding): + all_invalid_fields.append("server.encoding") + if not is_valid_string(self.map.url): + all_invalid_fields.append("server.map.url") + if not is_valid_string(self.map.attribution): + all_invalid_fields.append("server.map.attribution") return all_invalid_fields diff --git a/models/top_level/__init__.py b/models/top_level/__init__.py index 4b47c11..df59513 100644 --- a/models/top_level/__init__.py +++ b/models/top_level/__init__.py @@ -1,4 +1,10 @@ -from .ServerConfig import ServerConfig, ServerOnExceedEnum, ServerTemplatesConfig +from .ServerConfig import ( + ServerConfig, + ServerOnExceedEnum, + ServerOptionalBoolsEnum, + ServerTemplatesConfig, + ServerLimitsConfig, +) from .LoggingConfig import LoggingConfig, LoggingLevel from .MetadataConfig import MetadataConfig, MetadataKeywordTypeEnum, MetadataRoleEnum from .ResourceConfigTemplate import ( @@ -12,7 +18,9 @@ __all__ = [ "ServerConfig", "ServerOnExceedEnum", + "ServerOptionalBoolsEnum", "ServerTemplatesConfig", + "ServerLimitsConfig", "LoggingConfig", "LoggingLevel", "MetadataConfig", diff --git a/models/top_level/providers/ProviderMvtProxy.py b/models/top_level/providers/ProviderMvtProxy.py index 0249204..c5b9ed8 100644 --- a/models/top_level/providers/ProviderMvtProxy.py +++ b/models/top_level/providers/ProviderMvtProxy.py @@ -8,14 +8,15 @@ @dataclass(kw_only=True) class MvtProxyZoom: - min: int = 0 - max: int = 15 + min: int | None = None + max: int | None = None @dataclass(kw_only=True) class MvtProxyOptions: - zoom: MvtProxyZoom = field(default_factory=lambda: MvtProxyZoom()) - schemes: list = field(default_factory=lambda: []) + zoom: MvtProxyZoom | None = None + # not implemented (greyed out in the UI) + schemes: list | None = None @dataclass(kw_only=True) @@ -35,20 +36,22 @@ class ProviderMvtProxy(ProviderTemplate): data: str = "" # provider-specific attributes - options: MvtProxyOptions = field(default_factory=lambda: MvtProxyOptions()) + options: MvtProxyOptions | None = None format: MvtProxyFormat = field(default_factory=lambda: MvtProxyFormat()) - def assign_ui_dict_to_provider_data(self, values: dict[str, str | list | int]): + def assign_ui_dict_to_provider_data_on_save( + self, values: dict[str, str | list | int] + ): # adjust structure to match the class structure values["options"] = {} - values["options"]["zoom"] = {} values["format"] = {} # custom change + values["options"]["zoom"] = {} values["options"]["zoom"]["min"] = values["options.zoom.min"] values["options"]["zoom"]["max"] = values["options.zoom.max"] - values["options"]["schemes"] = values["options.schemes"] # already list + values["options"]["schemes"] = values["options.schemes"] values["format"]["name"] = values["format.name"] values["format"]["mimetype"] = values["format.mimetype"] @@ -57,40 +60,76 @@ def assign_ui_dict_to_provider_data(self, values: dict[str, str | list | int]): # Exception: if Zoom values are empty (e.g. missing in the UI), they will not overwrite the class attributes # This happens because if new value is abcent, there is nothing we can replace a default 'int' with. Manual overwrite: - if values["options.zoom.min"] is None: - self.options.zoom.min = None - if values["options.zoom.max"] is None: - self.options.zoom.max = None + if values["options.zoom.min"] is None and values["options.zoom.max"] is None: + self.options.zoom = None + + @classmethod + def ui_elements_grid(cls): + # Mandatory to align the fields order with data packing and assigning. + # label, data_type, default, special_widget_type, placeholder + return [ + (*cls.get_field_info(cls, "name*"), "QComboBox", ["MVT-proxy"]), + (*cls.get_field_info(cls, "data*"), None, ""), + (*cls.get_field_info(cls, "format.name*"), None, ""), + (*cls.get_field_info(cls, "format.mimetype*"), None, ""), + # non-mandatory + (*cls.get_field_info(cls, "crs"), None, ""), + (*cls.get_field_info(cls, "options.zoom.min"), None, ""), + (*cls.get_field_info(cls, "options.zoom.max"), None, ""), + (*cls.get_field_info(cls, "options.schemes"), "disabled", ""), + ] def pack_data_to_list(self): return [ self.type.value, self.name, - self.crs, self.data, - self.options.zoom.min, - self.options.zoom.max, - self.options.schemes, self.format.name, self.format.mimetype, + # non-mandatory + self.crs, + self.options.zoom.min if (self.options and self.options.zoom) else None, + self.options.zoom.max if (self.options and self.options.zoom) else None, + self.options.schemes if self.options else None, ] - def assign_value_list_to_provider_data(self, values: list): + def assign_value_list_to_provider_data_on_read(self, values: list): if len(values) != 9: raise ValueError( f"Unexpected number of value to unpack: {len(values)}. Expected: 9" ) - self.name = values[1] - self.crs = values[2].split(",") if is_valid_string(values[2]) else None - self.data = values[3] - self.options.zoom.min = int(values[4]) - self.options.zoom.max = int(values[5]) - self.options.schemes = ( - values[6].split(",") if is_valid_string(values[6]) else [] + self.name: str = values[1] + self.data: str = values[2] + self.format.name: str = values[3] + self.format.mimetype: str = values[4] + + # non-mandatory + self.crs: list | None = ( + values[5].split(",") if is_valid_string(values[5]) else None + ) + + # implement Options only if one of the child values provided + + try: + options_zoom_min: int = int(values[6]) + except ValueError: + options_zoom_min = None + try: + options_zoom_max: int = int(values[7]) + except ValueError: + options_zoom_max = None + + options_schemes: list | None = ( + values[8].split(",") if is_valid_string(values[8]) else None ) - self.format.name = values[7] - self.format.mimetype = values[8] + if options_zoom_min or options_zoom_max or options_schemes: + self.options = MvtProxyOptions() + self.options.schemes = options_schemes + if options_zoom_min is not None or options_zoom_max is not None: + self.options.zoom = MvtProxyZoom() + self.options.zoom.min = options_zoom_min + self.options.zoom.max = options_zoom_max def get_invalid_properties(self): """Checks the values of mandatory fields.""" @@ -106,11 +145,5 @@ def get_invalid_properties(self): all_invalid_fields.append("format.name") if not is_valid_string(self.format.mimetype): all_invalid_fields.append("format.mimetype") - if not isinstance(self.options.zoom.min, int): - all_invalid_fields.append("options.zoom.min") - if not isinstance(self.options.zoom.max, int): - all_invalid_fields.append("options.zoom.max") - if len(self.options.schemes) == 0: - all_invalid_fields.append("options.schemes") return all_invalid_fields diff --git a/models/top_level/providers/ProviderPostgresql.py b/models/top_level/providers/ProviderPostgresql.py index 3e2bc26..8d35fc6 100644 --- a/models/top_level/providers/ProviderPostgresql.py +++ b/models/top_level/providers/ProviderPostgresql.py @@ -1,19 +1,20 @@ from dataclasses import dataclass, field +import json from ...utils import update_dataclass_from_dict from .records import ProviderTypes from ..providers import ProviderTemplate -from ..utils import InlineList, is_valid_string +from ..utils import is_valid_string @dataclass(kw_only=True) class PostgresqlData: host: str = "" - port: str = "" dbname: str = "" user: str = "" - password: str = "" - search_path: InlineList = field(default_factory=lambda: InlineList([])) + password: str | None = None + port: int | str | None = None + search_path: list | None = None # field(default_factory=lambda: InlineList([])) # All Provider subclasses need to have default values even for mandatory fields, @@ -29,10 +30,19 @@ class ProviderPostgresql(ProviderTemplate): # provider-specific attributes id_field: str = "" table: str = "" - geom_field: str = "" + geom_field: str | None = None - def assign_ui_dict_to_provider_data(self, values: dict[str, str | list | int]): + # optional + storage_crs: str | None = None + # not implemented by choice (greyed out in the UI) + options: dict | None = None + time_field: str | None = None + properties: list | None = None + + def assign_ui_dict_to_provider_data_on_save( + self, values: dict[str, str | list | int] + ): # adjust structure to match the class structure values["data"] = {} for k, v in values.items(): @@ -42,59 +52,129 @@ def assign_ui_dict_to_provider_data(self, values: dict[str, str | list | int]): "data.dbname", "data.user", "data.password", + "data.search_path", ]: values["data"][k.split(".")[1]] = v - # custom change - values["data"]["search_path"] = ( - values["data.search_path"].split(",") - if is_valid_string(values["data.search_path"]) - else [] - ) - update_dataclass_from_dict(self, values, "ProviderPostgresql") + @classmethod + def ui_elements_grid(cls): + # Mandatory to align the fields order with data packing and assigning. + # label, data_type, default, special_widget_type, placeholder + return [ + (*cls.get_field_info(cls, "name*"), "QComboBox", ["PostgreSQL"]), + (*cls.get_field_info(cls, "table*"), None, ""), + (*cls.get_field_info(cls, "id_field*"), None, ""), + (*cls.get_field_info(cls, "data.host*"), None, ""), + ( + *cls.get_field_info(cls, "data.dbname*"), + None, + "", + ), + (*cls.get_field_info(cls, "data.user*"), None, ""), + # non-mandatory: + (*cls.get_field_info(cls, "crs"), None, ""), + ( + *cls.get_field_info(cls, "geom_field"), + None, + "", + ), + ( + *cls.get_field_info(cls, "storage_crs"), + None, + "e.g. http://www.opengis.net/def/crs/OGC/1.3/CRS84", + ), + ( + *cls.get_field_info(cls, "data.password"), + None, + "", + ), + (*cls.get_field_info(cls, "data.port"), None, ""), + ( + *cls.get_field_info(cls, "data.search_path"), + None, + "e.g. 'osm, public'", + ), + # not implemented + (*cls.get_field_info(cls, "options"), "disabled", ""), + ( + *cls.get_field_info(cls, "time_field"), + "disabled", + "", + ), + ( + *cls.get_field_info(cls, "properties"), + "disabled", + "", + ), + ] + def pack_data_to_list(self): return [ self.type.value, self.name, - self.crs, - self.storage_crs, + self.table, + self.id_field, self.data.host, - self.data.port, self.data.dbname, self.data.user, + # non-mandatory: + self.crs, + self.geom_field, + self.storage_crs, self.data.password, + self.data.port, self.data.search_path, - self.id_field, - self.table, - self.geom_field, + # not implemented + self.options, + self.time_field, + self.properties, ] - def assign_value_list_to_provider_data(self, values: list): - if len(values) != 13: + def assign_value_list_to_provider_data_on_read(self, values: list): + if len(values) != 16: raise ValueError( - f"Unexpected number of value to unpack: {len(values)}. Expected: 13" + f"Unexpected number of value to unpack: {len(values)}. Expected: 16" ) # self.type = get_enum_value_from_string(ProviderTypes, pr[0]) - self.name = values[1] - self.crs = values[2].split(",") if is_valid_string(values[2]) else None - self.storage_crs = values[3] - self.data.host = values[4] - self.data.port = values[5] - self.data.dbname = values[6] - self.data.user = values[7] - self.data.password = values[8] - self.data.search_path = ( - InlineList(values[9].split(",")) - if is_valid_string(values[9]) - else InlineList([]) + self.name: str = values[1] + self.table: str = values[2] + self.id_field: str = values[3] + + self.data.host: str = values[4] + self.data.dbname: str = values[5] + self.data.user: str = values[6] + + # non-mandatory: + self.crs: list | None = ( + values[7].split(",") if is_valid_string(values[7]) else None + ) + self.geom_field: str | None = values[8] if is_valid_string(values[8]) else None + self.storage_crs: str | None = values[9] if is_valid_string(values[9]) else None + self.data.password: str | None = ( + values[10] if is_valid_string(values[10]) else None + ) + try: + self.data.port = int(values[11]) + except ValueError: + self.data.port: str | None = ( + values[11] if is_valid_string(values[11]) else None + ) + self.data.search_path: list | None = ( + values[12].split(",") if is_valid_string(values[12]) else [] + ) + self.options: dict | None = ( + json.loads(values[13]) if is_valid_string(values[13]) else None + ) + self.time_field: str | None = ( + values[14] if is_valid_string(values[14]) else None + ) + self.properties: list | None = ( + values[15].split(",") if is_valid_string(values[15]) else None ) - self.id_field = values[10] - self.table = values[11] - self.geom_field = values[12] def get_invalid_properties(self): """Checks the values of mandatory fields.""" @@ -104,24 +184,17 @@ def get_invalid_properties(self): all_invalid_fields.append("type") if not is_valid_string(self.name): all_invalid_fields.append("name") + + if not is_valid_string(self.id_field): + all_invalid_fields.append("id_field") + if not is_valid_string(self.table): + all_invalid_fields.append("table") + if not is_valid_string(self.data.host): all_invalid_fields.append("data.host") - if not is_valid_string(self.data.port): - all_invalid_fields.append("data.port") if not is_valid_string(self.data.dbname): all_invalid_fields.append("data.dbname") if not is_valid_string(self.data.user): all_invalid_fields.append("data.user") - if not is_valid_string(self.data.password): - all_invalid_fields.append("data.password") - if len(self.data.search_path) == 0: - all_invalid_fields.append("data.search_path") - - if not is_valid_string(self.id_field): - all_invalid_fields.append("id_field") - if not is_valid_string(self.table): - all_invalid_fields.append("table") - if not is_valid_string(self.geom_field): - all_invalid_fields.append("geom_field") return all_invalid_fields diff --git a/models/top_level/providers/ProviderTemplate.py b/models/top_level/providers/ProviderTemplate.py index ec9b88d..da66fe9 100644 --- a/models/top_level/providers/ProviderTemplate.py +++ b/models/top_level/providers/ProviderTemplate.py @@ -1,6 +1,7 @@ from abc import ABC, abstractmethod -from dataclasses import dataclass, field -from typing import Any +from dataclasses import dataclass, is_dataclass, MISSING +from types import UnionType +from typing import Any, Type, get_type_hints, get_args from .records import ProviderTypes @@ -18,8 +19,48 @@ class ProviderTemplate(ABC): # optional, but with assumed default value: crs: list | None = None - # optional - storage_crs: str | None = None + @abstractmethod + def ui_elements_grid(cls): + """Return specifications for the UI dialog for the given Resource Provider. + Each UI element is reading from the assigned type and default value of class property. + """ + return [] + + def get_field_info(current_cls: Type, field_path: str) -> tuple[str, Type, Any]: + """ + Inspect a (possibly nested) dataclass field on `cls` and return (type, default_value). + If no default is defined, default_value is None. + """ + parts = field_path.replace("*", "").split(".") + default = None + field_type = None + # type_hints = get_type_hints(current_cls) + + for i, part in enumerate(parts): + field_obj = current_cls.__dataclass_fields__[part] + field_type = field_obj.type + + # Get default or default_factory + default = field_obj.default + if default is MISSING: + factory = field_obj.default_factory + if factory is not MISSING: + default = factory() + else: + default = None + + # If there are more nested parts, move deeper + if i < len(parts) - 1: + if default is None: + if type(field_type) is UnionType: + args = get_args(field_type) + for inner_type in args: + if inner_type is not type(None): # skip NoneType + field_type = inner_type + break + current_cls = field_type + + return field_path, field_type, default @staticmethod def init_provider_from_type(provider_type: ProviderTypes): @@ -37,13 +78,17 @@ def init_provider_from_type(provider_type: ProviderTypes): return ProviderMvtProxy() @abstractmethod - def assign_ui_dict_to_provider_data(self, values: dict[str, str | list | int]): - """Takes the dictionary of values specific to provider type, and assigns them to the class instance.""" + def assign_ui_dict_to_provider_data_on_save( + self, values: dict[str, str | list | int] + ): + """Takes the dictionary of values specific to provider type, and assigns them to the class instance. + Used on Save click from New Provider window.""" pass @abstractmethod - def assign_value_list_to_provider_data(self): - """Takes a list of values specific to provider type, and assigns them to the class instance.""" + def assign_value_list_to_provider_data_on_read(self): + """Takes a list of values specific to provider type, and assigns them to the class instance. + Used on opening/editing provider data.""" pass @abstractmethod diff --git a/models/top_level/providers/ProviderWmsFacade.py b/models/top_level/providers/ProviderWmsFacade.py index ba305f9..6532aa1 100644 --- a/models/top_level/providers/ProviderWmsFacade.py +++ b/models/top_level/providers/ProviderWmsFacade.py @@ -9,14 +9,14 @@ @dataclass(kw_only=True) class WmsFacadeOptions: layer: str = "" - style: str = "" - version: str = "" + version: str | None = None + style: str | None = None @dataclass(kw_only=True) class WmsFacadeFormat: - name: str = "" - mimetype: str = "" + name: str | None = None + mimetype: str | None = None # All Provider subclasses need to have default values even for mandatory fields, @@ -31,9 +31,11 @@ class ProviderWmsFacade(ProviderTemplate): # provider-specific attributes options: WmsFacadeOptions = field(default_factory=lambda: WmsFacadeOptions()) - format: WmsFacadeFormat = field(default_factory=lambda: WmsFacadeFormat()) + format: WmsFacadeFormat | None = None - def assign_ui_dict_to_provider_data(self, values: dict[str, str | list | int]): + def assign_ui_dict_to_provider_data_on_save( + self, values: dict[str, str | list | int] + ): # adjust structure to match the class structure values["options"] = {} @@ -49,33 +51,63 @@ def assign_ui_dict_to_provider_data(self, values: dict[str, str | list | int]): update_dataclass_from_dict(self, values, "ProviderWmsFacade") + @classmethod + def ui_elements_grid(cls): + # Mandatory to align the fields order with data packing and assigning. + # label, data_type, default, special_widget_type, placeholder + return [ + (*cls.get_field_info(cls, "name*"), "QComboBox", ["WMSFacade"]), + (*cls.get_field_info(cls, "data*"), None, ""), + (*cls.get_field_info(cls, "options.layer*"), None, ""), + # non-mandatory + (*cls.get_field_info(cls, "crs"), None, ""), + (*cls.get_field_info(cls, "options.style"), None, ""), + (*cls.get_field_info(cls, "options.version"), None, ""), + (*cls.get_field_info(cls, "format.name"), None, ""), + (*cls.get_field_info(cls, "format.mimetype"), None, ""), + ] + def pack_data_to_list(self): return [ self.type.value, self.name, - self.crs, self.data, self.options.layer, + # non-mandatory + self.crs, self.options.style, self.options.version, - self.format.name, - self.format.mimetype, + self.format.name if self.format else None, + self.format.mimetype if self.format else None, ] - def assign_value_list_to_provider_data(self, values: list): + def assign_value_list_to_provider_data_on_read(self, values: list): if len(values) != 9: raise ValueError( f"Unexpected number of value to unpack: {len(values)}. Expected: 9" ) - self.name = values[1] - self.crs = values[2].split(",") if is_valid_string(values[2]) else None - self.data = values[3] - self.options.layer = values[4] - self.options.style = values[5] - self.options.version = values[6] - self.format.name = values[7] - self.format.mimetype = values[8] + self.name: str = values[1] + self.data: str = values[2] + self.options.layer: str = values[3] + + # non-mandatory + self.crs: list | None = ( + values[4].split(",") if is_valid_string(values[4]) else None + ) + self.options.style: str | None = ( + values[5] if is_valid_string(values[5]) else None + ) + self.options.version: str | None = ( + values[6] if is_valid_string(values[6]) else None + ) + + format_name: str | None = values[7] if is_valid_string(values[7]) else None + format_mimetype: str | None = values[8] if is_valid_string(values[8]) else None + if format_name or format_mimetype: + self.format = WmsFacadeFormat() + self.format.name = format_name + self.format.mimetype = format_mimetype def get_invalid_properties(self): """Checks the values of mandatory fields.""" @@ -87,15 +119,7 @@ def get_invalid_properties(self): all_invalid_fields.append("name") if not is_valid_string(self.data): all_invalid_fields.append("data") - if not is_valid_string(self.format.name): - all_invalid_fields.append("format.name") - if not is_valid_string(self.format.mimetype): - all_invalid_fields.append("format.mimetype") if not is_valid_string(self.options.layer): all_invalid_fields.append("options.layer") - if not is_valid_string(self.options.style): - all_invalid_fields.append("options.style") - if not is_valid_string(self.options.version): - all_invalid_fields.append("options.version") return all_invalid_fields diff --git a/models/top_level/providers/records.py b/models/top_level/providers/records.py index fcc7345..8b13518 100644 --- a/models/top_level/providers/records.py +++ b/models/top_level/providers/records.py @@ -17,6 +17,7 @@ class Languages(Enum): class TrsAuthorities(Enum): + NONE = "" ISO8601 = "http://www.opengis.net/def/uom/ISO-8601/0/Gregorian" diff --git a/models/top_level/utils.py b/models/top_level/utils.py index f034080..b39e387 100644 --- a/models/top_level/utils.py +++ b/models/top_level/utils.py @@ -12,7 +12,7 @@ class InlineList(list): def is_valid_string(text): - if len(str(text)) >= 1: + if len(str(text).replace(" ", "")) >= 1: return True return False @@ -22,7 +22,12 @@ def get_enum_value_from_string(enum_type: Enum, text: str): for member in enum_type: if text == member.value: return member - raise AttributeError(f"Unexpected attribute type '{text}'", name="text") + # handle case with non-string enums + for member in enum_type: + if text == str(member.value) or (text == "" and member.value is None): + return member + + raise ValueError(f"Unexpected value '{text}', expected type: '{enum_type}'") def bbox_from_list(raw_bbox_list: list): diff --git a/models/utils.py b/models/utils.py index 926662b..c7eee06 100644 --- a/models/utils.py +++ b/models/utils.py @@ -1,4 +1,5 @@ from dataclasses import is_dataclass, fields, MISSING +from datetime import datetime from enum import Enum from types import UnionType from typing import Any, get_origin, get_args, Union, get_type_hints @@ -18,6 +19,11 @@ def update_dataclass_from_dict( for fld in fields(instance): field_name = fld.name + # handle exception for resource 'linked-data' + if field_name == "linked__data": + if "linked-data" in new_dict: + new_dict["linked__data"] = new_dict["linked-data"] + # try overwrite instance property with new dictionary value if field_name in new_dict: new_value = new_dict[field_name] @@ -57,6 +63,17 @@ def update_dataclass_from_dict( new_value = InlineList(new_value) + # Exception: try remap to datetime + if (datetime in args or expected_type is datetime) and isinstance( + new_value, str + ): + try: + new_value = datetime.strptime( + new_value, "%Y-%m-%dT%H:%M:%SZ" + ) + except: + pass + # Exception: remap str to Enum elif isinstance(expected_type, type) and issubclass( expected_type, Enum @@ -65,8 +82,18 @@ def update_dataclass_from_dict( # Exception: remap str to Enum (when one of possible classes is Enum) elif type(expected_type) is UnionType: + subtype = next((t for t in args if t is not type(None)), None) - if isinstance(subtype, type) and issubclass(subtype, Enum): + # check for list type, run cast for every element + if isinstance(new_value, list): + new_value, more_wrong_types = ( + cast_list_elements_to_expected_types( + new_value, subtype, f"{prop_name}.{field_name}" + ) + ) + wrong_types.extend(more_wrong_types) + + elif isinstance(subtype, type) and issubclass(subtype, Enum): new_value = get_enum_value_from_string(subtype, new_value) # Exception with 'expected_type' 'list[some dataclass]' @@ -76,7 +103,7 @@ def update_dataclass_from_dict( elif isinstance(new_value, list): new_value, more_wrong_types = ( - _cast_list_elements_to_expected_types( + cast_list_elements_to_expected_types( new_value, expected_type, f"{prop_name}.{field_name}" ) ) @@ -100,15 +127,46 @@ def update_dataclass_from_dict( return missing_fields, wrong_types, all_missing_props -def _cast_element_to_type(value: Any, expected_type, prop_name: str): +def cast_element_to_type(value: Any, expected_type, prop_name: str): """Function intended to cast non-iterable values, or dict (to dataclasses).""" # if there are alternative options for the expected type: recurse if type(expected_type) is UnionType: args = get_args(expected_type) for inner_type in args: + + if inner_type.__name__.startswith("Provider"): + # don't cast anything except supported providers + if value.get("name") not in ["PostgreSQL", "MVT-proxy", "WMSFacade"]: + continue + + # don't cast to wrong provider, even if properties match + if ( + ( + value.get("name") == "PostgreSQL" + and not inner_type.__name__.endswith("ProviderPostgresql") + ) + or ( + value.get("name") == "MVT-proxy" + and not inner_type.__name__.endswith("ProviderMvtProxy") + ) + or ( + value.get("name") == "WMSFacade" + and not inner_type.__name__.endswith("ProviderWmsFacade") + ) + ): + continue + + # handle the case when manual casting is required + elif type(value) is str and inner_type is int: + try: + return int(value) + except ValueError: + pass + + # if the loop hasn't returned yet, check directly by type if _is_instance_of_type(value, inner_type): - return _cast_element_to_type(value, inner_type, prop_name) + return cast_element_to_type(value, inner_type, prop_name) elif is_dataclass(expected_type): class_instance = expected_type() @@ -123,10 +181,12 @@ def _cast_element_to_type(value: Any, expected_type, prop_name: str): if _is_instance_of_type(value, expected_type): return value - raise ValueError("Element type not matched") + raise ValueError( + f"Element type not matched: {prop_name}={value}, expected type is {expected_type}" + ) -def _cast_list_elements_to_expected_types( +def cast_list_elements_to_expected_types( new_value: list, expected_type, prop_name: str ): """Cast all elements in the list to one of the expected types.""" @@ -140,7 +200,7 @@ def _cast_list_elements_to_expected_types( # e.g. 'list | dict' for possible_type in args: if _is_instance_of_type(new_value, possible_type): - casted_values, more_wrong_types = _cast_list_elements_to_expected_types( + casted_values, more_wrong_types = cast_list_elements_to_expected_types( new_value, possible_type, prop_name ) wrong_types.extend(more_wrong_types) @@ -153,7 +213,7 @@ def _cast_list_elements_to_expected_types( value_casted = False for inner_type in args: try: - casted_element = _cast_element_to_type(val, inner_type, prop_name) + casted_element = cast_element_to_type(val, inner_type, prop_name) casted_values.append(casted_element) value_casted = True break @@ -232,6 +292,14 @@ def _is_instance_of_type(value, expected_type) -> bool: if isinstance(value, dict) and is_dataclass(expected_type): return can_cast_to_dataclass(value, expected_type) + # Exception: try cast str to datetime manually + if expected_type is datetime: + try: + datetime.strptime(value, "%Y-%m-%dT%H:%M:%SZ") + return True + except: + pass + # Fallback for normal types return isinstance(value, expected_type) diff --git a/pb_tool.cfg b/pb_tool.cfg index 7dc4091..f6b59e5 100644 --- a/pb_tool.cfg +++ b/pb_tool.cfg @@ -64,7 +64,7 @@ extras: metadata.txt icon.png README.md LICENSE # Other directories to be deployed with the plugin. # These must be subdirectories under the plugin directory -extra_dirs: models/ ui_widgets/ +extra_dirs: models/ ui_widgets/ utils/ # ISO code(s) for any locales (translations), separated by spaces. # Corresponding .ts files must exist in the i18n directory diff --git a/pygeoapi_config.py b/pygeoapi_config.py index e70fd9e..825d9a9 100644 --- a/pygeoapi_config.py +++ b/pygeoapi_config.py @@ -21,9 +21,9 @@ * * ***************************************************************************/ """ -from qgis.PyQt.QtCore import QSettings, QTranslator, QCoreApplication -from qgis.PyQt.QtGui import QIcon -from qgis.PyQt.QtWidgets import QAction +from PyQt5.QtCore import QSettings, QTranslator, QCoreApplication +from PyQt5.QtGui import QIcon +from PyQt5.QtWidgets import QAction # Initialize Qt resources from file resources.py from .resources import * diff --git a/pygeoapi_config_dialog.py b/pygeoapi_config_dialog.py index ad90ec2..bf975bf 100644 --- a/pygeoapi_config_dialog.py +++ b/pygeoapi_config_dialog.py @@ -22,10 +22,13 @@ ***************************************************************************/ """ +from copy import deepcopy from datetime import datetime, timezone import os import yaml +from .utils.data_diff import diff_yaml_dict + from .ui_widgets.utils import get_url_status @@ -40,11 +43,13 @@ ) from .models.top_level.utils import STRING_SEPARATOR +from PyQt5 import QtWidgets, uic from PyQt5.QtWidgets import ( QMainWindow, QFileDialog, QMessageBox, QDialogButtonBox, + QDialog, QApplication, ) # or PyQt6.QtWidgets @@ -55,14 +60,17 @@ QSortFilterProxyModel, ) # Not strictly needed, can use Python file API instead -from qgis.core import ( - QgsMessageLog, - QgsRasterLayer, - QgsVectorLayer, -) +# make imports optional for pytests +try: + from qgis.core import ( + QgsMessageLog, + QgsRasterLayer, + QgsVectorLayer, + ) -from qgis.gui import QgsMapCanvas -from qgis.PyQt import QtWidgets, uic + from qgis.gui import QgsMapCanvas +except: + pass # This loads your .ui file so that PyQt can populate your plugin with the elements from Qt Designer @@ -74,15 +82,16 @@ class PygeoapiConfigDialog(QtWidgets.QDialog, FORM_CLASS): config_data: ConfigData + yaml_original_data: dict ui_setter: UiSetter data_from_ui_setter: DataSetterFromUi current_res_name = "" # these need to be class properties, otherwise, without constant reference, they are not displayed in a widget provider_window: QMainWindow - bbox_map_canvas: QgsMapCanvas - bbox_base_layer: QgsRasterLayer - bbox_extents_layer: QgsVectorLayer + bbox_map_canvas: "QgsMapCanvas" + bbox_base_layer: "QgsRasterLayer" + bbox_extents_layer: "QgsVectorLayer" def __init__(self, parent=None): """Constructor.""" @@ -94,6 +103,7 @@ def __init__(self, parent=None): # #widgets-and-dialogs-with-auto-connect self.setupUi(self) self.config_data = ConfigData() + self.yaml_original_data = None self.ui_setter = UiSetter(self) self.data_from_ui_setter = DataSetterFromUi(self) @@ -111,12 +121,8 @@ class CustomDumper(yaml.SafeDumper): ) def represent_datetime_as_timestamp(dumper, data: datetime): - # normalize to UTC and format with Z - if data.tzinfo is None: - data = data.replace(tzinfo=timezone.utc) - else: - data = data.astimezone(timezone.utc) - value = data.strftime("%Y-%m-%dT%H:%M:%SZ") + value = self.config_data.datetime_to_string(data) + # emit as YAML timestamp → plain scalar, no quotes return dumper.represent_scalar("tag:yaml.org,2002:timestamp", value) @@ -130,31 +136,32 @@ def represent_datetime_as_timestamp(dumper, data: datetime): self.ui_setter.set_ui_from_data() self.ui_setter.setup_map_widget() - def save_to_file(self): - # Set and validate data from UI - try: - self.data_from_ui_setter.set_data_from_ui() - invalid_props = self.config_data.validate_config_data() - if len(invalid_props) > 0: - QgsMessageLog.logMessage( - f"Properties are missing or have invalid values: {invalid_props}" + def on_button_clicked(self, button): + + role = self.buttonBox.buttonRole(button) + print(f"Button clicked: {button.text()}, Role: {role}") + + # You can also check the standard button type + if button == self.buttonBox.button(QDialogButtonBox.Save): + if self._set_validate_ui_data()[0]: + file_path, _ = QFileDialog.getSaveFileName( + self, "Save File", "", "YAML Files (*.yml);;All Files (*)" ) - ReadOnlyTextDialog( - self, - "Warning", - f"Properties are missing or have invalid values: {invalid_props}", - ).exec_() - return - except Exception as e: - QgsMessageLog.logMessage(f"Error deserializing: {e}") - QMessageBox.warning(f"Error deserializing: {e}") - return + # before saving, show diff with "Procced" and "Cancel" options + if file_path and self._diff_original_and_current_data(): + self.save_to_file(file_path) - # Open dialog to set file path - file_path, _ = QFileDialog.getSaveFileName( - self, "Save File", "", "YAML Files (*.yml);;All Files (*)" - ) + elif button == self.buttonBox.button(QDialogButtonBox.Open): + file_name, _ = QFileDialog.getOpenFileName( + self, "Open File", "", "YAML Files (*.yml);;All Files (*)" + ) + self.open_file(file_name) + + elif button == self.buttonBox.button(QDialogButtonBox.Close): + self.reject() + + def save_to_file(self, file_path): if file_path: QApplication.setOverrideCursor(Qt.WaitCursor) @@ -169,20 +176,26 @@ def save_to_file(self): allow_unicode=True, indent=4, ) - QgsMessageLog.logMessage(f"File saved to: {file_path}") + + # try/except in case of running it from pytests + try: + QgsMessageLog.logMessage(f"File saved to: {file_path}") + except: + pass + except Exception as e: QgsMessageLog.logMessage(f"Error saving file: {e}") finally: QApplication.restoreOverrideCursor() - def open_file(self): - file_name, _ = QFileDialog.getOpenFileName( - self, "Open File", "", "YAML Files (*.yml);;All Files (*)" - ) + def open_file(self, file_name): if not file_name: return + # exit Resource view + self.exit_resource_edit() + try: # QApplication.setOverrideCursor(Qt.WaitCursor) with open(file_name, "r", encoding="utf-8") as file: @@ -190,47 +203,101 @@ def open_file(self): # reset data self.config_data = ConfigData() - self.config_data.set_data_from_yaml(yaml.safe_load(file_content)) + + # set data and .all_missing_props: + yaml_original_data = yaml.safe_load(file_content) + self.yaml_original_data = deepcopy(yaml_original_data) + + self.config_data.set_data_from_yaml(yaml_original_data) + + # set UI from data self.ui_setter.set_ui_from_data() # log messages about missing or mistyped values during deserialization - QgsMessageLog.logMessage( - f"Errors during deserialization: {self.config_data.error_message}" - ) - QgsMessageLog.logMessage( - f"Default values used for missing YAML fields: {self.config_data.defaults_message}" - ) + # try/except in case of running it from pytests + try: + QgsMessageLog.logMessage( + f"Errors during deserialization: {self.config_data.error_message}" + ) + QgsMessageLog.logMessage( + f"Default values used for missing YAML fields: {self.config_data.defaults_message}" + ) - # summarize all properties missing/overwitten with defaults - # atm, warning with the full list of properties - all_missing_props = self.config_data.all_missing_props - QgsMessageLog.logMessage( - f"All missing or replaced properties: {self.config_data.all_missing_props}" - ) - if len(all_missing_props) > 0: + # summarize all properties missing/overwitten with defaults + # atm, warning with the full list of properties + QgsMessageLog.logMessage( + f"All missing or replaced properties: {self.config_data.all_missing_props}" + ) + + if len(self.config_data.all_missing_props) > 0: + ReadOnlyTextDialog( + self, + "Warning", + f"All missing or replaced properties (check logs for more details): {self.config_data.all_missing_props}", + ).exec_() + except: + pass + + except Exception as e: + QMessageBox.warning(self, "Error", f"Cannot open file:\n{str(e)}") + # finally: + # QApplication.restoreOverrideCursor() + + def _set_validate_ui_data(self) -> tuple[bool, list]: + # Set and validate data from UI + try: + self.data_from_ui_setter.set_data_from_ui() + invalid_props = self.config_data.validate_config_data() + if len(invalid_props) > 0: + + # in case of running from pytests + try: + QgsMessageLog.logMessage( + f"Properties are missing or have invalid values: {invalid_props}" + ) ReadOnlyTextDialog( self, "Warning", - f"All missing or replaced properties (check logs for more details): {self.config_data.all_missing_props}", + f"Properties are missing or have invalid values: {invalid_props}", ).exec_() + except: + pass + + return False, invalid_props + return True, [] except Exception as e: - QMessageBox.warning(self, "Error", f"Cannot open file:\n{str(e)}") - # finally: - # QApplication.restoreOverrideCursor() + QgsMessageLog.logMessage(f"Error deserializing: {e}") + QMessageBox.warning(f"Error deserializing: {e}") + return - def on_button_clicked(self, button): + def _diff_original_and_current_data(self) -> tuple[bool, list]: + """Before saving the file, show the diff and give an option to proceed or cancel.""" + if not self.yaml_original_data: + return True - role = self.buttonBox.buttonRole(button) - print(f"Button clicked: {button.text()}, Role: {role}") + diff_data = diff_yaml_dict( + self.yaml_original_data, + self.config_data.asdict_enum_safe(self.config_data), + ) - # You can also check the standard button type - if button == self.buttonBox.button(QDialogButtonBox.Save): - self.save_to_file() - elif button == self.buttonBox.button(QDialogButtonBox.Open): - self.open_file() - elif button == self.buttonBox.button(QDialogButtonBox.Close): - self.reject() + if ( + len(diff_data["added"]) + + len(diff_data["removed"]) + + len(diff_data["changed"]) + == 0 + ): + return True + + # add a window with the choice + QgsMessageLog.logMessage(f"{diff_data}") + dialog = ReadOnlyTextDialog(self, "Warning", diff_data, True) + result = dialog.exec_() # returns QDialog.Accepted (1) or QDialog.Rejected (0) + + if result == QDialog.Accepted: + return True + else: + return False def open_templates_path_dialog(self): """Defining Server.templates.path path, called from .ui file.""" @@ -262,6 +329,16 @@ def open_logfile_dialog(self): ################## methods that are called from .ui file: ################################################################# + def add_server_lang(self): + """Add language to Server Languages list, called from .ui file.""" + self.ui_setter.add_listwidget_element_from_lineedit( + line_edit_widget=None, + list_widget=self.listWidgetServerLangs, + locale_combobox=self.comboBoxServerLangs, + allow_repeated_locale=False, + sort=False, + ) + def add_metadata_id_title(self): """Add title to metadata, called from .ui file.""" self.ui_setter.add_listwidget_element_from_lineedit( @@ -386,6 +463,10 @@ def validate_res_extents_crs(self): url = self.data_from_ui_setter.get_extents_crs_from_ui(self) get_url_status(url, self) + def delete_server_lang(self): + """Delete Server language from list, called from .ui file.""" + self.ui_setter.delete_list_widget_selected_item(self.listWidgetServerLangs) + def delete_metadata_id_title(self): """Delete keyword from metadata, called from .ui file.""" self.ui_setter.delete_list_widget_selected_item(self.listWidgetMetadataIdTitle) diff --git a/pygeoapi_config_dialog_base.ui b/pygeoapi_config_dialog_base.ui index ebd8892..3cc6bcb 100644 --- a/pygeoapi_config_dialog_base.ui +++ b/pygeoapi_config_dialog_base.ui @@ -50,70 +50,156 @@ Server + + 50 + - bind + bind* + + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + + - - 000.0.0.0 - - host + host* - port + port* - - - 9999 - + - - - QFrame::StyledPanel - - - QFrame::Raised + + + - - - - - url - - - - - - - + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + + + + + + + + + + url* + + + + + + + + + + + + + + + + + encoding* + + + + + + + + + utf-8 + + + + + + + + + + + + + + + mimetype* + + + + + + + + application/json; charset=UTF-8 + + + + + + + + + + - + + - map + map* + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + @@ -121,7 +207,7 @@ - attribution + attribution* @@ -131,79 +217,316 @@ - url + url* + + - - - - - gzip - - - - - - - pretty print - - - - - - - admin - - - - - - - cors - - - - + + + logging* + + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + + + + + + + + level* + + + + + + + + + + + + + + + logfile + + + + + + + + + + + + 📂 + + + + + + + + + 50 + 100 + + + + + + + + + + + logformat + + + + + + + + + + + + + + + dateformat + + + + + + + + + + + + + + + rotation + + + false + + + + + + + + + + Qt::ScrollBarAlwaysOff + + + + 1000 + 22 + + + + QAbstractItemView::NoEditTriggers + + + false + + + + + + + + + + - - - - QFrame::StyledPanel - - - QFrame::Raised + + + + + + - - - + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + + + + + + + + language + + + + + + + + + - encoding + languages - - - - - utf-8 - - - + + + + + + + + + + + + Qt::Vertical + + + + 20 + 10 + + + + + + + + + + en-US + + + + + en-GB + + + + + fr-CA + + + + + fr-FR + + + + + pt-PT + + + + + + + + + + Add + + + + + + + + + + + + + + Qt::Vertical + + + + 20 + 10 + + + + + + + + + + + 1000 + 80 + + + + + + + + Delete Selected + + + + + + + + - + limits + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + @@ -231,7 +554,7 @@ - On Exceed + on exceed @@ -262,44 +585,82 @@ + + + + + max_distance_x + + + false + + + + + + + false + + + + + + + + max_distance_y + + + false + + + + + + + false + + + + + + + + max_distance_units + + + false + + + + + + + false + + + + - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - - - mimetype - - - - - - - - application/json; charset=UTF-8 - - - - - - - + - + templates - + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + @@ -367,168 +728,238 @@ - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - - - languages - - - - - - - - - 1000 - 100 - - - - - QAbstractItemView::MultiSelection - - - - en-US - - - - - en-GB - - - - - fr-CA - - - - - fr-FR - - - - - pt-PT - - - - - - - - + - - logging - - - + + + + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + + + - + - level + admin - - - - - - + + + + + + - + - logfile + gzip - - - - - - - - - 📂 - - - - - - - - - 50 - 100 - - + + + + - - + + - + - + - logformat + pretty print - - - - - - + + + + + + - + - dateformat + cors - + + + + + + + + + + + + ogc_schemas_location + + + false + + + + - + + + false + + + + + + + icon + + + false + + + + + + + false + + + + + + + + logo + + + false + + + + + + + false + + + + + + + + locale_dir + + + false + + + + + + + false + + + + + + + + api_rules + + + false + + + + + + + + + + Qt::ScrollBarAlwaysOff + + + + 1000 + 22 + + + + QAbstractItemView::NoEditTriggers + + + false + + + + + + + + + + manager + + + false + + + + + + + + + + Qt::ScrollBarAlwaysOff + + + + 1000 + 22 + + + + QAbstractItemView::NoEditTriggers + + + false + + + + + + - - - - Qt::Vertical - - - - 20 - 40 - - - - + + @@ -539,18 +970,32 @@ + + 50 + - identification + identification* + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + - title + title* @@ -631,7 +1076,7 @@ 1000 - 80 + 200 @@ -653,7 +1098,7 @@ - description + description* @@ -734,7 +1179,7 @@ 1000 - 80 + 200 @@ -755,7 +1200,7 @@ - keywords + keywords* @@ -836,7 +1281,7 @@ 1000 - 80 + 200 @@ -881,7 +1326,7 @@ - url + url* @@ -899,14 +1344,31 @@ - license + license* + + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + + + + 800 + 150 + - name + name* @@ -936,14 +1398,31 @@ - provider + provider* + + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + + + + 800 + 150 + - name + name* @@ -970,17 +1449,34 @@ - + - contact + contact* + + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + + + + 300 + 500 + - name + name* @@ -1165,6 +1661,17 @@ select collection + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + @@ -1209,6 +1716,17 @@ collection details + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + @@ -1268,17 +1786,37 @@ collection details + + 50 + + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + + + + 400 + 150 + + - alias + alias* @@ -1290,7 +1828,7 @@ - type + type* @@ -1319,7 +1857,18 @@ - title + title* + + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + @@ -1416,11 +1965,22 @@ - + - description + description* + + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + @@ -1518,11 +2078,22 @@ - + - keywords + keywords* + + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + @@ -1584,188 +2155,58 @@ Add - - - - - - - - - - - - - - 1000 - 80 - - - - - - - - Delete Selected - - - - - - - - - - - - - - - - - - spatial extents - - - - - - - - bbox - - - - - - - - - - - - - XMin - - - - - - - -180 - - - - - - - - - - - YMin - - - - - - - -90 - - - - - - - - - - - XMax - - - - - - - 180 - - - - - - - - - - - YMax - - - - - - - 90 - - - + + - - - - - - - crs - - - - - - - - - - + - - - CRS84 - + + + + 1000 + 80 + + - - - Validate - + + + Delete Selected + - - - + - - - - + + links + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + @@ -1901,9 +2342,15 @@ + + + 200 + 0 + + - 200 + 250 300 @@ -1925,10 +2372,21 @@ - + - providers + providers* + + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + @@ -2028,7 +2486,7 @@ 1000 - 80 + 40 @@ -2048,12 +2506,175 @@ - + + + + + spatial extents* + + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + + + + + + + + bbox* + + + + + + + + + + + + + XMin + + + + + + + -180 + + + + + + + + + + + YMin + + + + + + + -90 + + + + + + + + + + + XMax + + + + + + + 180 + + + + + + + + + + + YMax + + + + + + + 90 + + + + + + + + + + + + + crs + + + + + + + + + + + + + + + + + CRS84 + + + + + + + Validate + + + + + + + + + + + + + + + + + + temporal extents + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 10px; + } + + @@ -2099,9 +2720,79 @@ + + + + + + + + + + + QGroupBox { + background-color: rgba(240, 240, 240, 1); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 5 10 5 10px; + } + + + + false + + + + + + + + linked-data + + + false + + + + + + + Qt::ScrollBarAlwaysOff + + + + 1000 + 25 + + + + QAbstractItemView::NoEditTriggers + + + + + + + - + + + + + + + + QGroupBox { + background-color: rgba(240, 240, 240, 0); /* change to your desired color */ + border: 0px solid #ffffffff; /* optional: border styling */ + border-radius: 6px; /* optional: rounded corners */ + margin-top: 1.5em; /* reserve space for the title */ + padding: 5 10 5 10px; + } + + @@ -2118,6 +2809,7 @@ + @@ -2184,6 +2876,39 @@ + + addServerLangsButton + clicked() + PygeoapiConfigDialogBase + add_server_lang() + + + 822 + 406 + + + 434 + 244 + + + + + + deleteServerLangsButton + clicked() + PygeoapiConfigDialogBase + delete_server_lang() + + + 822 + 406 + + + 434 + 244 + + + addMetadataIdTitleButton diff --git a/requirements.txt b/requirements.txt index 8392d54..79377ea 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -PyYAML==6.0.2 +PyYAML==6.0.2 \ No newline at end of file diff --git a/requirements_dev.txt b/requirements_dev.txt new file mode 100644 index 0000000..8665cf2 --- /dev/null +++ b/requirements_dev.txt @@ -0,0 +1,4 @@ +check-jsonschema==0.33.3 +PyQt5==5.15.11 +pytest-qt==4.5.0 +pytest-github-actions-annotate-failures==0.3.0 \ No newline at end of file diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/byteroad_pygeoapi-config_@a015a48_docker.config.yml b/tests/byteroad_pygeoapi-config_@a015a48_docker.config.yml new file mode 100644 index 0000000..b781ae4 --- /dev/null +++ b/tests/byteroad_pygeoapi-config_@a015a48_docker.config.yml @@ -0,0 +1,48068 @@ +server: + bind: + host: 0.0.0.0 + port: 80 + url: ${HOST_URL} + mimetype: application/json; charset=UTF-8 + encoding: utf-8 + map: + url: https://tile.openstreetmap.org/{z}/{x}/{y}.png + attribution: '© OpenStreetMap + contributors' + gzip: false + languages: + - en-US + - pt-PT + cors: true + pretty_print: true + limits: + default_items: 100 + max_items: 5000 + on_exceed: throttle + admin: false + templates: + path: /templates + static: /pygeoapi/pygeoapi/static +logging: + level: DEBUG + logfile: /tmp/pygeoapi.log +metadata: + identification: + title: + pt: Serviço OGC API da DGT + en: OGC API Service from DGT + description: + pt: Plataforma de publicação de dados abertos da DGT em OGC API + en: Plattform for publishing Open Data from DGT in OGC API + keywords: + pt: + - DGT + - dados abertos + - OGC API + - api + en: + - DGT + - OPEN DATA + - OGC API + - api + keywords_type: theme + terms_of_service: https://creativecommons.org/licenses/by/4.0/ + url: https://ogcapi.dgterritorio.gov.pt/ + license: + name: CC-BY 4.0 license + url: https://creativecommons.org/licenses/by/4.0/ + provider: + name: Direção-Geral do Território + url: https://www.dgterritorio.gov.pt/ + contact: + name: DGT + position: DGT + address: Rua Artilharia Um, 107 + city: Lisboa + stateorprovince: Administrative Area + postalcode: 1099-052 + country: Portugal + phone: (+351) 21 381 96 00 + fax: (+351) 21 381 96 00 + email: igeografica@dgterritorio.pt + url: https://www.dgterritorio.gov.pt/ + hours: Seg-Sext 08:00-17:00 + instructions: Durante as horas de serviço. + role: pointOfContact +resources: + ortos-rgb: + type: collection + title: OrtoSat 30 cm - Portugal Continental - 2023 (Cor Verdadeira) + description: 'A cobertura OrtoSat2023 é uma cobertura de ortoimagens obtidas + a partir de imagens de satélite de muito grande resolução espacial adquirida + durante o ano de 2023 sobre o território de Portugal continental. A cobertura + é composta por um mosaico equalizado e ininterrupto de imagens de satélite + ortorretificadas com uma resolução espacial de 30 cm. As imagens utilizadas + na produção do mosaico foram obtidas da constelação de satélites Pleiades-Neo + (3 & 4) durante o período de abril a outubro de 2023. Disponibilização + em cor verdadeira: RGB: Vermelho, Verde e Azul.' + keywords: + - Cor verdadeira + - Imagem de Satélite + - Deteção Remota + - Cartografia Oficial + - '2023' + - infoMapAccessService + - SMOS + - Ortoimagens + - OrtoSat2023 + - Ortoimagem + - Orto + - Ortofoto + - Ortofotos + - Ortofotomapa + - Ortofotomapas + - OrtoSat + - DGT + links: + - type: text/html + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/b2a1ca02-779b-4189-b895-85d10fff610f + title: information + hreflang: en-US + extents: + spatial: + bbox: [-10.1934, 36.7643, -5.70954, 42.2796] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + providers: + - type: map + name: WMSFacade + data: https://ortos.dgterritorio.gov.pt/wms/ortosat2023 + options: + layer: ortoSat2023-CorVerdadeira + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + ortos-irg: + type: collection + title: OrtoSat 30 cm - Portugal Continental - 2023 (Falsa Cor) + description: 'A cobertura OrtoSat2023 é uma cobertura de ortoimagens obtidas + a partir de imagens de satélite de muito grande resolução espacial adquirida + durante o ano de 2023 sobre o território de Portugal continental. A cobertura + é composta por um mosaico equalizado e ininterrupto de imagens de satélite + ortorretificadas com uma resolução espacial de 30 cm. As imagens utilizadas + na produção do mosaico foram obtidas da constelação de satélites Pleiades-Neo + (3 & 4) durante o período de abril a outubro de 2023. Disponibilização + em false cor: RGB: Infravermelho Próximo, Vermelho e Verde.' + keywords: + - Falsa cor + - Imagem de Satélite + - Deteção Remota + - Cartografia Oficial + - '2023' + - infoMapAccessService + - SMOS + - Ortoimagens + - OrtoSat2023 + - Ortoimagem + - Orto + - Ortofoto + - Ortofotos + - Ortofotomapa + - Ortofotomapas + - OrtoSat + - DGT + links: + - type: text/html + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/b2a1ca02-779b-4189-b895-85d10fff610f + title: information + hreflang: en-US + extents: + spatial: + bbox: [-10.1934, 36.7643, -5.70954, 42.2796] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + providers: + - type: map + name: WMSFacade + data: https://ortos.dgterritorio.gov.pt/wms/ortosat2023 + options: + layer: ortoSat2023-FalsaCor + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + cadastro: + type: collection + title: Cadastro Predial (Continente) + description: Parcelas Cadastrais + keywords: + - prédio + - conservação cadastral + - INSPIRECORE + - DL_72_2023 + - Cadastro Oficial + - HVD + - cadastro + - cadastro predial + - carta cadastral + - prédios cadastrados + - cadastro predial atualizado + - Base de Dados Nacional de Cadastro Predial + - BDNCP + - Direção-geral do Território + - DGT + - Geoespaciais + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/73282c48-7f23-435c-ba41-592a96470080 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.51, 36.96, -6.19, 42.15] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: feature + name: PostgreSQL + data: + host: ${REMOTE_INSPIRE_HOST} + port: ${REMOTE_INSPIRE_PORT} + dbname: ${REMOTE_INSPIRE_DB} + user: ${REMOTE_INSPIRE_USER} + password: ${REMOTE_INSPIRE_PASSWORD} + search_path: [inspire] + crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + id_field: id + table: mv_cadastralparcel_4326 + geom_field: geometry + - type: tile + name: MVT-proxy + data: http://tiles_inspire:3000/mv_cadastralparcel_4326/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + crus: + type: collection + title: CRUS Portugal Continental + description: Carta do Regime de Uso do Solo + keywords: + - Uso do Solo + - Portugal + - CRUS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.785164, 36.962833, -6.0, 42.104653] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/crus/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: crus + type: feature + crus_abrantes: + type: collection + title: CRUS ABRANTES + description: Carta do Regime de Uso do Solo - ABRANTES + keywords: + - Uso do Solo + - Portugal + - CRUS + - ABRANTES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.355506537797154, 39.23371940878929, -7.940253445660933, + 39.64678515787297] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_abrantes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_abrantes + type: feature + crus_aguiar_da_beira: + type: collection + title: CRUS AGUIAR DA BEIRA + description: Carta do Regime de Uso do Solo - AGUIAR DA BEIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - AGUIAR DA BEIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.628108604629143, 40.69030221857988, -7.421981867890634, + 40.87329007821589] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_aguiar_da_beira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_aguiar_da_beira + type: feature + crus_alandroal: + type: collection + title: CRUS ALANDROAL + description: Carta do Regime de Uso do Solo - ALANDROAL + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALANDROAL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.563669353997207, 38.430105675567226, -7.203714576673818, + 38.77406941401881] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_alandroal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_alandroal + type: feature + crus_albergaria_a_velha: + type: collection + title: CRUS ALBERGARIA-A-VELHA + description: Carta do Regime de Uso do Solo - ALBERGARIA-A-VELHA + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALBERGARIA-A-VELHA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.632433273940087, 40.60806694047952, -8.407883464618097, + 40.78084738767179] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_albergaria_a_velha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_albergaria_a_velha + type: feature + crus_albufeira: + type: collection + title: CRUS ALBUFEIRA + description: Carta do Regime de Uso do Solo - ALBUFEIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALBUFEIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.330447362359196, 37.07224675119868, -8.125169212383963, + 37.216565797757] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_albufeira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_albufeira + type: feature + crus_alcanena: + type: collection + title: CRUS ALCANENA + description: Carta do Regime de Uso do Solo - ALCANENA + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALCANENA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.764012487218281, 39.39880373541623, -8.616851788053852, + 39.562411673834575] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_alcanena/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_alcanena + type: feature + crus_alcobaca: + type: collection + title: CRUS ALCOBAÇA + description: Carta do Regime de Uso do Solo - ALCOBAÇA + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALCOBAÇA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.150251560818255, 39.38449979488635, -8.865133293328938, + 39.74120058489991] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_alcobaca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_alcobaca + type: feature + crus_alcochete: + type: collection + title: CRUS ALCOCHETE + description: Carta do Regime de Uso do Solo - ALCOCHETE + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALCOCHETE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.023905615300814, 38.67155353084673, -8.810394539620273, + 38.76171263828415] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_alcochete/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_alcochete + type: feature + crus_alcoutim: + type: collection + title: CRUS ALCOUTIM + description: Carta do Regime de Uso do Solo - ALCOUTIM + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALCOUTIM + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.896471800730499, 37.27593656731864, -7.437378347364809, + 37.52938586901699] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_alcoutim/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_alcoutim + type: feature + crus_alcacer_do_sal: + type: collection + title: CRUS ALCÁCER DO SAL + description: Carta do Regime de Uso do Solo - ALCÁCER DO SAL + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALCÁCER DO SAL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.822763901186539, 38.1783957731858, -8.129696303783712, 38.55310515046618] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_alcacer_do_sal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_alcacer_do_sal + type: feature + crus_alenquer: + type: collection + title: CRUS ALENQUER + description: Carta do Regime de Uso do Solo - ALENQUER + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALENQUER + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.163461924915728, 39.00111088337558, -8.91870659203347, 39.18918479640829] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_alenquer/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_alenquer + type: feature + crus_alfandega_da_fe: + type: collection + title: CRUS ALFÂNDEGA DA FÉ + description: Carta do Regime de Uso do Solo - ALFÂNDEGA DA FÉ + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALFÂNDEGA DA FÉ + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.069495070544342, 41.23939252253749, -6.820572711477793, + 41.47172156389993] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_alfandega_da_fe/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_alfandega_da_fe + type: feature + crus_alijo: + type: collection + title: CRUS ALIJÓ + description: Carta do Regime de Uso do Solo - ALIJÓ + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALIJÓ + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.603649236693019, 41.17967997593539, -7.362091538570184, + 41.40360213754266] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_alijo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_alijo + type: feature + crus_aljezur: + type: collection + title: CRUS ALJEZUR + description: Carta do Regime de Uso do Solo - ALJEZUR + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALJEZUR + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.91825479594794, 37.151680809501045, -8.67477112106117, 37.442048997514085] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_aljezur/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_aljezur + type: feature + crus_aljustrel: + type: collection + title: CRUS ALJUSTREL + description: Carta do Regime de Uso do Solo - ALJUSTREL + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALJUSTREL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.336185976042687, 37.780073947223705, -8.048129944570547, + 38.00027776431984] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_aljustrel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_aljustrel + type: feature + crus_almada: + type: collection + title: CRUS ALMADA + description: Carta do Regime de Uso do Solo - ALMADA + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALMADA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.263233172923622, 38.553834426318275, -9.131358844520786, + 38.68862402593324] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_almada/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_almada + type: feature + crus_almeida: + type: collection + title: CRUS ALMEIDA + description: Carta do Regime de Uso do Solo - ALMEIDA + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALMEIDA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.051338845004986, 40.47671205612679, -6.794988751631976, + 40.783716616544794] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_almeida/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_almeida + type: feature + crus_almeirim: + type: collection + title: CRUS ALMEIRIM + description: Carta do Regime de Uso do Solo - ALMEIRIM + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALMEIRIM + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.711261237643239, 39.0920156249901, -8.439407537485538, 39.24426429720628] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_almeirim/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_almeirim + type: feature + crus_almodovar: + type: collection + title: CRUS ALMODÔVAR + description: Carta do Regime de Uso do Solo - ALMODÔVAR + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALMODÔVAR + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.277923002060588, 37.318852946055365, -7.887249333617113, + 37.630853141486185] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_almodovar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_almodovar + type: feature + crus_alpiarca: + type: collection + title: CRUS ALPIARÇA + description: Carta do Regime de Uso do Solo - ALPIARÇA + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALPIARÇA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.633891541831469, 39.171474433951225, -8.492522671967143, + 39.30789040500475] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_alpiarca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_alpiarca + type: feature + crus_alter_do_chao: + type: collection + title: CRUS ALTER DO CHÃO + description: Carta do Regime de Uso do Solo - ALTER DO CHÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALTER DO CHÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.878753197859661, 39.11588993555806, -7.521699533637258, + 39.33108669926911] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_alter_do_chao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_alter_do_chao + type: feature + crus_alvaiazere: + type: collection + title: CRUS ALVAIÁZERE + description: Carta do Regime de Uso do Solo - ALVAIÁZERE + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALVAIÁZERE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.48439321190135, 39.731102449413804, -8.300682126349955, + 39.90087787762721] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_alvaiazere/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_alvaiazere + type: feature + crus_alvito: + type: collection + title: CRUS ALVITO + description: Carta do Regime de Uso do Solo - ALVITO + keywords: + - Uso do Solo + - Portugal + - CRUS + - ALVITO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.16436867642556, 38.15055957201908, -7.926687506550644, 38.3293469854932] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_alvito/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_alvito + type: feature + crus_amadora: + type: collection + title: CRUS AMADORA + description: Carta do Regime de Uso do Solo - AMADORA + keywords: + - Uso do Solo + - Portugal + - CRUS + - AMADORA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.264814375531818, 38.722185502726695, -9.197813677295777, + 38.79689085463952] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_amadora/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_amadora + type: feature + crus_amarante: + type: collection + title: CRUS AMARANTE + description: Carta do Regime de Uso do Solo - AMARANTE + keywords: + - Uso do Solo + - Portugal + - CRUS + - AMARANTE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.216313422395421, 41.18944141222842, -7.894046908003661, + 41.375195804088655] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_amarante/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_amarante + type: feature + crus_amares: + type: collection + title: CRUS AMARES + description: Carta do Regime de Uso do Solo - AMARES + keywords: + - Uso do Solo + - Portugal + - CRUS + - AMARES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.433862825489912, 41.6032653482657, -8.24194933914218, 41.700195849701295] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_amares/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_amares + type: feature + crus_anadia: + type: collection + title: CRUS ANADIA + description: Carta do Regime de Uso do Solo - ANADIA + keywords: + - Uso do Solo + - Portugal + - CRUS + - ANADIA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.579819001371419, 40.39535981086129, -8.311494715427626, + 40.51252619178295] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_anadia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_anadia + type: feature + crus_ansiao: + type: collection + title: CRUS ANSIÃO + description: Carta do Regime de Uso do Solo - ANSIÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - ANSIÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.538812129848104, 39.85555893747872, -8.3347893431352, 40.02672714370311] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_ansiao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_ansiao + type: feature + crus_arcos_de_valdevez: + type: collection + title: CRUS ARCOS DE VALDEVEZ + description: Carta do Regime de Uso do Solo - ARCOS DE VALDEVEZ + keywords: + - Uso do Solo + - Portugal + - CRUS + - ARCOS DE VALDEVEZ + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.531023495694516, 41.790751131590085, -8.191725123058552, + 42.01867911011902] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_arcos_de_valdevez/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_arcos_de_valdevez + type: feature + crus_arganil: + type: collection + title: CRUS ARGANIL + description: Carta do Regime de Uso do Solo - ARGANIL + keywords: + - Uso do Solo + - Portugal + - CRUS + - ARGANIL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.207357045651218, 40.13631253247373, -7.782391510883015, + 40.30413090366916] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_arganil/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_arganil + type: feature + crus_armamar: + type: collection + title: CRUS ARMAMAR + description: Carta do Regime de Uso do Solo - ARMAMAR + keywords: + - Uso do Solo + - Portugal + - CRUS + - ARMAMAR + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.757791564111367, 41.01902594705662, -7.616007156551253, + 41.163040176220385] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_armamar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_armamar + type: feature + crus_arouca: + type: collection + title: CRUS AROUCA + description: Carta do Regime de Uso do Solo - AROUCA + keywords: + - Uso do Solo + - Portugal + - CRUS + - AROUCA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.433672608938945, 40.84167692447501, -8.086605584119008, + 41.01472497023451] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_arouca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_arouca + type: feature + crus_arraiolos: + type: collection + title: CRUS ARRAIOLOS + description: Carta do Regime de Uso do Solo - ARRAIOLOS + keywords: + - Uso do Solo + - Portugal + - CRUS + - ARRAIOLOS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.153284571176842, 38.62798385301721, -7.6741454564055, 38.932028716406286] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_arraiolos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_arraiolos + type: feature + crus_arronches: + type: collection + title: CRUS ARRONCHES + description: Carta do Regime de Uso do Solo - ARRONCHES + keywords: + - Uso do Solo + - Portugal + - CRUS + - ARRONCHES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.390067740703468, 39.005976917855136, -7.110342721813558, + 39.2082551151088] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_arronches/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_arronches + type: feature + crus_arruda_dos_vinhos: + type: collection + title: CRUS ARRUDA DOS VINHOS + description: Carta do Regime de Uso do Solo - ARRUDA DOS VINHOS + keywords: + - Uso do Solo + - Portugal + - CRUS + - ARRUDA DOS VINHOS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.17889787601394, 38.92170915879745, -9.02133281462681, 39.02902316902331] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_arruda_dos_vinhos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_arruda_dos_vinhos + type: feature + crus_aveiro: + type: collection + title: CRUS AVEIRO + description: Carta do Regime de Uso do Solo - AVEIRO + keywords: + - Uso do Solo + - Portugal + - CRUS + - AVEIRO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.763645893606967, 40.52849121315648, -8.520964871584738, + 40.72755360206331] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_aveiro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_aveiro + type: feature + crus_avis: + type: collection + title: CRUS AVIS + description: Carta do Regime de Uso do Solo - AVIS + keywords: + - Uso do Solo + - Portugal + - CRUS + - AVIS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.152514675169062, 38.94078409611122, -7.696813012649595, + 39.21794070878312] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_avis/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_avis + type: feature + crus_azambuja: + type: collection + title: CRUS AZAMBUJA + description: Carta do Regime de Uso do Solo - AZAMBUJA + keywords: + - Uso do Solo + - Portugal + - CRUS + - AZAMBUJA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.003986994588193, 39.00633721502545, -8.78059991135776, 39.25546246167569] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_azambuja/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_azambuja + type: feature + crus_baiao: + type: collection + title: CRUS BAIÃO + description: Carta do Regime de Uso do Solo - BAIÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - BAIÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.115466380363568, 41.08958483778659, -7.875579307601082, + 41.24897751739833] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_baiao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_baiao + type: feature + crus_barcelos: + type: collection + title: CRUS BARCELOS + description: Carta do Regime de Uso do Solo - BARCELOS + keywords: + - Uso do Solo + - Portugal + - CRUS + - BARCELOS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.745894438661095, 41.41404662991236, -8.494542410122897, + 41.65437971353199] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_barcelos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_barcelos + type: feature + crus_barrancos: + type: collection + title: CRUS BARRANCOS + description: Carta do Regime de Uso do Solo - BARRANCOS + keywords: + - Uso do Solo + - Portugal + - CRUS + - BARRANCOS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.210887389741972, 38.088070311424204, -6.932009844033444, + 38.2208308844562] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_barrancos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_barrancos + type: feature + crus_barreiro: + type: collection + title: CRUS BARREIRO + description: Carta do Regime de Uso do Solo - BARREIRO + keywords: + - Uso do Solo + - Portugal + - CRUS + - BARREIRO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.098310557852685, 38.577578890426395, -8.997121857236916, + 38.69061058463149] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_barreiro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_barreiro + type: feature + crus_batalha: + type: collection + title: CRUS BATALHA + description: Carta do Regime de Uso do Solo - BATALHA + keywords: + - Uso do Solo + - Portugal + - CRUS + - BATALHA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.873799325186534, 39.550868062481136, -8.671135664517175, + 39.69552914319707] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_batalha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_batalha + type: feature + crus_beja: + type: collection + title: CRUS BEJA + description: Carta do Regime de Uso do Solo - BEJA + keywords: + - Uso do Solo + - Portugal + - CRUS + - BEJA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.083152571308505, 37.77646058859232, -7.632630609948576, + 38.162586717055966] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_beja/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_beja + type: feature + crus_belmonte: + type: collection + title: CRUS BELMONTE + description: Carta do Regime de Uso do Solo - BELMONTE + keywords: + - Uso do Solo + - Portugal + - CRUS + - BELMONTE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.393090867408711, 40.24461238709537, -7.269704520998933, + 40.4161163810433] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_belmonte/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_belmonte + type: feature + crus_benavente: + type: collection + title: CRUS BENAVENTE + description: Carta do Regime de Uso do Solo - BENAVENTE + keywords: + - Uso do Solo + - Portugal + - CRUS + - BENAVENTE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.968466032880697, 38.731490410905735, -8.652794474372394, + 39.031952856542986] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_benavente/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_benavente + type: feature + crus_bombarral: + type: collection + title: CRUS BOMBARRAL + description: Carta do Regime de Uso do Solo - BOMBARRAL + keywords: + - Uso do Solo + - Portugal + - CRUS + - BOMBARRAL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.23899084579818, 39.211577315765716, -9.08478451122057, 39.33824297219391] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_bombarral/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_bombarral + type: feature + crus_borba: + type: collection + title: CRUS BORBA + description: Carta do Regime de Uso do Solo - BORBA + keywords: + - Uso do Solo + - Portugal + - CRUS + - BORBA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.563897694275917, 38.71308631376959, -7.39059227905217, 38.926922944561156] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_borba/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_borba + type: feature + crus_boticas: + type: collection + title: CRUS BOTICAS + description: Carta do Regime de Uso do Solo - BOTICAS + keywords: + - Uso do Solo + - Portugal + - CRUS + - BOTICAS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.917863234372896, 41.57850107791906, -7.562718537138915, + 41.795305668643635] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_boticas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_boticas + type: feature + crus_braga: + type: collection + title: CRUS BRAGA + description: Carta do Regime de Uso do Solo - BRAGA + keywords: + - Uso do Solo + - Portugal + - CRUS + - BRAGA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.52608428003703, 41.46373508543125, -8.295467455726325, 41.61720804911055] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_braga/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_braga + type: feature + crus_braganca: + type: collection + title: CRUS BRAGANÇA + description: Carta do Regime de Uso do Solo - BRAGANÇA + keywords: + - Uso do Solo + - Portugal + - CRUS + - BRAGANÇA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.954460473171428, 41.53458922956886, -6.515603130194762, + 41.99248238977132] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_braganca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_braganca + type: feature + crus_cabeceiras_de_basto: + type: collection + title: CRUS CABECEIRAS DE BASTO + description: Carta do Regime de Uso do Solo - CABECEIRAS DE BASTO + keywords: + - Uso do Solo + - Portugal + - CRUS + - CABECEIRAS DE BASTO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.06884819611581, 41.4466393109636, -7.810620459042933, 41.6168437784582] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_cabeceiras_de_basto/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_cabeceiras_de_basto + type: feature + crus_cadaval: + type: collection + title: CRUS CADAVAL + description: Carta do Regime de Uso do Solo - CADAVAL + keywords: + - Uso do Solo + - Portugal + - CRUS + - CADAVAL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.178499899134767, 39.167479849320785, -8.975746210452808, + 39.310890839103116] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_cadaval/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_cadaval + type: feature + crus_caldas_da_rainha: + type: collection + title: CRUS CALDAS DA RAINHA + description: Carta do Regime de Uso do Solo - CALDAS DA RAINHA + keywords: + - Uso do Solo + - Portugal + - CRUS + - CALDAS DA RAINHA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.238770845691883, 39.29224610291117, -8.982300038855701, + 39.50976200257982] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_caldas_da_rainha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_caldas_da_rainha + type: feature + crus_caminha: + type: collection + title: CRUS CAMINHA + description: Carta do Regime de Uso do Solo - CAMINHA + keywords: + - Uso do Solo + - Portugal + - CRUS + - CAMINHA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.876943069974168, 41.78074588893507, -8.670102000009349, + 41.917369316077256] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_caminha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_caminha + type: feature + crus_campo_maior: + type: collection + title: CRUS CAMPO MAIOR + description: Carta do Regime de Uso do Solo - CAMPO MAIOR + keywords: + - Uso do Solo + - Portugal + - CRUS + - CAMPO MAIOR + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.149356675934471, 38.905853858596565, -6.951130276130263, + 39.11838986164331] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_campo_maior/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_campo_maior + type: feature + crus_cantanhede: + type: collection + title: CRUS CANTANHEDE + description: Carta do Regime de Uso do Solo - CANTANHEDE + keywords: + - Uso do Solo + - Portugal + - CRUS + - CANTANHEDE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.846326487846767, 40.24529868063001, -8.480992052656033, + 40.48558279646009] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_cantanhede/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_cantanhede + type: feature + crus_carrazeda_de_ansiaes: + type: collection + title: CRUS CARRAZEDA DE ANSIÃES + description: Carta do Regime de Uso do Solo - CARRAZEDA DE ANSIÃES + keywords: + - Uso do Solo + - Portugal + - CRUS + - CARRAZEDA DE ANSIÃES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.43189206794522, 41.13549016855065, -7.186540531209516, 41.33852055499836] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_carrazeda_de_ansiaes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_carrazeda_de_ansiaes + type: feature + crus_carregal_do_sal: + type: collection + title: CRUS CARREGAL DO SAL + description: Carta do Regime de Uso do Solo - CARREGAL DO SAL + keywords: + - Uso do Solo + - Portugal + - CRUS + - CARREGAL DO SAL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.068526966418787, 40.3805809418027, -7.903101985957733, 40.53807021475234] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_carregal_do_sal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_carregal_do_sal + type: feature + crus_cartaxo: + type: collection + title: CRUS CARTAXO + description: Carta do Regime de Uso do Solo - CARTAXO + keywords: + - Uso do Solo + - Portugal + - CRUS + - CARTAXO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.913271935358871, 39.0576591161731, -8.683285377466152, 39.211726927959006] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_cartaxo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_cartaxo + type: feature + crus_cascais: + type: collection + title: CRUS CASCAIS + description: Carta do Regime de Uso do Solo - CASCAIS + keywords: + - Uso do Solo + - Portugal + - CRUS + - CASCAIS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.486554329682471, 38.675885844488526, -9.308073176583248, + 38.76899273953717] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_cascais/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_cascais + type: feature + crus_castanheira_de_pera: + type: collection + title: CRUS CASTANHEIRA DE PÊRA + description: Carta do Regime de Uso do Solo - CASTANHEIRA DE PÊRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - CASTANHEIRA DE PÊRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.241456358817173, 39.945946966248265, -8.142631357035343, + 40.089736028206225] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_castanheira_de_pera/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_castanheira_de_pera + type: feature + crus_castelo_branco: + type: collection + title: CRUS CASTELO BRANCO + description: Carta do Regime de Uso do Solo - CASTELO BRANCO + keywords: + - Uso do Solo + - Portugal + - CRUS + - CASTELO BRANCO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.849515113290583, 39.64083732135808, -7.178661634353529, + 40.083664402245205] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_castelo_branco/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_castelo_branco + type: feature + crus_castelo_de_paiva: + type: collection + title: CRUS CASTELO DE PAIVA + description: Carta do Regime de Uso do Solo - CASTELO DE PAIVA + keywords: + - Uso do Solo + - Portugal + - CRUS + - CASTELO DE PAIVA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.400922800073468, 40.96225874301661, -8.229954699720706, + 41.08015455925195] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_castelo_de_paiva/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_castelo_de_paiva + type: feature + crus_castelo_de_vide: + type: collection + title: CRUS CASTELO DE VIDE + description: Carta do Regime de Uso do Solo - CASTELO DE VIDE + keywords: + - Uso do Solo + - Portugal + - CRUS + - CASTELO DE VIDE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.598169585601263, 39.3676570365565, -7.37867160322347, 39.58417750148938] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_castelo_de_vide/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_castelo_de_vide + type: feature + crus_castro_daire: + type: collection + title: CRUS CASTRO DAIRE + description: Carta do Regime de Uso do Solo - CASTRO DAIRE + keywords: + - Uso do Solo + - Portugal + - CRUS + - CASTRO DAIRE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.132539162945152, 40.78706740938405, -7.752538131604695, + 41.026563015474515] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_castro_daire/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_castro_daire + type: feature + crus_castro_marim: + type: collection + title: CRUS CASTRO MARIM + description: Carta do Regime de Uso do Solo - CASTRO MARIM + keywords: + - Uso do Solo + - Portugal + - CRUS + - CASTRO MARIM + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.63640002688981, 37.167521139173076, -7.412659969605094, + 37.394575346771475] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_castro_marim/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_castro_marim + type: feature + crus_castro_verde: + type: collection + title: CRUS CASTRO VERDE + description: Carta do Regime de Uso do Solo - CASTRO VERDE + keywords: + - Uso do Solo + - Portugal + - CRUS + - CASTRO VERDE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.245887608000608, 37.56046069117403, -7.848562992315297, + 37.827255144428456] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_castro_verde/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_castro_verde + type: feature + crus_celorico_da_beira: + type: collection + title: CRUS CELORICO DA BEIRA + description: Carta do Regime de Uso do Solo - CELORICO DA BEIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - CELORICO DA BEIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.511260933548771, 40.515184056072655, -7.255361594386478, + 40.709286851111834] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_celorico_da_beira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_celorico_da_beira + type: feature + crus_celorico_de_basto: + type: collection + title: CRUS CELORICO DE BASTO + description: Carta do Regime de Uso do Solo - CELORICO DE BASTO + keywords: + - Uso do Solo + - Portugal + - CRUS + - CELORICO DE BASTO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.146567612187248, 41.31881363989218, -7.936892217605889, + 41.487954475175904] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_celorico_de_basto/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_celorico_de_basto + type: feature + crus_chamusca: + type: collection + title: CRUS CHAMUSCA + description: Carta do Regime de Uso do Solo - CHAMUSCA + keywords: + - Uso do Solo + - Portugal + - CRUS + - CHAMUSCA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.578697710063652, 39.07115954768697, -8.172693984294717, + 39.462962502830244] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_chamusca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_chamusca + type: feature + crus_chaves: + type: collection + title: CRUS CHAVES + description: Carta do Regime de Uso do Solo - CHAVES + keywords: + - Uso do Solo + - Portugal + - CRUS + - CHAVES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.620714022861206, 41.58154883507461, -7.193067035653278, + 41.88014513846801] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_chaves/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_chaves + type: feature + crus_cinfaes: + type: collection + title: CRUS CINFÃES + description: Carta do Regime de Uso do Solo - CINFÃES + keywords: + - Uso do Solo + - Portugal + - CRUS + - CINFÃES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.26399206260492, 40.96473684463322, -7.94994536251643, 41.10081956137203] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_cinfaes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_cinfaes + type: feature + crus_coimbra: + type: collection + title: CRUS COIMBRA + description: Carta do Regime de Uso do Solo - COIMBRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - COIMBRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.591676041814813, 40.0989227583647, -8.312903434170844, 40.35201458049656] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_coimbra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_coimbra + type: feature + crus_condeixa_a_nova: + type: collection + title: CRUS CONDEIXA-A-NOVA + description: Carta do Regime de Uso do Solo - CONDEIXA-A-NOVA + keywords: + - Uso do Solo + - Portugal + - CRUS + - CONDEIXA-A-NOVA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.591445753637034, 40.02977272571664, -8.398198870142126, + 40.17855290571008] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_condeixa_a_nova/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_condeixa_a_nova + type: feature + crus_constancia: + type: collection + title: CRUS CONSTÃNCIA + description: Carta do Regime de Uso do Solo - CONSTÃNCIA + keywords: + - Uso do Solo + - Portugal + - CRUS + - CONSTÃNCIA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.344522079110648, 39.33732035691411, -8.240817250428611, + 39.50699952556342] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_constancia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_constancia + type: feature + crus_coruche: + type: collection + title: CRUS CORUCHE + description: Carta do Regime de Uso do Solo - CORUCHE + keywords: + - Uso do Solo + - Portugal + - CRUS + - CORUCHE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.729501713964433, 38.76367530869903, -8.124311035361934, + 39.110105424052875] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_coruche/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_coruche + type: feature + crus_covilha: + type: collection + title: CRUS COVILHÃ + description: Carta do Regime de Uso do Solo - COVILHÃ + keywords: + - Uso do Solo + - Portugal + - CRUS + - COVILHÃ + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.808851068092421, 40.13000836049746, -7.344052836534176, + 40.40185557019528] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_covilha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_covilha + type: feature + crus_crato: + type: collection + title: CRUS CRATO + description: Carta do Regime de Uso do Solo - CRATO + keywords: + - Uso do Solo + - Portugal + - CRUS + - CRATO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.901068369591815, 39.176952972809104, -7.466104862682236, + 39.43825679757583] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_crato/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_crato + type: feature + crus_cuba: + type: collection + title: CRUS CUBA + description: Carta do Regime de Uso do Solo - CUBA + keywords: + - Uso do Solo + - Portugal + - CRUS + - CUBA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.003278400721252, 38.10592408814601, -7.836866775988969, + 38.30525311692163] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_cuba/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_cuba + type: feature + crus_elvas: + type: collection + title: CRUS ELVAS + description: Carta do Regime de Uso do Solo - ELVAS + keywords: + - Uso do Solo + - Portugal + - CRUS + - ELVAS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.424229744563434, 38.75167785453794, -7.032880695770581, + 39.05722253020602] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_elvas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_elvas + type: feature + crus_entroncamento: + type: collection + title: CRUS ENTRONCAMENTO + description: Carta do Regime de Uso do Solo - ENTRONCAMENTO + keywords: + - Uso do Solo + - Portugal + - CRUS + - ENTRONCAMENTO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.499718021150587, 39.439490223866066, -8.455790906555533, + 39.49187006830666] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_entroncamento/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_entroncamento + type: feature + crus_espinho: + type: collection + title: CRUS ESPINHO + description: Carta do Regime de Uso do Solo - ESPINHO + keywords: + - Uso do Solo + - Portugal + - CRUS + - ESPINHO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.653119338556266, 40.96477823955712, -8.593622955061633, + 41.02576645984952] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_espinho/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_espinho + type: feature + crus_esposende: + type: collection + title: CRUS ESPOSENDE + description: Carta do Regime de Uso do Solo - ESPOSENDE + keywords: + - Uso do Solo + - Portugal + - CRUS + - ESPOSENDE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.811569642788577, 41.466112580285994, -8.700679916761931, + 41.6249428137145] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_esposende/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_esposende + type: feature + crus_estarreja: + type: collection + title: CRUS ESTARREJA + description: Carta do Regime de Uso do Solo - ESTARREJA + keywords: + - Uso do Solo + - Portugal + - CRUS + - ESTARREJA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.667180323448068, 40.68880385544446, -8.511389544307237, + 40.83370259035341] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_estarreja/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_estarreja + type: feature + crus_estremoz: + type: collection + title: CRUS ESTREMOZ + description: Carta do Regime de Uso do Solo - ESTREMOZ + keywords: + - Uso do Solo + - Portugal + - CRUS + - ESTREMOZ + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.799951044826646, 38.684849444725465, -7.452713872903272, + 39.008423914333804] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_estremoz/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_estremoz + type: feature + crus_fafe: + type: collection + title: CRUS FAFE + description: Carta do Regime de Uso do Solo - FAFE + keywords: + - Uso do Solo + - Portugal + - CRUS + - FAFE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.247960909235788, 41.37283004863856, -8.055186268337858, + 41.56594691018742] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_fafe/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_fafe + type: feature + crus_faro: + type: collection + title: CRUS FARO + description: Carta do Regime de Uso do Solo - FARO + keywords: + - Uso do Solo + - Portugal + - CRUS + - FARO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.006489496367067, 36.96171046617747, -7.809354462736312, + 37.14578117909136] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_faro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_faro + type: feature + crus_felgueiras: + type: collection + title: CRUS FELGUEIRAS + description: Carta do Regime de Uso do Solo - FELGUEIRAS + keywords: + - Uso do Solo + - Portugal + - CRUS + - FELGUEIRAS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.280115364278988, 41.29391230772578, -8.109617131034849, + 41.41187337595798] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_felgueiras/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_felgueiras + type: feature + crus_ferreira_do_alentejo: + type: collection + title: CRUS FERREIRA DO ALENTEJO + description: Carta do Regime de Uso do Solo - FERREIRA DO ALENTEJO + keywords: + - Uso do Solo + - Portugal + - CRUS + - FERREIRA DO ALENTEJO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.40955803710593, 37.964753821861706, -7.977497066764646, + 38.21938586357011] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_ferreira_do_alentejo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_ferreira_do_alentejo + type: feature + crus_ferreira_do_zezere: + type: collection + title: CRUS FERREIRA DO ZÊZERE + description: Carta do Regime de Uso do Solo - FERREIRA DO ZÊZERE + keywords: + - Uso do Solo + - Portugal + - CRUS + - FERREIRA DO ZÊZERE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.432607370510867, 39.644262948484915, -8.225415071078151, + 39.80349302389478] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_ferreira_do_zezere/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_ferreira_do_zezere + type: feature + crus_figueira_da_foz: + type: collection + title: CRUS FIGUEIRA DA FOZ + description: Carta do Regime de Uso do Solo - FIGUEIRA DA FOZ + keywords: + - Uso do Solo + - Portugal + - CRUS + - FIGUEIRA DA FOZ + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.909243668633337, 40.01255866382254, -8.699875499530249, + 40.32688087134746] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_figueira_da_foz/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_figueira_da_foz + type: feature + crus_figueira_de_castelo_rodrigo: + type: collection + title: CRUS FIGUEIRA DE CASTELO RODRIGO + description: Carta do Regime de Uso do Solo - FIGUEIRA DE CASTELO RODRIGO + keywords: + - Uso do Solo + - Portugal + - CRUS + - FIGUEIRA DE CASTELO RODRIGO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.121867855387164, 40.748690937660555, -6.800190101382974, + 41.03618935666957] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_figueira_de_castelo_rodrigo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_figueira_de_castelo_rodrigo + type: feature + crus_figueiro_dos_vinhos: + type: collection + title: CRUS FIGUEIRÓ DOS VINHOS + description: Carta do Regime de Uso do Solo - FIGUEIRÓ DOS VINHOS + keywords: + - Uso do Solo + - Portugal + - CRUS + - FIGUEIRÓ DOS VINHOS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.363975322148107, 39.79321383621284, -8.209749042711367, + 40.06733769569208] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_figueiro_dos_vinhos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_figueiro_dos_vinhos + type: feature + crus_fornos_de_algodres: + type: collection + title: CRUS FORNOS DE ALGODRES + description: Carta do Regime de Uso do Solo - FORNOS DE ALGODRES + keywords: + - Uso do Solo + - Portugal + - CRUS + - FORNOS DE ALGODRES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.58933351180946, 40.55759315911869, -7.419851017625396, 40.7580917130898] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_fornos_de_algodres/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_fornos_de_algodres + type: feature + crus_freixo_de_espada_a_cinta: + type: collection + title: CRUS FREIXO DE ESPADA À CINTA + description: Carta do Regime de Uso do Solo - FREIXO DE ESPADA À CINTA + keywords: + - Uso do Solo + - Portugal + - CRUS + - FREIXO DE ESPADA À CINTA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.995744466018637, 41.023829417036374, -6.688239844156856, + 41.24844223629064] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_freixo_de_espada_a_cinta/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_freixo_de_espada_a_cinta + type: feature + crus_fronteira: + type: collection + title: CRUS FRONTEIRA + description: Carta do Regime de Uso do Solo - FRONTEIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - FRONTEIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.772285681759447, 38.990896912555876, -7.512149987308582, + 39.16741658795689] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_fronteira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_fronteira + type: feature + crus_fundao: + type: collection + title: CRUS FUNDÃO + description: Carta do Regime de Uso do Solo - FUNDÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - FUNDÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.817282551413947, 39.97766549178924, -7.251902665534824, + 40.2723549190412] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_fundao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_fundao + type: feature + crus_gaviao: + type: collection + title: CRUS GAVIÃO + description: Carta do Regime de Uso do Solo - GAVIÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - GAVIÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.008906179112316, 39.333959094174055, -7.745445453902618, + 39.557372018124646] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_gaviao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_gaviao + type: feature + crus_golega: + type: collection + title: CRUS GOLEGÃ + description: Carta do Regime de Uso do Solo - GOLEGÃ + keywords: + - Uso do Solo + - Portugal + - CRUS + - GOLEGÃ + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.578332558107425, 39.319039776693906, -8.436617534056248, + 39.45728253628873] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_golega/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_golega + type: feature + crus_gondomar: + type: collection + title: CRUS GONDOMAR + description: Carta do Regime de Uso do Solo - GONDOMAR + keywords: + - Uso do Solo + - Portugal + - CRUS + - GONDOMAR + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.583344466682533, 41.00137906438425, -8.372571752882111, + 41.2033179135688] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_gondomar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_gondomar + type: feature + crus_gouveia: + type: collection + title: CRUS GOUVEIA + description: Carta do Regime de Uso do Solo - GOUVEIA + keywords: + - Uso do Solo + - Portugal + - CRUS + - GOUVEIA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.742119768330605, 40.387552347636486, -7.434556823506523, + 40.608170298177] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_gouveia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_gouveia + type: feature + crus_grandola: + type: collection + title: CRUS GRÂNDOLA + description: Carta do Regime de Uso do Solo - GRÂNDOLA + keywords: + - Uso do Solo + - Portugal + - CRUS + - GRÂNDOLA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.912867412866042, 38.02345207954086, -8.238175730955806, + 38.50534335324829] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_grandola/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_grandola + type: feature + crus_guarda: + type: collection + title: CRUS GUARDA + description: Carta do Regime de Uso do Solo - GUARDA + keywords: + - Uso do Solo + - Portugal + - CRUS + - GUARDA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.468298306578209, 40.380242897399874, -7.032771151563311, + 40.70107941822719] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_guarda/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_guarda + type: feature + crus_guimaraes: + type: collection + title: CRUS GUIMARÃES + description: Carta do Regime de Uso do Solo - GUIMARÃES + keywords: + - Uso do Solo + - Portugal + - CRUS + - GUIMARÃES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.435678586247315, 41.36185739762154, -8.18831918613019, 41.569257960806176] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_guimaraes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_guimaraes + type: feature + crus_gois: + type: collection + title: CRUS GÓIS + description: Carta do Regime de Uso do Solo - GÓIS + keywords: + - Uso do Solo + - Portugal + - CRUS + - GÓIS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.186952463713194, 39.960225236202724, -7.948896084360702, + 40.212669198524964] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_gois/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_gois + type: feature + crus_idanha_a_nova: + type: collection + title: CRUS IDANHA-A-NOVA + description: Carta do Regime de Uso do Solo - IDANHA-A-NOVA + keywords: + - Uso do Solo + - Portugal + - CRUS + - IDANHA-A-NOVA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.361958281957137, 39.65319495712812, -6.863442281702897, + 40.10090401970529] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_idanha_a_nova/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_idanha_a_nova + type: feature + crus_lagoa: + type: collection + title: CRUS LAGOA + description: Carta do Regime de Uso do Solo - LAGOA + keywords: + - Uso do Solo + - Portugal + - CRUS + - LAGOA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.53241476358127, 37.08532768814422, -8.369361466448646, 37.17988328517316] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_lagoa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_lagoa + type: feature + crus_lagos: + type: collection + title: CRUS LAGOS + description: Carta do Regime de Uso do Solo - LAGOS + keywords: + - Uso do Solo + - Portugal + - CRUS + - LAGOS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.853213034312487, 37.071222056978065, -8.619150111272058, + 37.23502306703313] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_lagos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_lagos + type: feature + crus_lamego: + type: collection + title: CRUS LAMEGO + description: Carta do Regime de Uso do Solo - LAMEGO + keywords: + - Uso do Solo + - Portugal + - CRUS + - LAMEGO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.915681200456219, 40.981504010711674, -7.72996610014012, + 41.16186692836913] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_lamego/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_lamego + type: feature + crus_leiria: + type: collection + title: CRUS LEIRIA + description: Carta do Regime de Uso do Solo - LEIRIA + keywords: + - Uso do Solo + - Portugal + - CRUS + - LEIRIA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.968165905729249, 39.63687445010815, -8.62333534265366, 39.96542640392656] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_leiria/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_leiria + type: feature + crus_lisboa: + type: collection + title: CRUS LISBOA + description: Carta do Regime de Uso do Solo - LISBOA + keywords: + - Uso do Solo + - Portugal + - CRUS + - LISBOA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.237942948162608, 38.68003265082985, -9.086332774853602, + 38.79675969109195] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_lisboa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_lisboa + type: feature + crus_loule: + type: collection + title: CRUS LOULÉ + description: Carta do Regime de Uso do Solo - LOULÉ + keywords: + - Uso do Solo + - Portugal + - CRUS + - LOULÉ + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.231794361049737, 37.01015418912471, -7.878529170215205, + 37.41819635645363] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_loule/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_loule + type: feature + crus_loures: + type: collection + title: CRUS LOURES + description: Carta do Regime de Uso do Solo - LOURES + keywords: + - Uso do Solo + - Portugal + - CRUS + - LOURES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.246001099147227, 38.774805355759604, -9.068755625546652, + 38.940913766183705] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_loures/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_loures + type: feature + crus_lourinha: + type: collection + title: CRUS LOURINHÃ + description: Carta do Regime de Uso do Solo - LOURINHÃ + keywords: + - Uso do Solo + - Portugal + - CRUS + - LOURINHÃ + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.35160733698339, 39.17449866905016, -9.175870271792286, 39.31772866276775] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_lourinha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_lourinha + type: feature + crus_lousada: + type: collection + title: CRUS LOUSADA + description: Carta do Regime de Uso do Solo - LOUSADA + keywords: + - Uso do Solo + - Portugal + - CRUS + - LOUSADA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.339713458892982, 41.230839541692305, -8.19148021451712, + 41.35128698628559] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_lousada/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_lousada + type: feature + crus_lousa: + type: collection + title: CRUS LOUSÃ + description: Carta do Regime de Uso do Solo - LOUSÃ + keywords: + - Uso do Solo + - Portugal + - CRUS + - LOUSÃ + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.311468817344075, 40.05208071145876, -8.151526896907514, + 40.20554811334298] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_lousa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_lousa + type: feature + crus_macedo_de_cavaleiros: + type: collection + title: CRUS MACEDO DE CAVALEIROS + description: Carta do Regime de Uso do Solo - MACEDO DE CAVALEIROS + keywords: + - Uso do Solo + - Portugal + - CRUS + - MACEDO DE CAVALEIROS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.129549529313953, 41.40368678972278, -6.6585553663019, 41.71134202781167] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_macedo_de_cavaleiros/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_macedo_de_cavaleiros + type: feature + crus_mafra: + type: collection + title: CRUS MAFRA + description: Carta do Regime de Uso do Solo - MAFRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MAFRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.427782768022363, 38.86243232876454, -9.159432454764321, + 39.06471837916631] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_mafra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_mafra + type: feature + crus_maia: + type: collection + title: CRUS MAIA + description: Carta do Regime de Uso do Solo - MAIA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MAIA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.6939866296107, 41.17968566733603, -8.515287586693464, 41.295348821858425] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_maia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_maia + type: feature + crus_mangualde: + type: collection + title: CRUS MANGUALDE + description: Carta do Regime de Uso do Solo - MANGUALDE + keywords: + - Uso do Solo + - Portugal + - CRUS + - MANGUALDE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.896908642558034, 40.52592422856702, -7.561751238184148, + 40.65153528000566] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_mangualde/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_mangualde + type: feature + crus_manteigas: + type: collection + title: CRUS MANTEIGAS + description: Carta do Regime de Uso do Solo - MANTEIGAS + keywords: + - Uso do Solo + - Portugal + - CRUS + - MANTEIGAS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.612917222654527, 40.31127006480107, -7.418850817418989, + 40.461561555063774] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_manteigas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_manteigas + type: feature + crus_marco_de_canaveses: + type: collection + title: CRUS MARCO DE CANAVESES + description: Carta do Regime de Uso do Solo - MARCO DE CANAVESES + keywords: + - Uso do Solo + - Portugal + - CRUS + - MARCO DE CANAVESES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.292982880692714, 41.06418354047327, -8.041279097952028, + 41.25904275771646] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_marco_de_canaveses/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_marco_de_canaveses + type: feature + crus_marinha_grande: + type: collection + title: CRUS MARINHA GRANDE + description: Carta do Regime de Uso do Solo - MARINHA GRANDE + keywords: + - Uso do Solo + - Portugal + - CRUS + - MARINHA GRANDE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.040367961631441, 39.69370350136445, -8.868025715402839, + 39.89108254670388] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_marinha_grande/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_marinha_grande + type: feature + crus_marvao: + type: collection + title: CRUS MARVÃO + description: Carta do Regime de Uso do Solo - MARVÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - MARVÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.432882897354734, 39.31292491841101, -7.294211386908833, + 39.49526834582891] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_marvao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_marvao + type: feature + crus_matosinhos: + type: collection + title: CRUS MATOSINHOS + description: Carta do Regime de Uso do Solo - MATOSINHOS + keywords: + - Uso do Solo + - Portugal + - CRUS + - MATOSINHOS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.729157807218762, 41.1714900338632, -8.595447869897397, 41.27311470199229] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_matosinhos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_matosinhos + type: feature + crus_macao: + type: collection + title: CRUS MAÇÃO + description: Carta do Regime de Uso do Solo - MAÇÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - MAÇÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.109133405162844, 39.469389390527795, -7.807183106945096, + 39.74714365012891] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_macao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_macao + type: feature + crus_mealhada: + type: collection + title: CRUS MEALHADA + description: Carta do Regime de Uso do Solo - MEALHADA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MEALHADA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.529953590310416, 40.278809203824714, -8.353757518211383, + 40.41638008023386] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_mealhada/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_mealhada + type: feature + crus_melgaco: + type: collection + title: CRUS MELGAÇO + description: Carta do Regime de Uso do Solo - MELGAÇO + keywords: + - Uso do Solo + - Portugal + - CRUS + - MELGAÇO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.34233313982228, 41.92360036155269, -8.082765177994347, 42.15431112830904] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_melgaco/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_melgaco + type: feature + crus_mesao_frio: + type: collection + title: CRUS MESÃO FRIO + description: Carta do Regime de Uso do Solo - MESÃO FRIO + keywords: + - Uso do Solo + - Portugal + - CRUS + - MESÃO FRIO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.914408734074534, 41.1187286662969, -7.820412930945142, 41.2024420206074] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_mesao_frio/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_mesao_frio + type: feature + crus_mira: + type: collection + title: CRUS MIRA + description: Carta do Regime de Uso do Solo - MIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.825366492542363, 40.370731848903596, -8.682287272501489, + 40.52000341189341] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_mira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_mira + type: feature + crus_miranda_do_corvo: + type: collection + title: CRUS MIRANDA DO CORVO + description: Carta do Regime de Uso do Solo - MIRANDA DO CORVO + keywords: + - Uso do Solo + - Portugal + - CRUS + - MIRANDA DO CORVO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.405626461808469, 40.02606096918398, -8.242218299045312, + 40.19432578501056] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_miranda_do_corvo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_miranda_do_corvo + type: feature + crus_miranda_do_douro: + type: collection + title: CRUS MIRANDA DO DOURO + description: Carta do Regime de Uso do Solo - MIRANDA DO DOURO + keywords: + - Uso do Solo + - Portugal + - CRUS + - MIRANDA DO DOURO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.532523699584876, 41.34351921361878, -6.189162408303293, + 41.676403345995496] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_miranda_do_douro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_miranda_do_douro + type: feature + crus_mirandela: + type: collection + title: CRUS MIRANDELA + description: Carta do Regime de Uso do Solo - MIRANDELA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MIRANDELA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.366863582345298, 41.33369400751424, -7.029187236873732, + 41.73522514101745] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_mirandela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_mirandela + type: feature + crus_mogadouro: + type: collection + title: CRUS MOGADOURO + description: Carta do Regime de Uso do Solo - MOGADOURO + keywords: + - Uso do Solo + - Portugal + - CRUS + - MOGADOURO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.920180345183513, 41.19294650548017, -6.419049637202763, + 41.467248557406464] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_mogadouro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_mogadouro + type: feature + crus_moimenta_da_beira: + type: collection + title: CRUS MOIMENTA DA BEIRA + description: Carta do Regime de Uso do Solo - MOIMENTA DA BEIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MOIMENTA DA BEIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.757325337658792, 40.85356929811532, -7.530986589675991, + 41.05910593034613] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_moimenta_da_beira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_moimenta_da_beira + type: feature + crus_moita: + type: collection + title: CRUS MOITA + description: Carta do Regime de Uso do Solo - MOITA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MOITA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.050552563955543, 38.601198781936574, -8.944973094640316, + 38.69685490437458] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_moita/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_moita + type: feature + crus_monchique: + type: collection + title: CRUS MONCHIQUE + description: Carta do Regime de Uso do Solo - MONCHIQUE + keywords: + - Uso do Solo + - Portugal + - CRUS + - MONCHIQUE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.753406288205666, 37.21010039815314, -8.42087574015364, 37.411162265790004] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_monchique/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_monchique + type: feature + crus_mondim_de_basto: + type: collection + title: CRUS MONDIM DE BASTO + description: Carta do Regime de Uso do Solo - MONDIM DE BASTO + keywords: + - Uso do Solo + - Portugal + - CRUS + - MONDIM DE BASTO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.981146229795736, 41.30266708496459, -7.788687376492992, + 41.49179834846709] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_mondim_de_basto/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_mondim_de_basto + type: feature + crus_monforte: + type: collection + title: CRUS MONFORTE + description: Carta do Regime de Uso do Solo - MONFORTE + keywords: + - Uso do Solo + - Portugal + - CRUS + - MONFORTE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.568132790758787, 38.864468264378154, -7.298631278767596, + 39.19071142652765] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_monforte/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_monforte + type: feature + crus_montalegre: + type: collection + title: CRUS MONTALEGRE + description: Carta do Regime de Uso do Solo - MONTALEGRE + keywords: + - Uso do Solo + - Portugal + - CRUS + - MONTALEGRE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.11946241210014, 41.58690156829435, -7.579515247997264, 41.927103847899026] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_montalegre/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_montalegre + type: feature + crus_montemor_o_novo: + type: collection + title: CRUS MONTEMOR-O-NOVO + description: Carta do Regime de Uso do Solo - MONTEMOR-O-NOVO + keywords: + - Uso do Solo + - Portugal + - CRUS + - MONTEMOR-O-NOVO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.582709479269678, 38.43684488971355, -8.029076523243507, + 38.86910916432693] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_montemor_o_novo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_montemor_o_novo + type: feature + crus_montemor_o_velho: + type: collection + title: CRUS MONTEMOR-O-VELHO + description: Carta do Regime de Uso do Solo - MONTEMOR-O-VELHO + keywords: + - Uso do Solo + - Portugal + - CRUS + - MONTEMOR-O-VELHO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.775119580195485, 40.11210391398028, -8.547506167719016, + 40.31104267791604] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_montemor_o_velho/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_montemor_o_velho + type: feature + crus_montijo: + type: collection + title: CRUS MONTIJO + description: Carta do Regime de Uso do Solo - MONTIJO + keywords: + - Uso do Solo + - Portugal + - CRUS + - MONTIJO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.052382752131901, 38.64484358310995, -8.4911325527347, 38.8437915887012] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_montijo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_montijo + type: feature + crus_moncao: + type: collection + title: CRUS MONÇÃO + description: Carta do Regime de Uso do Solo - MONÇÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - MONÇÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.546871156146803, 41.96576472051778, -8.289464838192941, + 42.090487498779034] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_moncao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_moncao + type: feature + crus_mora: + type: collection + title: CRUS MORA + description: Carta do Regime de Uso do Solo - MORA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MORA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.272188362646007, 38.80496820606411, -7.889787162340206, + 39.02693144992305] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_mora/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_mora + type: feature + crus_mortagua: + type: collection + title: CRUS MORTÁGUA + description: Carta do Regime de Uso do Solo - MORTÁGUA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MORTÁGUA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.358421594126463, 40.32218430872729, -8.157965337435934, + 40.51671673864557] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_mortagua/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_mortagua + type: feature + crus_moura: + type: collection + title: CRUS MOURA + description: Carta do Regime de Uso do Solo - MOURA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MOURA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.532812296933162, 37.96005357201793, -6.986536738215836, + 38.331028025606294] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_moura/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_moura + type: feature + crus_mourao: + type: collection + title: CRUS MOURÃO + description: Carta do Regime de Uso do Solo - MOURÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - MOURÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.429918529741136, 38.16716869912859, -7.107165408626717, + 38.440527945114766] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_mourao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_mourao + type: feature + crus_murtosa: + type: collection + title: CRUS MURTOSA + description: Carta do Regime de Uso do Solo - MURTOSA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MURTOSA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.734851816123667, 40.7020891674332, -8.59370319256616, 40.819634629252256] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_murtosa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_murtosa + type: feature + crus_murca: + type: collection + title: CRUS MURÇA + description: Carta do Regime de Uso do Solo - MURÇA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MURÇA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.58875519219087, 41.32401469484931, -7.314141201313304, 41.5278709246721] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_murca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_murca + type: feature + crus_mertola: + type: collection + title: CRUS MÉRTOLA + description: Carta do Regime de Uso do Solo - MÉRTOLA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MÉRTOLA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.934081689654867, 37.43195815540214, -7.425716850166035, + 37.84950700707401] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_mertola/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_mertola + type: feature + crus_meda: + type: collection + title: CRUS MÊDA + description: Carta do Regime de Uso do Solo - MÊDA + keywords: + - Uso do Solo + - Portugal + - CRUS + - MÊDA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.379992057403381, 40.823132289387544, -7.133495418701399, + 41.03748483228325] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_meda/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_meda + type: feature + crus_nazare: + type: collection + title: CRUS NAZARÉ + description: Carta do Regime de Uso do Solo - NAZARÉ + keywords: + - Uso do Solo + - Portugal + - CRUS + - NAZARÉ + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.113789654083384, 39.510878624003304, -8.970664974942991, + 39.64983828336324] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_nazare/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_nazare + type: feature + crus_nelas: + type: collection + title: CRUS NELAS + description: Carta do Regime de Uso do Solo - NELAS + keywords: + - Uso do Solo + - Portugal + - CRUS + - NELAS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.943499245604829, 40.45601991732928, -7.748477076763821, + 40.58873568051146] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_nelas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_nelas + type: feature + crus_nisa: + type: collection + title: CRUS NISA + description: Carta do Regime de Uso do Solo - NISA + keywords: + - Uso do Solo + - Portugal + - CRUS + - NISA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.882926798659337, 39.377236302085535, -7.480471108876079, + 39.663679579186265] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_nisa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_nisa + type: feature + crus_odemira: + type: collection + title: CRUS ODEMIRA + description: Carta do Regime de Uso do Solo - ODEMIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - ODEMIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.819455749303879, 37.37293562262394, -8.312950122054488, + 37.868585173290576] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_odemira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_odemira + type: feature + crus_odivelas: + type: collection + title: CRUS ODIVELAS + description: Carta do Regime de Uso do Solo - ODIVELAS + keywords: + - Uso do Solo + - Portugal + - CRUS + - ODIVELAS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.24112001208821, 38.76022118004836, -9.149887733401625, 38.830530108663936] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_odivelas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_odivelas + type: feature + crus_oeiras: + type: collection + title: CRUS OEIRAS + description: Carta do Regime de Uso do Solo - OEIRAS + keywords: + - Uso do Solo + - Portugal + - CRUS + - OEIRAS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.329676499421508, 38.67314690252404, -9.21121121447803, 38.75195049003295] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_oeiras/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_oeiras + type: feature + crus_oleiros: + type: collection + title: CRUS OLEIROS + description: Carta do Regime de Uso do Solo - OLEIROS + keywords: + - Uso do Solo + - Portugal + - CRUS + - OLEIROS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.08822964065131, 39.810703918002275, -7.691089124905352, + 40.059146939303716] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_oleiros/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_oleiros + type: feature + crus_olhao: + type: collection + title: CRUS OLHÃO + description: Carta do Regime de Uso do Solo - OLHÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - OLHÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.889546585056325, 36.99799887812354, -7.720467249770297, + 37.131311366195604] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_olhao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_olhao + type: feature + crus_oliveira_de_azemeis: + type: collection + title: CRUS OLIVEIRA DE AZEMÉIS + description: Carta do Regime de Uso do Solo - OLIVEIRA DE AZEMÉIS + keywords: + - Uso do Solo + - Portugal + - CRUS + - OLIVEIRA DE AZEMÉIS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.550831195441075, 40.75878242770733, -8.385091553792925, + 40.93742604340864] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_oliveira_de_azemeis/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_oliveira_de_azemeis + type: feature + crus_oliveira_de_frades: + type: collection + title: CRUS OLIVEIRA DE FRADES + description: Carta do Regime de Uso do Solo - OLIVEIRA DE FRADES + keywords: + - Uso do Solo + - Portugal + - CRUS + - OLIVEIRA DE FRADES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.33358793183115, 40.56366194086777, -8.12954629719837, 40.80392676464256] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_oliveira_de_frades/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_oliveira_de_frades + type: feature + crus_oliveira_do_bairro: + type: collection + title: CRUS OLIVEIRA DO BAIRRO + description: Carta do Regime de Uso do Solo - OLIVEIRA DO BAIRRO + keywords: + - Uso do Solo + - Portugal + - CRUS + - OLIVEIRA DO BAIRRO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.630783342050444, 40.46550445940484, -8.459209346059849, + 40.56394696549626] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_oliveira_do_bairro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_oliveira_do_bairro + type: feature + crus_oliveira_do_hospital: + type: collection + title: CRUS OLIVEIRA DO HOSPITAL + description: Carta do Regime de Uso do Solo - OLIVEIRA DO HOSPITAL + keywords: + - Uso do Solo + - Portugal + - CRUS + - OLIVEIRA DO HOSPITAL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.981735554720436, 40.2594265003042, -7.75821277294129, 40.498611884648525] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_oliveira_do_hospital/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_oliveira_do_hospital + type: feature + crus_ourique: + type: collection + title: CRUS OURIQUE + description: Carta do Regime de Uso do Solo - OURIQUE + keywords: + - Uso do Solo + - Portugal + - CRUS + - OURIQUE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.46679081612084, 37.40925905012339, -8.13575880526751, 37.86265372379937] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_ourique/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_ourique + type: feature + crus_ourem: + type: collection + title: CRUS OURÉM + description: Carta do Regime de Uso do Solo - OURÉM + keywords: + - Uso do Solo + - Portugal + - CRUS + - OURÉM + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.702251500113507, 39.53581923688628, -8.423082007201277, + 39.83872917391089] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_ourem/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_ourem + type: feature + crus_ovar: + type: collection + title: CRUS OVAR + description: Carta do Regime de Uso do Solo - OVAR + keywords: + - Uso do Solo + - Portugal + - CRUS + - OVAR + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.695980978027299, 40.79573150295395, -8.523237083198058, + 40.9761794545283] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_ovar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_ovar + type: feature + crus_palmela: + type: collection + title: CRUS PALMELA + description: Carta do Regime de Uso do Solo - PALMELA + keywords: + - Uso do Solo + - Portugal + - CRUS + - PALMELA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.025997260924923, 38.50568361924865, -8.612166885808014, + 38.74163254551118] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_palmela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_palmela + type: feature + crus_pampilhosa_da_serra: + type: collection + title: CRUS PAMPILHOSA DA SERRA + description: Carta do Regime de Uso do Solo - PAMPILHOSA DA SERRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - PAMPILHOSA DA SERRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.132898944808543, 39.932811255862056, -7.73175549835247, + 40.21061759587568] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_pampilhosa_da_serra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_pampilhosa_da_serra + type: feature + crus_paredes: + type: collection + title: CRUS PAREDES + description: Carta do Regime de Uso do Solo - PAREDES + keywords: + - Uso do Solo + - Portugal + - CRUS + - PAREDES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.473972032999633, 41.068292773333276, -8.29619566294112, + 41.25977143692784] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_paredes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_paredes + type: feature + crus_paredes_de_coura: + type: collection + title: CRUS PAREDES DE COURA + description: Carta do Regime de Uso do Solo - PAREDES DE COURA + keywords: + - Uso do Solo + - Portugal + - CRUS + - PAREDES DE COURA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.675386744136054, 41.84433570371884, -8.488548718765394, + 41.98257128790017] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_paredes_de_coura/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_paredes_de_coura + type: feature + crus_pacos_de_ferreira: + type: collection + title: CRUS PAÇOS DE FERREIRA + description: Carta do Regime de Uso do Solo - PAÇOS DE FERREIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - PAÇOS DE FERREIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.452646808570641, 41.24261975749944, -8.317014712412446, + 41.337596237416676] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_pacos_de_ferreira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_pacos_de_ferreira + type: feature + crus_pedrogao_grande: + type: collection + title: CRUS PEDRÓGÃO GRANDE + description: Carta do Regime de Uso do Solo - PEDRÓGÃO GRANDE + keywords: + - Uso do Solo + - Portugal + - CRUS + - PEDRÓGÃO GRANDE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.261422138930154, 39.85024087897384, -8.108051867216709, + 40.03645070293484] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_pedrogao_grande/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_pedrogao_grande + type: feature + crus_penacova: + type: collection + title: CRUS PENACOVA + description: Carta do Regime de Uso do Solo - PENACOVA + keywords: + - Uso do Solo + - Portugal + - CRUS + - PENACOVA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.389650575902076, 40.21861485925152, -8.108248032687966, + 40.37080141214063] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_penacova/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_penacova + type: feature + crus_penafiel: + type: collection + title: CRUS PENAFIEL + description: Carta do Regime de Uso do Solo - PENAFIEL + keywords: + - Uso do Solo + - Portugal + - CRUS + - PENAFIEL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.392555648760615, 41.04010622077472, -8.168950299753632, + 41.24801249006318] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_penafiel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_penafiel + type: feature + crus_penalva_do_castelo: + type: collection + title: CRUS PENALVA DO CASTELO + description: Carta do Regime de Uso do Solo - PENALVA DO CASTELO + keywords: + - Uso do Solo + - Portugal + - CRUS + - PENALVA DO CASTELO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.783968538906348, 40.62417759676787, -7.535141759734184, + 40.72647849187351] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_penalva_do_castelo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_penalva_do_castelo + type: feature + crus_penamacor: + type: collection + title: CRUS PENAMACOR + description: Carta do Regime de Uso do Solo - PENAMACOR + keywords: + - Uso do Solo + - Portugal + - CRUS + - PENAMACOR + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.319236465780344, 40.049177671457514, -6.932232483299384, + 40.32464191040923] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_penamacor/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_penamacor + type: feature + crus_penedono: + type: collection + title: CRUS PENEDONO + description: Carta do Regime de Uso do Solo - PENEDONO + keywords: + - Uso do Solo + - Portugal + - CRUS + - PENEDONO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.461486127769159, 40.904500958872184, -7.325300022957405, + 41.07011316455959] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_penedono/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_penedono + type: feature + crus_penela: + type: collection + title: CRUS PENELA + description: Carta do Regime de Uso do Solo - PENELA + keywords: + - Uso do Solo + - Portugal + - CRUS + - PENELA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.474605836032888, 39.92377797776007, -8.270150252456475, + 40.08518265708448] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_penela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_penela + type: feature + crus_peniche: + type: collection + title: CRUS PENICHE + description: Carta do Regime de Uso do Solo - PENICHE + keywords: + - Uso do Solo + - Portugal + - CRUS + - PENICHE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.409982484235268, 39.28372439724488, -9.256813421078224, + 39.39053798651005] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_peniche/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_peniche + type: feature + crus_peso_da_regua: + type: collection + title: CRUS PESO DA RÉGUA + description: Carta do Regime de Uso do Solo - PESO DA RÉGUA + keywords: + - Uso do Solo + - Portugal + - CRUS + - PESO DA RÉGUA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.894087265982876, 41.1414880312962, -7.648174794133782, 41.24202046579452] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_peso_da_regua/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_peso_da_regua + type: feature + crus_pinhel: + type: collection + title: CRUS PINHEL + description: Carta do Regime de Uso do Solo - PINHEL + keywords: + - Uso do Solo + - Portugal + - CRUS + - PINHEL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.262247666271215, 40.588233445931266, -6.955547334409652, + 40.97112624751132] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_pinhel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_pinhel + type: feature + crus_pombal: + type: collection + title: CRUS POMBAL + description: Carta do Regime de Uso do Solo - POMBAL + keywords: + - Uso do Solo + - Portugal + - CRUS + - POMBAL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.932232547458144, 39.77689280839318, -8.469990887638243, + 40.04550292681537] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_pombal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_pombal + type: feature + crus_ponte_da_barca: + type: collection + title: CRUS PONTE DA BARCA + description: Carta do Regime de Uso do Solo - PONTE DA BARCA + keywords: + - Uso do Solo + - Portugal + - CRUS + - PONTE DA BARCA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.479856721224694, 41.7322682923157, -8.161764836759092, 41.879097507918544] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_ponte_da_barca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_ponte_da_barca + type: feature + crus_ponte_de_lima: + type: collection + title: CRUS PONTE DE LIMA + description: Carta do Regime de Uso do Solo - PONTE DE LIMA + keywords: + - Uso do Solo + - Portugal + - CRUS + - PONTE DE LIMA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.700235732278927, 41.622286980937076, -8.461327716686188, + 41.870842844329836] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_ponte_de_lima/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_ponte_de_lima + type: feature + crus_ponte_de_sor: + type: collection + title: CRUS PONTE DE SOR + description: Carta do Regime de Uso do Solo - PONTE DE SOR + keywords: + - Uso do Solo + - Portugal + - CRUS + - PONTE DE SOR + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.344046762030933, 38.97801907138743, -7.824043039632762, + 39.384202157282516] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_ponte_de_sor/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_ponte_de_sor + type: feature + crus_portalegre: + type: collection + title: CRUS PORTALEGRE + description: Carta do Regime de Uso do Solo - PORTALEGRE + keywords: + - Uso do Solo + - Portugal + - CRUS + - PORTALEGRE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.558526713271043, 39.14623584902059, -7.231471694240597, + 39.398742421691225] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_portalegre/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_portalegre + type: feature + crus_portel: + type: collection + title: CRUS PORTEL + description: Carta do Regime de Uso do Solo - PORTEL + keywords: + - Uso do Solo + - Portugal + - CRUS + - PORTEL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.936410328218296, 38.18849181357929, -7.457057206045737, + 38.43868377267359] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_portel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_portel + type: feature + crus_portimao: + type: collection + title: CRUS PORTIMÃO + description: Carta do Regime de Uso do Solo - PORTIMÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - PORTIMÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.684383658270738, 37.10845305133551, -8.485745729883012, + 37.27979577895053] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_portimao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_portimao + type: feature + crus_porto: + type: collection + title: CRUS PORTO + description: Carta do Regime de Uso do Solo - PORTO + keywords: + - Uso do Solo + - Portugal + - CRUS + - PORTO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.691294069419696, 41.13835067971428, -8.55261345505806, 41.18593530519906] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_porto/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_porto + type: feature + crus_porto_de_mos: + type: collection + title: CRUS PORTO DE MÓS + description: Carta do Regime de Uso do Solo - PORTO DE MÓS + keywords: + - Uso do Solo + - Portugal + - CRUS + - PORTO DE MÓS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.933562358999472, 39.465251008955065, -8.6873803554682, 39.65151237405803] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_porto_de_mos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_porto_de_mos + type: feature + crus_proenca_a_nova: + type: collection + title: CRUS PROENÇA-A-NOVA + description: Carta do Regime de Uso do Solo - PROENÇA-A-NOVA + keywords: + - Uso do Solo + - Portugal + - CRUS + - PROENÇA-A-NOVA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.035753702223548, 39.56578319640763, -7.73966636979911, 39.870607955081695] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_proenca_a_nova/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_proenca_a_nova + type: feature + crus_povoa_de_lanhoso: + type: collection + title: CRUS PÓVOA DE LANHOSO + description: Carta do Regime de Uso do Solo - PÓVOA DE LANHOSO + keywords: + - Uso do Solo + - Portugal + - CRUS + - PÓVOA DE LANHOSO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.344309949129665, 41.51857089052761, -8.146923805380416, + 41.655911407700714] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_povoa_de_lanhoso/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_povoa_de_lanhoso + type: feature + crus_povoa_de_varzim: + type: collection + title: CRUS PÓVOA DE VARZIM + description: Carta do Regime de Uso do Solo - PÓVOA DE VARZIM + keywords: + - Uso do Solo + - Portugal + - CRUS + - PÓVOA DE VARZIM + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.789175947541585, 41.364578442203, -8.590646981308396, 41.47183865322379] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_povoa_de_varzim/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_povoa_de_varzim + type: feature + crus_redondo: + type: collection + title: CRUS REDONDO + description: Carta do Regime de Uso do Solo - REDONDO + keywords: + - Uso do Solo + - Portugal + - CRUS + - REDONDO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.7256703466221, 38.4755273375958, -7.489086839005134, 38.75512807703182] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_redondo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_redondo + type: feature + crus_reguengos_de_monsaraz: + type: collection + title: CRUS REGUENGOS DE MONSARAZ + description: Carta do Regime de Uso do Solo - REGUENGOS DE MONSARAZ + keywords: + - Uso do Solo + - Portugal + - CRUS + - REGUENGOS DE MONSARAZ + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.612266615408955, 38.226641870374365, -7.337465637117049, + 38.5264223562041] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_reguengos_de_monsaraz/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_reguengos_de_monsaraz + type: feature + crus_resende: + type: collection + title: CRUS RESENDE + description: Carta do Regime de Uso do Solo - RESENDE + keywords: + - Uso do Solo + - Portugal + - CRUS + - RESENDE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.027551678731415, 40.99927012385571, -7.850268640321558, + 41.150568887805925] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_resende/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_resende + type: feature + crus_ribeira_de_pena: + type: collection + title: CRUS RIBEIRA DE PENA + description: Carta do Regime de Uso do Solo - RIBEIRA DE PENA + keywords: + - Uso do Solo + - Portugal + - CRUS + - RIBEIRA DE PENA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.909814795961857, 41.403641579305976, -7.704007320220683, + 41.65239900660532] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_ribeira_de_pena/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_ribeira_de_pena + type: feature + crus_rio_maior: + type: collection + title: CRUS RIO MAIOR + description: Carta do Regime de Uso do Solo - RIO MAIOR + keywords: + - Uso do Solo + - Portugal + - CRUS + - RIO MAIOR + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.00156408946743, 39.23489776669452, -8.783619992913119, 39.465950257869856] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_rio_maior/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_rio_maior + type: feature + crus_sabrosa: + type: collection + title: CRUS SABROSA + description: Carta do Regime de Uso do Solo - SABROSA + keywords: + - Uso do Solo + - Portugal + - CRUS + - SABROSA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.658188112106468, 41.15612671213085, -7.531500847745059, + 41.4125644834573] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sabrosa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sabrosa + type: feature + crus_sabugal: + type: collection + title: CRUS SABUGAL + description: Carta do Regime de Uso do Solo - SABUGAL + keywords: + - Uso do Solo + - Portugal + - CRUS + - SABUGAL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.332555998834438, 40.25389892594159, -6.78096076704526, 40.55299490582911] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sabugal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sabugal + type: feature + crus_salvaterra_de_magos: + type: collection + title: CRUS SALVATERRA DE MAGOS + description: Carta do Regime de Uso do Solo - SALVATERRA DE MAGOS + keywords: + - Uso do Solo + - Portugal + - CRUS + - SALVATERRA DE MAGOS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.816055002071417, 38.95593041610228, -8.57511490317934, 39.13262427547153] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_salvaterra_de_magos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_salvaterra_de_magos + type: feature + crus_santa_comba_dao: + type: collection + title: CRUS SANTA COMBA DÃO + description: Carta do Regime de Uso do Solo - SANTA COMBA DÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - SANTA COMBA DÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.187796726535366, 40.33272239443188, -8.044818435632179, + 40.465767514030354] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_santa_comba_dao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_santa_comba_dao + type: feature + crus_santa_maria_da_feira: + type: collection + title: CRUS SANTA MARIA DA FEIRA + description: Carta do Regime de Uso do Solo - SANTA MARIA DA FEIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - SANTA MARIA DA FEIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.612976058342891, 40.87215519831288, -8.388865170762712, + 41.05345909496234] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_santa_maria_da_feira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_santa_maria_da_feira + type: feature + crus_santa_marta_de_penaguiao: + type: collection + title: CRUS SANTA MARTA DE PENAGUIÃO + description: Carta do Regime de Uso do Solo - SANTA MARTA DE PENAGUIÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - SANTA MARTA DE PENAGUIÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.895666292355854, 41.17356470599205, -7.743705774051297, + 41.27304129555976] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_santa_marta_de_penaguiao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_santa_marta_de_penaguiao + type: feature + crus_santarem: + type: collection + title: CRUS SANTARÉM + description: Carta do Regime de Uso do Solo - SANTARÉM + keywords: + - Uso do Solo + - Portugal + - CRUS + - SANTARÉM + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.899002063908766, 39.164569553549335, -8.544375264693862, + 39.48083092744927] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_santarem/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_santarem + type: feature + crus_santiago_do_cacem: + type: collection + title: CRUS SANTIAGO DO CACÉM + description: Carta do Regime de Uso do Solo - SANTIAGO DO CACÉM + keywords: + - Uso do Solo + - Portugal + - CRUS + - SANTIAGO DO CACÉM + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.825614918025751, 37.749393262352676, -8.293135320126254, + 38.12694891333012] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_santiago_do_cacem/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_santiago_do_cacem + type: feature + crus_santo_tirso: + type: collection + title: CRUS SANTO TIRSO + description: Carta do Regime de Uso do Solo - SANTO TIRSO + keywords: + - Uso do Solo + - Portugal + - CRUS + - SANTO TIRSO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.519833861965338, 41.23808978582415, -8.310633776296129, + 41.384327454882055] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_santo_tirso/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_santo_tirso + type: feature + crus_sardoal: + type: collection + title: CRUS SARDOAL + description: Carta do Regime de Uso do Solo - SARDOAL + keywords: + - Uso do Solo + - Portugal + - CRUS + - SARDOAL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.194544142955404, 39.498643910434005, -8.080380398371599, + 39.62675119427278] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sardoal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sardoal + type: feature + crus_seia: + type: collection + title: CRUS SEIA + description: Carta do Regime de Uso do Solo - SEIA + keywords: + - Uso do Solo + - Portugal + - CRUS + - SEIA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.849226743639473, 40.229918727187304, -7.583432456156645, + 40.535516835023756] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_seia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_seia + type: feature + crus_seixal: + type: collection + title: CRUS SEIXAL + description: Carta do Regime de Uso do Solo - SEIXAL + keywords: + - Uso do Solo + - Portugal + - CRUS + - SEIXAL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.178348874338088, 38.540671908070856, -9.048312743588214, + 38.65588011110957] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_seixal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_seixal + type: feature + crus_sernancelhe: + type: collection + title: CRUS SERNANCELHE + description: Carta do Regime de Uso do Solo - SERNANCELHE + keywords: + - Uso do Solo + - Portugal + - CRUS + - SERNANCELHE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.66059561452041, 40.812451323389936, -7.374214330064732, + 41.02198525761427] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sernancelhe/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sernancelhe + type: feature + crus_serpa: + type: collection + title: CRUS SERPA + description: Carta do Regime de Uso do Solo - SERPA + keywords: + - Uso do Solo + - Portugal + - CRUS + - SERPA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.682327802021546, 37.741204378441665, -7.24826023758922, + 38.176401184254566] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_serpa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_serpa + type: feature + crus_serta: + type: collection + title: CRUS SERTÃ + description: Carta do Regime de Uso do Solo - SERTÃ + keywords: + - Uso do Solo + - Portugal + - CRUS + - SERTÃ + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.293056870714059, 39.72747310346464, -7.916577894732271, + 39.96546505520089] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_serta/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_serta + type: feature + crus_sesimbra: + type: collection + title: CRUS SESIMBRA + description: Carta do Regime de Uso do Solo - SESIMBRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - SESIMBRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.222674611570357, 38.40924412073108, -9.017368666039191, + 38.57984441829072] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sesimbra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sesimbra + type: feature + crus_setubal: + type: collection + title: CRUS SETÚBAL + description: Carta do Regime de Uso do Solo - SETÚBAL + keywords: + - Uso do Solo + - Portugal + - CRUS + - SETÚBAL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.055680833897744, 38.453404995033814, -8.72948646513475, + 38.58069416931106] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_setubal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_setubal + type: feature + crus_sever_do_vouga: + type: collection + title: CRUS SEVER DO VOUGA + description: Carta do Regime de Uso do Solo - SEVER DO VOUGA + keywords: + - Uso do Solo + - Portugal + - CRUS + - SEVER DO VOUGA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.416469581877223, 40.63676197645329, -8.271932272121699, + 40.79992246303872] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sever_do_vouga/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sever_do_vouga + type: feature + crus_silves: + type: collection + title: CRUS SILVES + description: Carta do Regime de Uso do Solo - SILVES + keywords: + - Uso do Solo + - Portugal + - CRUS + - SILVES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.535457647913038, 37.088623758577015, -8.176880573134975, + 37.43939031168186] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_silves/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_silves + type: feature + crus_sines: + type: collection + title: CRUS SINES + description: Carta do Regime de Uso do Solo - SINES + keywords: + - Uso do Solo + - Portugal + - CRUS + - SINES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.890165153290015, 37.80542886510598, -8.680203123781554, + 38.04944615578343] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sines/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sines + type: feature + crus_sintra: + type: collection + title: CRUS SINTRA + description: Carta do Regime de Uso do Solo - SINTRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - SINTRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.500525177616035, 38.73859344270152, -9.220690791832002, + 38.93243218258473] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sintra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sintra + type: feature + crus_sobral_de_monte_agraco: + type: collection + title: CRUS SOBRAL DE MONTE AGRAÇO + description: Carta do Regime de Uso do Solo - SOBRAL DE MONTE AGRAÇO + keywords: + - Uso do Solo + - Portugal + - CRUS + - SOBRAL DE MONTE AGRAÇO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.239957237423596, 38.94747059805965, -9.09886826290354, 39.03748587731948] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sobral_de_monte_agraco/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sobral_de_monte_agraco + type: feature + crus_soure: + type: collection + title: CRUS SOURE + description: Carta do Regime de Uso do Solo - SOURE + keywords: + - Uso do Solo + - Portugal + - CRUS + - SOURE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.764285711487013, 39.949073841956334, -8.42461747660783, + 40.17590087061756] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_soure/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_soure + type: feature + crus_sousel: + type: collection + title: CRUS SOUSEL + description: Carta do Regime de Uso do Solo - SOUSEL + keywords: + - Uso do Solo + - Portugal + - CRUS + - SOUSEL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.914347461654767, 38.89583751568009, -7.54026511837087, 39.022512351704954] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sousel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sousel + type: feature + crus_satao: + type: collection + title: CRUS SÁTÃO + description: Carta do Regime de Uso do Solo - SÁTÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - SÁTÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.775509663418902, 40.68107402742097, -7.570704678291599, + 40.87478639576692] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_satao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_satao + type: feature + crus_sao_bras_de_alportel: + type: collection + title: CRUS SÃO BRÁS DE ALPORTEL + description: Carta do Regime de Uso do Solo - SÃO BRÁS DE ALPORTEL + keywords: + - Uso do Solo + - Portugal + - CRUS + - SÃO BRÁS DE ALPORTEL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.965526727480326, 37.123047610993396, -7.781642386851988, + 37.267802945465746] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sao_bras_de_alportel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sao_bras_de_alportel + type: feature + crus_sao_joao_da_madeira: + type: collection + title: CRUS SÃO JOÃO DA MADEIRA + description: Carta do Regime de Uso do Solo - SÃO JOÃO DA MADEIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - SÃO JOÃO DA MADEIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.512046454070541, 40.87883458909611, -8.473613546538763, + 40.91660176068144] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sao_joao_da_madeira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sao_joao_da_madeira + type: feature + crus_sao_joao_da_pesqueira: + type: collection + title: CRUS SÃO JOÃO DA PESQUEIRA + description: Carta do Regime de Uso do Solo - SÃO JOÃO DA PESQUEIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - SÃO JOÃO DA PESQUEIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.55574464000631, 40.999373745775294, -7.304573087131182, + 41.214657783161826] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sao_joao_da_pesqueira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sao_joao_da_pesqueira + type: feature + crus_sao_pedro_do_sul: + type: collection + title: CRUS SÃO PEDRO DO SUL + description: Carta do Regime de Uso do Solo - SÃO PEDRO DO SUL + keywords: + - Uso do Solo + - Portugal + - CRUS + - SÃO PEDRO DO SUL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.254759083419714, 40.72921156673768, -7.928303172777676, + 40.93661341131955] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_sao_pedro_do_sul/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_sao_pedro_do_sul + type: feature + crus_tabuaco: + type: collection + title: CRUS TABUAÇO + description: Carta do Regime de Uso do Solo - TABUAÇO + keywords: + - Uso do Solo + - Portugal + - CRUS + - TABUAÇO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.640317024561815, 41.005761969124265, -7.474616947852225, + 41.17416554769901] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_tabuaco/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_tabuaco + type: feature + crus_tarouca: + type: collection + title: CRUS TAROUCA + description: Carta do Regime de Uso do Solo - TAROUCA + keywords: + - Uso do Solo + - Portugal + - CRUS + - TAROUCA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.850653614119691, 40.95425401155201, -7.659784873359452, + 41.081011966835796] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_tarouca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_tarouca + type: feature + crus_tavira: + type: collection + title: CRUS TAVIRA + description: Carta do Regime de Uso do Solo - TAVIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - TAVIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.915158807839604, 37.05780506320051, -7.565726071118276, + 37.386342230669335] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_tavira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_tavira + type: feature + crus_terras_de_bouro: + type: collection + title: CRUS TERRAS DE BOURO + description: Carta do Regime de Uso do Solo - TERRAS DE BOURO + keywords: + - Uso do Solo + - Portugal + - CRUS + - TERRAS DE BOURO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.362894518246353, 41.649498655670065, -8.044738433704927, + 41.82062617885093] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_terras_de_bouro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_terras_de_bouro + type: feature + crus_tomar: + type: collection + title: CRUS TOMAR + description: Carta do Regime de Uso do Solo - TOMAR + keywords: + - Uso do Solo + - Portugal + - CRUS + - TOMAR + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.51253271313463, 39.476606021577126, -8.236404543217557, + 39.707775054657176] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_tomar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_tomar + type: feature + crus_tondela: + type: collection + title: CRUS TONDELA + description: Carta do Regime de Uso do Solo - TONDELA + keywords: + - Uso do Solo + - Portugal + - CRUS + - TONDELA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.308390648137859, 40.447974421041835, -7.959132672189926, + 40.640676617514444] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_tondela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_tondela + type: feature + crus_torre_de_moncorvo: + type: collection + title: CRUS TORRE DE MONCORVO + description: Carta do Regime de Uso do Solo - TORRE DE MONCORVO + keywords: + - Uso do Solo + - Portugal + - CRUS + - TORRE DE MONCORVO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.223632573757536, 41.033067247149496, -6.79809066741248, + 41.30918392229233] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_torre_de_moncorvo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_torre_de_moncorvo + type: feature + crus_torres_novas: + type: collection + title: CRUS TORRES NOVAS + description: Carta do Regime de Uso do Solo - TORRES NOVAS + keywords: + - Uso do Solo + - Portugal + - CRUS + - TORRES NOVAS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.673623996780103, 39.3972116031709, -8.450580019532987, 39.63204315425445] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_torres_novas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_torres_novas + type: feature + crus_torres_vedras: + type: collection + title: CRUS TORRES VEDRAS + description: Carta do Regime de Uso do Solo - TORRES VEDRAS + keywords: + - Uso do Solo + - Portugal + - CRUS + - TORRES VEDRAS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.422343010192272, 39.00407978272829, -9.125726674636915, + 39.216180231037406] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_torres_vedras/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_torres_vedras + type: feature + crus_trancoso: + type: collection + title: CRUS TRANCOSO + description: Carta do Regime de Uso do Solo - TRANCOSO + keywords: + - Uso do Solo + - Portugal + - CRUS + - TRANCOSO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.467240657333204, 40.68944553726057, -7.186085301237946, + 40.92182090389629] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_trancoso/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_trancoso + type: feature + crus_trofa: + type: collection + title: CRUS TROFA + description: Carta do Regime de Uso do Solo - TROFA + keywords: + - Uso do Solo + - Portugal + - CRUS + - TROFA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.634463056307556, 41.25827911531023, -8.506148894886799, + 41.34783832371309] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_trofa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_trofa + type: feature + crus_tabua: + type: collection + title: CRUS TÁBUA + description: Carta do Regime de Uso do Solo - TÁBUA + keywords: + - Uso do Solo + - Portugal + - CRUS + - TÁBUA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.13401344155435, 40.2415352299388, -7.900018304926649, 40.42432581524249] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_tabua/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_tabua + type: feature + crus_vagos: + type: collection + title: CRUS VAGOS + description: Carta do Regime de Uso do Solo - VAGOS + keywords: + - Uso do Solo + - Portugal + - CRUS + - VAGOS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.784028884237848, 40.424052697225115, -8.607685783189016, + 40.582928458719415] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vagos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vagos + type: feature + crus_vale_de_cambra: + type: collection + title: CRUS VALE DE CAMBRA + description: Carta do Regime de Uso do Solo - VALE DE CAMBRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - VALE DE CAMBRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.434921886576868, 40.765203784261956, -8.23681835197927, + 40.90383879595548] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vale_de_cambra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vale_de_cambra + type: feature + crus_valenca: + type: collection + title: CRUS VALENÇA + description: Carta do Regime de Uso do Solo - VALENÇA + keywords: + - Uso do Solo + - Portugal + - CRUS + - VALENÇA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.681949793635303, 41.92716712132911, -8.529214579037125, + 42.05641335440482] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_valenca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_valenca + type: feature + crus_valongo: + type: collection + title: CRUS VALONGO + description: Carta do Regime de Uso do Solo - VALONGO + keywords: + - Uso do Solo + - Portugal + - CRUS + - VALONGO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.570727257077628, 41.140764439965515, -8.439995227006765, + 41.26902460337677] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_valongo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_valongo + type: feature + crus_valpacos: + type: collection + title: CRUS VALPAÇOS + description: Carta do Regime de Uso do Solo - VALPAÇOS + keywords: + - Uso do Solo + - Portugal + - CRUS + - VALPAÇOS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.531130680049308, 41.44043556459501, -7.170759769117502, + 41.78346931035576] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_valpacos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_valpacos + type: feature + crus_vendas_novas: + type: collection + title: CRUS VENDAS NOVAS + description: Carta do Regime de Uso do Solo - VENDAS NOVAS + keywords: + - Uso do Solo + - Portugal + - CRUS + - VENDAS NOVAS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.658425213244078, 38.542053461583244, -8.378400635885166, + 38.75473209403626] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vendas_novas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vendas_novas + type: feature + crus_viana_do_alentejo: + type: collection + title: CRUS VIANA DO ALENTEJO + description: Carta do Regime de Uso do Solo - VIANA DO ALENTEJO + keywords: + - Uso do Solo + - Portugal + - CRUS + - VIANA DO ALENTEJO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.322570785478547, 38.299525005160596, -7.908556020983056, + 38.48174317671224] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_viana_do_alentejo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_viana_do_alentejo + type: feature + crus_viana_do_castelo: + type: collection + title: CRUS VIANA DO CASTELO + description: Carta do Regime de Uso do Solo - VIANA DO CASTELO + keywords: + - Uso do Solo + - Portugal + - CRUS + - VIANA DO CASTELO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.881289976179941, 41.60653529644757, -8.642097258267968, + 41.829743981570424] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_viana_do_castelo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_viana_do_castelo + type: feature + crus_vidigueira: + type: collection + title: CRUS VIDIGUEIRA + description: Carta do Regime de Uso do Solo - VIDIGUEIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - VIDIGUEIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.880873500977787, 38.0640702831612, -7.486929175693277, 38.25806023920209] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vidigueira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vidigueira + type: feature + crus_vieira_do_minho: + type: collection + title: CRUS VIEIRA DO MINHO + description: Carta do Regime de Uso do Solo - VIEIRA DO MINHO + keywords: + - Uso do Solo + - Portugal + - CRUS + - VIEIRA DO MINHO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.259520997003998, 41.54640820928758, -7.98146735257646, 41.70077415731629] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vieira_do_minho/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vieira_do_minho + type: feature + crus_vila_de_rei: + type: collection + title: CRUS VILA DE REI + description: Carta do Regime de Uso do Solo - VILA DE REI + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA DE REI + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.238648748780927, 39.611448130038156, -8.050074615776401, + 39.75958604103437] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_de_rei/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_de_rei + type: feature + crus_vila_do_bispo: + type: collection + title: CRUS VILA DO BISPO + description: Carta do Regime de Uso do Solo - VILA DO BISPO + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA DO BISPO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.997146696502735, 36.99319417212212, -8.772736531163147, + 37.16549151034573] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_do_bispo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_do_bispo + type: feature + crus_vila_do_conde: + type: collection + title: CRUS VILA DO CONDE + description: Carta do Regime de Uso do Solo - VILA DO CONDE + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA DO CONDE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.768172748365224, 41.25540377100362, -8.611082671160206, + 41.42562013753717] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_do_conde/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_do_conde + type: feature + crus_vila_flor: + type: collection + title: CRUS VILA FLOR + description: Carta do Regime de Uso do Solo - VILA FLOR + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA FLOR + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.298174940754062, 41.22791551963657, -7.032632409463631, + 41.4127058712366] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_flor/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_flor + type: feature + crus_vila_franca_de_xira: + type: collection + title: CRUS VILA FRANCA DE XIRA + description: Carta do Regime de Uso do Solo - VILA FRANCA DE XIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA FRANCA DE XIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.118437877669734, 38.79324640326288, -8.841521811826523, + 39.03157079969822] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_franca_de_xira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_franca_de_xira + type: feature + crus_vila_nova_da_barquinha: + type: collection + title: CRUS VILA NOVA DA BARQUINHA + description: Carta do Regime de Uso do Solo - VILA NOVA DA BARQUINHA + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA NOVA DA BARQUINHA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.468956541385877, 39.44521318160618, -8.327037775032107, + 39.520701362199055] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_nova_da_barquinha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_nova_da_barquinha + type: feature + crus_vila_nova_de_cerveira: + type: collection + title: CRUS VILA NOVA DE CERVEIRA + description: Carta do Regime de Uso do Solo - VILA NOVA DE CERVEIRA + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA NOVA DE CERVEIRA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.785745588288453, 41.84667577190351, -8.637582447548038, + 41.99066267164393] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_nova_de_cerveira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_nova_de_cerveira + type: feature + crus_vila_nova_de_famalicao: + type: collection + title: CRUS VILA NOVA DE FAMALICÃO + description: Carta do Regime de Uso do Solo - VILA NOVA DE FAMALICÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA NOVA DE FAMALICÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.623321307688094, 41.338537315449535, -8.376800172776102, + 41.47882347134521] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_nova_de_famalicao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_nova_de_famalicao + type: feature + crus_vila_nova_de_foz_coa: + type: collection + title: CRUS VILA NOVA DE FOZ CÔA + description: Carta do Regime de Uso do Solo - VILA NOVA DE FOZ CÔA + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA NOVA DE FOZ CÔA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.345709104425579, 40.92284533778037, -6.976667410457307, + 41.1793505870973] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_nova_de_foz_coa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_nova_de_foz_coa + type: feature + crus_vila_nova_de_gaia: + type: collection + title: CRUS VILA NOVA DE GAIA + description: Carta do Regime de Uso do Solo - VILA NOVA DE GAIA + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA NOVA DE GAIA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.671283885033706, 41.00932664578574, -8.448763713168292, + 41.14743193416511] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_nova_de_gaia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_nova_de_gaia + type: feature + crus_vila_nova_de_paiva: + type: collection + title: CRUS VILA NOVA DE PAIVA + description: Carta do Regime de Uso do Solo - VILA NOVA DE PAIVA + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA NOVA DE PAIVA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.868114505544481, 40.76469680756168, -7.686796375334935, + 40.94669340423284] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_nova_de_paiva/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_nova_de_paiva + type: feature + crus_vila_nova_de_poiares: + type: collection + title: CRUS VILA NOVA DE POIARES + description: Carta do Regime de Uso do Solo - VILA NOVA DE POIARES + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA NOVA DE POIARES + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.340313324345566, 40.17604372200372, -8.163629269440293, + 40.254687561209685] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_nova_de_poiares/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_nova_de_poiares + type: feature + crus_vila_pouca_de_aguiar: + type: collection + title: CRUS VILA POUCA DE AGUIAR + description: Carta do Regime de Uso do Solo - VILA POUCA DE AGUIAR + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA POUCA DE AGUIAR + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.784675237419174, 41.39112192817451, -7.471420336032778, + 41.639743161609346] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_pouca_de_aguiar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_pouca_de_aguiar + type: feature + crus_vila_real: + type: collection + title: CRUS VILA REAL + description: Carta do Regime de Uso do Solo - VILA REAL + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA REAL + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.921363816965343, 41.17968460171452, -7.600295100644048, + 41.421526060528564] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_real/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_real + type: feature + crus_vila_real_de_santo_antonio: + type: collection + title: CRUS VILA REAL DE SANTO ANTÓNIO + description: Carta do Regime de Uso do Solo - VILA REAL DE SANTO ANTÓNIO + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA REAL DE SANTO ANTÓNIO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.574524588182835, 37.14297060570566, -7.405274515268735, + 37.26348456414612] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_real_de_santo_antonio/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_real_de_santo_antonio + type: feature + crus_vila_velha_de_rodao: + type: collection + title: CRUS VILA VELHA DE RÓDÃO + description: Carta do Regime de Uso do Solo - VILA VELHA DE RÓDÃO + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA VELHA DE RÓDÃO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.828848930640201, 39.537364902785946, -7.487946514192356, + 39.79519735031812] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_velha_de_rodao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_velha_de_rodao + type: feature + crus_vila_verde: + type: collection + title: CRUS VILA VERDE + description: Carta do Regime de Uso do Solo - VILA VERDE + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA VERDE + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.547353171915686, 41.56889332013318, -8.306162466960577, + 41.77061513796192] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_verde/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_verde + type: feature + crus_vila_vicosa: + type: collection + title: CRUS VILA VIÇOSA + description: Carta do Regime de Uso do Solo - VILA VIÇOSA + keywords: + - Uso do Solo + - Portugal + - CRUS + - VILA VIÇOSA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.499993381892446, 38.6712344985488, -7.207376193833639, 38.84802163120645] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vila_vicosa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vila_vicosa + type: feature + crus_vimioso: + type: collection + title: CRUS VIMIOSO + description: Carta do Regime de Uso do Solo - VIMIOSO + keywords: + - Uso do Solo + - Portugal + - CRUS + - VIMIOSO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.678098500337575, 41.44562599202837, -6.366744030206464, + 41.693267218646966] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vimioso/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vimioso + type: feature + crus_vinhais: + type: collection + title: CRUS VINHAIS + description: Carta do Regime de Uso do Solo - VINHAIS + keywords: + - Uso do Solo + - Portugal + - CRUS + - VINHAIS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.213590407767073, 41.671135395975504, -6.860942399005284, + 41.99076570767543] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vinhais/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vinhais + type: feature + crus_viseu: + type: collection + title: CRUS VISEU + description: Carta do Regime de Uso do Solo - VISEU + keywords: + - Uso do Solo + - Portugal + - CRUS + - VISEU + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.091588935060566, 40.53573247519819, -7.758984210461095, + 40.84259976820734] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_viseu/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_viseu + type: feature + crus_vizela: + type: collection + title: CRUS VIZELA + description: Carta do Regime de Uso do Solo - VIZELA + keywords: + - Uso do Solo + - Portugal + - CRUS + - VIZELA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.328056506088165, 41.34108632999144, -8.246102259968634, + 41.40580750553089] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vizela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vizela + type: feature + crus_vouzela: + type: collection + title: CRUS VOUZELA + description: Carta do Regime de Uso do Solo - VOUZELA + keywords: + - Uso do Solo + - Portugal + - CRUS + - VOUZELA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.27424655921338, 40.60062219651909, -8.007222403962944, 40.750078761074896] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_vouzela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_vouzela + type: feature + crus_agueda: + type: collection + title: CRUS ÁGUEDA + description: Carta do Regime de Uso do Solo - ÁGUEDA + keywords: + - Uso do Solo + - Portugal + - CRUS + - ÁGUEDA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.558151993661575, 40.495908361809164, -8.245383292349812, + 40.69429051766457] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_agueda/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_agueda + type: feature + crus_evora: + type: collection + title: CRUS ÉVORA + description: Carta do Regime de Uso do Solo - ÉVORA + keywords: + - Uso do Solo + - Portugal + - CRUS + - ÉVORA + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.165940194743918, 38.340525242076126, -7.554668334503842, + 38.76866165609316] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_evora/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_evora + type: feature + crus_ilhavo: + type: collection + title: CRUS ÍLHAVO + description: Carta do Regime de Uso do Solo - ÍLHAVO + keywords: + - Uso do Solo + - Portugal + - CRUS + - ÍLHAVO + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.766088884174833, 40.56244200923345, -8.618095418651656, + 40.65985505580722] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_ilhavo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_ilhavo + type: feature + crus_obidos: + type: collection + title: CRUS ÓBIDOS + description: Carta do Regime de Uso do Solo - ÓBIDOS + keywords: + - Uso do Solo + - Portugal + - CRUS + - ÓBIDOS + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/517c5023-04cc-47a4-99f7-bb32814dd62f + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.292006908408782, 39.305959402967964, -9.065505526239146, + 39.42785060392488] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_crus_obidos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_crus_obidos + type: feature + cos2018v3_abrantes: + type: collection + title: COS2018V3 Abrantes + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Abrantes + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.355566934194218, 39.233313649886455, -7.939457760052016, + 39.64649371592394] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_abrantes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_abrantes + type: feature + cos2018v3_aguiar_da_beira: + type: collection + title: COS2018V3 Aguiar da Beira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Aguiar da Beira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.628108604630781, 40.69030221857782, -7.421981867889016, + 40.873290078217835] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_aguiar_da_beira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_aguiar_da_beira + type: feature + cos2018v3_alandroal: + type: collection + title: COS2018V3 Alandroal + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Alandroal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.56366935399753, 38.430105675567766, -7.203714576671402, + 38.77406941401878] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_alandroal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_alandroal + type: feature + cos2018v3_albergaria_a_velha: + type: collection + title: COS2018V3 Albergaria-a-Velha + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Albergaria-a-Velha + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.63243327393885, 40.608066940481336, -8.407892567272732, + 40.78084738767177] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_albergaria_a_velha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_albergaria_a_velha + type: feature + cos2018v3_albufeira: + type: collection + title: COS2018V3 Albufeira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Albufeira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.329722203736427, 37.0715696544462, -8.126931670837, 37.21723190792165] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_albufeira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_albufeira + type: feature + cos2018v3_alcanena: + type: collection + title: COS2018V3 Alcanena + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Alcanena + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.764012488378313, 39.39880373541605, -8.616851788047123, + 39.56241167473518] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_alcanena/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_alcanena + type: feature + cos2018v3_alcobaca: + type: collection + title: COS2018V3 Alcobaça + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Alcobaça + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.150083496488833, 39.38482280293176, -8.865426538032926, + 39.74142301848951] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_alcobaca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_alcobaca + type: feature + cos2018v3_alcochete: + type: collection + title: COS2018V3 Alcochete + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Alcochete + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.031059899895212, 38.671371031563844, -8.810295823954384, + 38.82614196486276] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_alcochete/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_alcochete + type: feature + cos2018v3_alcoutim: + type: collection + title: COS2018V3 Alcoutim + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Alcoutim + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.896838242726884, 37.275569121321475, -7.437081855063554, + 37.52913066464757] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_alcoutim/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_alcoutim + type: feature + cos2018v3_alcacer_do_sal: + type: collection + title: COS2018V3 Alcácer do Sal + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Alcácer do Sal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.822763900076394, 38.17839579756052, -8.129696303784025, + 38.553105191691465] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_alcacer_do_sal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_alcacer_do_sal + type: feature + cos2018v3_alenquer: + type: collection + title: COS2018V3 Alenquer + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Alenquer + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.163891515355765, 39.00071613106392, -8.918675906214592, + 39.188714560187826] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_alenquer/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_alenquer + type: feature + cos2018v3_alfandega_da_fe: + type: collection + title: COS2018V3 Alfândega da Fé + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Alfândega da Fé + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.069548519453146, 41.23939921614345, -6.820483156086075, + 41.471725699566036] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_alfandega_da_fe/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_alfandega_da_fe + type: feature + cos2018v3_alijo: + type: collection + title: COS2018V3 Alijó + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Alijó + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.603685498867246, 41.179672363322865, -7.362126874851024, + 41.403605299480745] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_alijo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_alijo + type: feature + cos2018v3_aljezur: + type: collection + title: COS2018V3 Aljezur + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Aljezur + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.918709346961894, 37.14946914151132, -8.674145367596411, + 37.442947913416546] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_aljezur/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_aljezur + type: feature + cos2018v3_aljustrel: + type: collection + title: COS2018V3 Aljustrel + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Aljustrel + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.33619240975927, 37.78007394722319, -8.048129944572784, 38.00027776341993] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_aljustrel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_aljustrel + type: feature + cos2018v3_almada: + type: collection + title: COS2018V3 Almada + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Almada + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.262975324253272, 38.550321240870886, -9.128496031156699, + 38.68841397154696] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_almada/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_almada + type: feature + cos2018v3_almeida: + type: collection + title: COS2018V3 Almeida + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Almeida + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.051833246037483, 40.47668025626889, -6.794014437713779, + 40.78342014824925] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_almeida/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_almeida + type: feature + cos2018v3_almeirim: + type: collection + title: COS2018V3 Almeirim + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Almeirim + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.71178930922165, 39.092010735805744, -8.43892207905499, 39.243981952051584] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_almeirim/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_almeirim + type: feature + cos2018v3_almodovar: + type: collection + title: COS2018V3 Almodôvar + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Almodôvar + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.275778788286166, 37.31893672996505, -7.88654148022893, 37.63126591888559] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_almodovar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_almodovar + type: feature + cos2018v3_alpiarca: + type: collection + title: COS2018V3 Alpiarça + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Alpiarça + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.634009538630226, 39.1714759786947, -8.492708769056808, 39.30615762415465] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_alpiarca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_alpiarca + type: feature + cos2018v3_alter_do_chao: + type: collection + title: COS2018V3 Alter do Chão + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Alter do Chão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.878753197858093, 39.11588993555757, -7.521699533638866, + 39.331086699268575] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_alter_do_chao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_alter_do_chao + type: feature + cos2018v3_alvaiazere: + type: collection + title: COS2018V3 Alvaiázere + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Alvaiázere + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.483966563263515, 39.73089058288847, -8.301049090353642, + 39.90120439307878] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_alvaiazere/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_alvaiazere + type: feature + cos2018v3_alvito: + type: collection + title: COS2018V3 Alvito + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Alvito + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.16436867642642, 38.1505595720198, -7.926687506549813, 38.32934698549232] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_alvito/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_alvito + type: feature + cos2018v3_amadora: + type: collection + title: COS2018V3 Amadora + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Amadora + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.265283538582345, 38.721993186309234, -9.197828157656229, + 38.79698348427926] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_amadora/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_amadora + type: feature + cos2018v3_amarante: + type: collection + title: COS2018V3 Amarante + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Amarante + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.216313453407954, 41.189441405059426, -7.89404691030886, + 41.37519577527886] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_amarante/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_amarante + type: feature + cos2018v3_amares: + type: collection + title: COS2018V3 Amares + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Amares + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.433859185172842, 41.6032442902066, -8.241952871407312, 41.700174234299816] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_amares/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_amares + type: feature + cos2018v3_anadia: + type: collection + title: COS2018V3 Anadia + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Anadia + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.579820023896303, 40.39535981085992, -8.311494715428491, + 40.51252615170382] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_anadia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_anadia + type: feature + cos2018v3_ansiao: + type: collection + title: COS2018V3 Ansião + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Ansião + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.538812129848647, 39.85555893747882, -8.334789343136217, + 40.02672714549284] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_ansiao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_ansiao + type: feature + cos2018v3_arcos_de_valdevez: + type: collection + title: COS2018V3 Arcos de Valdevez + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Arcos de Valdevez + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.531008463690247, 41.790814768640814, -8.191715765401785, + 42.01868296841974] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_arcos_de_valdevez/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_arcos_de_valdevez + type: feature + cos2018v3_arganil: + type: collection + title: COS2018V3 Arganil + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Arganil + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.207357045651477, 40.136312532473845, -7.782391510881312, + 40.3041309036689] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_arganil/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_arganil + type: feature + cos2018v3_armamar: + type: collection + title: COS2018V3 Armamar + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Armamar + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.757791575005172, 41.019025944510204, -7.616007260291188, + 41.1630401631471] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_armamar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_armamar + type: feature + cos2018v3_arouca: + type: collection + title: COS2018V3 Arouca + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Arouca + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.434171032188054, 40.84484646314316, -8.089172179289955, + 41.01606088063408] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_arouca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_arouca + type: feature + cos2018v3_arraiolos: + type: collection + title: COS2018V3 Arraiolos + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Arraiolos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.153472152731851, 38.62785837823628, -7.673632379806323, + 38.9284164719445] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_arraiolos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_arraiolos + type: feature + cos2018v3_arronches: + type: collection + title: COS2018V3 Arronches + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Arronches + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.390067795644356, 39.00597697326352, -7.110342776455563, + 39.2082551169008] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_arronches/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_arronches + type: feature + cos2018v3_arruda_dos_vinhos: + type: collection + title: COS2018V3 Arruda dos Vinhos + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Arruda dos Vinhos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.178527253814304, 38.92143685359875, -9.021893505143375, + 39.02879453341587] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_arruda_dos_vinhos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_arruda_dos_vinhos + type: feature + cos2018v3_aveiro: + type: collection + title: COS2018V3 Aveiro + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Aveiro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.763645893606128, 40.528483668674944, -8.520964871585631, + 40.727553602062656] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_aveiro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_aveiro + type: feature + cos2018v3_avis: + type: collection + title: COS2018V3 Avis + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Avis + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.152002950739735, 38.94076676360927, -7.696666864270414, + 39.21861639180791] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_avis/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_avis + type: feature + cos2018v3_azambuja: + type: collection + title: COS2018V3 Azambuja + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Azambuja + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.004746369676903, 39.00613616941152, -8.781861006420497, + 39.25546747724322] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_azambuja/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_azambuja + type: feature + cos2018v3_baiao: + type: collection + title: COS2018V3 Baião + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Baião + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.115466380362017, 41.089584914900435, -7.875579307603225, + 41.248977517399375] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_baiao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_baiao + type: feature + cos2018v3_barcelos: + type: collection + title: COS2018V3 Barcelos + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Barcelos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.745894438661567, 41.41404662991324, -8.494542410121849, + 41.654379713533494] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_barcelos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_barcelos + type: feature + cos2018v3_barrancos: + type: collection + title: COS2018V3 Barrancos + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Barrancos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.210792697780569, 38.08851599076512, -6.931499466765644, + 38.22066273974429] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_barrancos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_barrancos + type: feature + cos2018v3_barreiro: + type: collection + title: COS2018V3 Barreiro + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Barreiro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.094855862838545, 38.57795926590013, -8.997141679769427, + 38.69011722439148] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_barreiro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_barreiro + type: feature + cos2018v3_batalha: + type: collection + title: COS2018V3 Batalha + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Batalha + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.873799325185237, 39.550868062482195, -8.671135664518301, + 39.69552914319536] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_batalha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_batalha + type: feature + cos2018v3_beja: + type: collection + title: COS2018V3 Beja + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Beja + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.083150980331014, 37.77646058859197, -7.632630609949218, + 38.162586717055675] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_beja/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_beja + type: feature + cos2018v3_belmonte: + type: collection + title: COS2018V3 Belmonte + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Belmonte + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.393070935620886, 40.24447686416686, -7.26999214336188, 40.416131795545965] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_belmonte/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_belmonte + type: feature + cos2018v3_benavente: + type: collection + title: COS2018V3 Benavente + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Benavente + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.968466086132118, 38.731490386510465, -8.652794438770707, + 39.031952839502914] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_benavente/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_benavente + type: feature + cos2018v3_bombarral: + type: collection + title: COS2018V3 Bombarral + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Bombarral + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.238990845799366, 39.21157731576655, -9.084784511219192, + 39.338242972193065] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_bombarral/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_bombarral + type: feature + cos2018v3_borba: + type: collection + title: COS2018V3 Borba + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Borba + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.564224507871092, 38.71301395574179, -7.391673061918233, + 38.92682763875491] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_borba/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_borba + type: feature + cos2018v3_boticas: + type: collection + title: COS2018V3 Boticas + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Boticas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.917869718476771, 41.578499005328666, -7.562724956293337, + 41.795303542669856] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_boticas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_boticas + type: feature + cos2018v3_braga: + type: collection + title: COS2018V3 Braga + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Braga + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.526085537027578, 41.46373040575681, -8.295470345970696, + 41.61720267787168] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_braga/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_braga + type: feature + cos2018v3_braganca: + type: collection + title: COS2018V3 Bragança + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Bragança + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.954484113073318, 41.53457672684672, -6.51551411784634, 41.99252128361319] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_braganca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_braganca + type: feature + cos2018v3_cabeceiras_de_basto: + type: collection + title: COS2018V3 Cabeceiras de Basto + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Cabeceiras de Basto + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.068900939914045, 41.44664460948185, -7.810676716546678, + 41.616825291551876] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_cabeceiras_de_basto/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_cabeceiras_de_basto + type: feature + cos2018v3_cadaval: + type: collection + title: COS2018V3 Cadaval + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Cadaval + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.17844037359116, 39.16762457037935, -8.975224499102815, 39.31198730862889] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_cadaval/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_cadaval + type: feature + cos2018v3_caldas_da_rainha: + type: collection + title: COS2018V3 Caldas da Rainha + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Caldas da Rainha + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.235782204590109, 39.29142777738643, -8.982495561713645, + 39.509770397456805] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_caldas_da_rainha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_caldas_da_rainha + type: feature + cos2018v3_caminha: + type: collection + title: COS2018V3 Caminha + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Caminha + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.876943040070014, 41.7807459293871, -8.670101953186851, 41.91736930703457] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_caminha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_caminha + type: feature + cos2018v3_campo_maior: + type: collection + title: COS2018V3 Campo Maior + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Campo Maior + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.149356628587914, 38.90585390231695, -6.951130313002546, + 39.11838988198803] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_campo_maior/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_campo_maior + type: feature + cos2018v3_cantanhede: + type: collection + title: COS2018V3 Cantanhede + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Cantanhede + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.846326484269413, 40.24529868063039, -8.480992052656882, + 40.485582796458715] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_cantanhede/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_cantanhede + type: feature + cos2018v3_carrazeda_de_ansiaes: + type: collection + title: COS2018V3 Carrazeda de Ansiães + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Carrazeda de Ansiães + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.431892067944764, 41.135490168551264, -7.18654053120992, + 41.33852055499973] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_carrazeda_de_ansiaes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_carrazeda_de_ansiaes + type: feature + cos2018v3_carregal_do_sal: + type: collection + title: COS2018V3 Carregal do Sal + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Carregal do Sal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.068526966418252, 40.380580941803494, -7.90310198595873, + 40.53807021475163] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_carregal_do_sal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_carregal_do_sal + type: feature + cos2018v3_cartaxo: + type: collection + title: COS2018V3 Cartaxo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Cartaxo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.91312469726831, 39.058286407328566, -8.682848983944513, + 39.21174731801607] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_cartaxo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_cartaxo + type: feature + cos2018v3_cascais: + type: collection + title: COS2018V3 Cascais + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Cascais + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.486554327418599, 38.67588584356416, -9.308073175404493, + 38.76899274132591] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_cascais/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_cascais + type: feature + cos2018v3_castanheira_de_pera: + type: collection + title: COS2018V3 Castanheira de Pêra + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Castanheira de Pêra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.241456358818207, 39.945946966248364, -8.142631357035942, + 40.08973602820804] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_castanheira_de_pera/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_castanheira_de_pera + type: feature + cos2018v3_castelo_branco: + type: collection + title: COS2018V3 Castelo Branco + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Castelo Branco + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.850755138272135, 39.640846489090485, -7.179153467544413, + 40.083647896915316] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_castelo_branco/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_castelo_branco + type: feature + cos2018v3_castelo_de_paiva: + type: collection + title: COS2018V3 Castelo de Paiva + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Castelo de Paiva + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.40092280007353, 40.96225874301463, -8.229954699720238, 41.08015455925221] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_castelo_de_paiva/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_castelo_de_paiva + type: feature + cos2018v3_castelo_de_vide: + type: collection + title: COS2018V3 Castelo de Vide + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Castelo de Vide + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.598169585602699, 39.36765703655685, -7.378671602058858, + 39.58417750148851] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_castelo_de_vide/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_castelo_de_vide + type: feature + cos2018v3_castro_daire: + type: collection + title: COS2018V3 Castro Daire + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Castro Daire + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.132607388825441, 40.7867223372839, -7.75008046208609, 41.02662059386339] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_castro_daire/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_castro_daire + type: feature + cos2018v3_castro_marim: + type: collection + title: COS2018V3 Castro Marim + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Castro Marim + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.637074168675968, 37.167176814101275, -7.412571232616084, + 37.39456986705657] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_castro_marim/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_castro_marim + type: feature + cos2018v3_castro_verde: + type: collection + title: COS2018V3 Castro Verde + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Castro Verde + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.246538171709334, 37.56124021613213, -7.849021598842421, + 37.82734816392023] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_castro_verde/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_castro_verde + type: feature + cos2018v3_celorico_da_beira: + type: collection + title: COS2018V3 Celorico da Beira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Celorico da Beira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.511260975849336, 40.51518405607446, -7.255362795216406, + 40.70928688015632] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_celorico_da_beira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_celorico_da_beira + type: feature + cos2018v3_celorico_de_basto: + type: collection + title: COS2018V3 Celorico de Basto + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Celorico de Basto + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.146612852777352, 41.318798262035266, -7.936942611663053, + 41.4879364166162] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_celorico_de_basto/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_celorico_de_basto + type: feature + cos2018v3_chamusca: + type: collection + title: COS2018V3 Chamusca + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Chamusca + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.580532488576585, 39.07113263922875, -8.172599450516861, + 39.46378966278961] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_chamusca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_chamusca + type: feature + cos2018v3_chaves: + type: collection + title: COS2018V3 Chaves + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Chaves + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.620555866226383, 41.581273648306585, -7.19294785152994, + 41.88001005723486] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_chaves/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_chaves + type: feature + cos2018v3_cinfaes: + type: collection + title: COS2018V3 Cinfães + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Cinfães + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.263992093452131, 40.9647368220688, -7.949945420796237, 41.10081953165828] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_cinfaes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_cinfaes + type: feature + cos2018v3_coimbra: + type: collection + title: COS2018V3 Coimbra + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Coimbra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.591675912308059, 40.09892276112516, -8.312903551763641, + 40.35201458049846] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_coimbra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_coimbra + type: feature + cos2018v3_condeixa_a_nova: + type: collection + title: COS2018V3 Condeixa-a-Nova + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Condeixa-a-Nova + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.59144575363068, 40.029772724814535, -8.398198870138417, + 40.17855290571042] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_condeixa_a_nova/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_condeixa_a_nova + type: feature + cos2018v3_constancia: + type: collection + title: COS2018V3 Constância + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Constância + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.34452207911065, 39.33732035691406, -8.240817250426684, 39.5069995255623] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_constancia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_constancia + type: feature + cos2018v3_coruche: + type: collection + title: COS2018V3 Coruche + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Coruche + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.72952107322383, 38.762749253492224, -8.124310332836215, + 39.11010461054843] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_coruche/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_coruche + type: feature + cos2018v3_covilha: + type: collection + title: COS2018V3 Covilhã + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Covilhã + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.809044874149199, 40.130039647380165, -7.34377655885513, + 40.40183506238474] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_covilha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_covilha + type: feature + cos2018v3_crato: + type: collection + title: COS2018V3 Crato + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Crato + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.90128205190913, 39.17735518309078, -7.467105173409045, 39.43877049927655] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_crato/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_crato + type: feature + cos2018v3_cuba: + type: collection + title: COS2018V3 Cuba + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Cuba + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.003305075028491, 38.10582735727577, -7.837003638064871, + 38.30527246651026] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_cuba/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_cuba + type: feature + cos2018v3_elvas: + type: collection + title: COS2018V3 Elvas + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Elvas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.424292277316752, 38.75149734079531, -7.032858088121791, + 39.057186866676766] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_elvas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_elvas + type: feature + cos2018v3_entroncamento: + type: collection + title: COS2018V3 Entroncamento + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Entroncamento + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.499632360775307, 39.43950823043361, -8.45565752795772, 39.49244167089482] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_entroncamento/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_entroncamento + type: feature + cos2018v3_espinho: + type: collection + title: COS2018V3 Espinho + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Espinho + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.653119328156153, 40.964778276523035, -8.593622923990694, + 41.025766443872385] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_espinho/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_espinho + type: feature + cos2018v3_esposende: + type: collection + title: COS2018V3 Esposende + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Esposende + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.811574442094072, 41.46613752687397, -8.700683587726616, + 41.62493583232298] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_esposende/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_esposende + type: feature + cos2018v3_estarreja: + type: collection + title: COS2018V3 Estarreja + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Estarreja + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.667180323447216, 40.68880385544341, -8.511389539572518, + 40.83370259035522] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_estarreja/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_estarreja + type: feature + cos2018v3_estremoz: + type: collection + title: COS2018V3 Estremoz + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Estremoz + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.799950978273313, 38.68486374493536, -7.452713736131128, + 39.008438213334934] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_estremoz/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_estremoz + type: feature + cos2018v3_fafe: + type: collection + title: COS2018V3 Fafe + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Fafe + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.247960909236081, 41.372830048640516, -8.055186268339614, + 41.56594691018811] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_fafe/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_fafe + type: feature + cos2018v3_faro: + type: collection + title: COS2018V3 Faro + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Faro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.00648949636786, 36.96171046617659, -7.809354462736643, 37.14578117909135] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_faro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_faro + type: feature + cos2018v3_felgueiras: + type: collection + title: COS2018V3 Felgueiras + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Felgueiras + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.280115364279125, 41.29391230772659, -8.109617131037023, + 41.41187337595971] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_felgueiras/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_felgueiras + type: feature + cos2018v3_ferreira_do_alentejo: + type: collection + title: COS2018V3 Ferreira do Alentejo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Ferreira do Alentejo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.409654210900403, 37.964667860307756, -7.977061440354062, + 38.2240720743936] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_ferreira_do_alentejo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_ferreira_do_alentejo + type: feature + cos2018v3_ferreira_do_zezere: + type: collection + title: COS2018V3 Ferreira do Zêzere + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Ferreira do Zêzere + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.432607370511247, 39.64426294848466, -8.22541507107768, 39.80349302389606] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_ferreira_do_zezere/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_ferreira_do_zezere + type: feature + cos2018v3_figueira_da_foz: + type: collection + title: COS2018V3 Figueira da Foz + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Figueira da Foz + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.90924368738838, 40.012558636934486, -8.699875484156792, + 40.32688088447043] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_figueira_da_foz/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_figueira_da_foz + type: feature + cos2018v3_figueira_de_castelo_rodrigo: + type: collection + title: COS2018V3 Figueira de Castelo Rodrigo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Figueira de Castelo Rodrigo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.122247157843893, 40.748509598923725, -6.800155289753206, + 41.03641258593586] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_figueira_de_castelo_rodrigo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_figueira_de_castelo_rodrigo + type: feature + cos2018v3_figueiro_dos_vinhos: + type: collection + title: COS2018V3 Figueiró dos Vinhos + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Figueiró dos Vinhos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.363975322147962, 39.79321383621165, -8.209749042712131, + 40.06733769569397] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_figueiro_dos_vinhos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_figueiro_dos_vinhos + type: feature + cos2018v3_fornos_de_algodres: + type: collection + title: COS2018V3 Fornos de Algodres + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Fornos de Algodres + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.589333557609799, 40.55759312874592, -7.419851062989698, + 40.75809167169744] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_fornos_de_algodres/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_fornos_de_algodres + type: feature + cos2018v3_freixo_de_espada_a_cinta: + type: collection + title: COS2018V3 Freixo de Espada à Cinta + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Freixo de Espada à Cinta + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.995189024845416, 41.02454225341558, -6.688263188915817, + 41.24860007951692] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_freixo_de_espada_a_cinta/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_freixo_de_espada_a_cinta + type: feature + cos2018v3_fronteira: + type: collection + title: COS2018V3 Fronteira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Fronteira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.77249079893488, 38.99066926946148, -7.512051346703374, 39.16703047460515] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_fronteira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_fronteira + type: feature + cos2018v3_fundao: + type: collection + title: COS2018V3 Fundão + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Fundão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.817282551413117, 39.97766549178999, -7.251902665534207, + 40.27235491904106] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_fundao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_fundao + type: feature + cos2018v3_gaviao: + type: collection + title: COS2018V3 Gavião + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Gavião + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.008894383568483, 39.33406156926789, -7.745448773394991, + 39.56508587269577] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_gaviao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_gaviao + type: feature + cos2018v3_golega: + type: collection + title: COS2018V3 Golegã + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Golegã + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.591263969102009, 39.316503734462614, -8.434543614054606, + 39.45965535848252] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_golega/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_golega + type: feature + cos2018v3_gondomar: + type: collection + title: COS2018V3 Gondomar + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Gondomar + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.584110501906926, 41.00138011574352, -8.372570741476625, + 41.20331791266854] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_gondomar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_gondomar + type: feature + cos2018v3_gouveia: + type: collection + title: COS2018V3 Gouveia + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Gouveia + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.742100300259024, 40.38757064198966, -7.434258661993456, + 40.60792069195691] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_gouveia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_gouveia + type: feature + cos2018v3_grandola: + type: collection + title: COS2018V3 Grândola + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Grândola + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.912867460989983, 38.02345203723386, -8.238175684147718, + 38.5053433601833] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_grandola/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_grandola + type: feature + cos2018v3_guarda: + type: collection + title: COS2018V3 Guarda + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Guarda + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.467313039789879, 40.380607652682485, -7.032743673127765, + 40.70096374686522] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_guarda/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_guarda + type: feature + cos2018v3_guimaraes: + type: collection + title: COS2018V3 Guimarães + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Guimarães + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.43572487933555, 41.361992841664794, -8.188370276365793, + 41.5692483222496] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_guimaraes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_guimaraes + type: feature + cos2018v3_gois: + type: collection + title: COS2018V3 Góis + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Góis + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.180394023786267, 39.960232744937265, -7.948666376617036, + 40.212862137284354] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_gois/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_gois + type: feature + cos2018v3_idanha_a_nova: + type: collection + title: COS2018V3 Idanha-a-Nova + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Idanha-a-Nova + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.361710278934612, 39.65307184888036, -6.863785074316655, + 40.10067327850242] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_idanha_a_nova/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_idanha_a_nova + type: feature + cos2018v3_lagoa: + type: collection + title: COS2018V3 Lagoa + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Lagoa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.532414763582429, 37.08532768814392, -8.369361466447582, + 37.17988328517243] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_lagoa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_lagoa + type: feature + cos2018v3_lagos: + type: collection + title: COS2018V3 Lagos + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Lagos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.85321303431254, 37.071222056978165, -8.61915011127207, 37.23502306703343] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_lagos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_lagos + type: feature + cos2018v3_lamego: + type: collection + title: COS2018V3 Lamego + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Lamego + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.91568120045839, 40.98150401071074, -7.729966101330276, 41.16186692836949] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_lamego/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_lamego + type: feature + cos2018v3_leiria: + type: collection + title: COS2018V3 Leiria + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Leiria + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.968165905730054, 39.63687445010723, -8.623335342653194, + 39.965426403925036] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_leiria/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_leiria + type: feature + cos2018v3_lisboa: + type: collection + title: COS2018V3 Lisboa + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Lisboa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.237942948162196, 38.68003265083062, -9.08633277485445, 38.79675969109249] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_lisboa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_lisboa + type: feature + cos2018v3_loule: + type: collection + title: COS2018V3 Loulé + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Loulé + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.232007886842169, 37.0102697656286, -7.878284375984409, 37.41825822324747] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_loule/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_loule + type: feature + cos2018v3_loures: + type: collection + title: COS2018V3 Loures + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Loures + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.246001099118741, 38.77480535575094, -9.068755630190022, + 38.94091376260094] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_loures/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_loures + type: feature + cos2018v3_lourinha: + type: collection + title: COS2018V3 Lourinhã + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Lourinhã + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.351607330023237, 39.17449870345955, -9.175870264209104, + 39.31772866134255] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_lourinha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_lourinha + type: feature + cos2018v3_lousada: + type: collection + title: COS2018V3 Lousada + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Lousada + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.339752651066453, 41.23081087127719, -8.191496462882661, + 41.35125965939943] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_lousada/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_lousada + type: feature + cos2018v3_lousa: + type: collection + title: COS2018V3 Lousã + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Lousã + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.311468817345263, 40.05208071145879, -8.151526896907367, + 40.205548113342495] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_lousa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_lousa + type: feature + cos2018v3_macedo_de_cavaleiros: + type: collection + title: COS2018V3 Macedo de Cavaleiros + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Macedo de Cavaleiros + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.12955667995605, 41.40368950804641, -6.65856129922648, 41.71134257380055] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_macedo_de_cavaleiros/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_macedo_de_cavaleiros + type: feature + cos2018v3_mafra: + type: collection + title: COS2018V3 Mafra + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mafra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.427782774962415, 38.86243232786286, -9.159432454752608, + 39.06471837916571] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_mafra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_mafra + type: feature + cos2018v3_maia: + type: collection + title: COS2018V3 Maia + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Maia + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.693983792435706, 41.17963208525133, -8.515264273076616, + 41.29536884690238] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_maia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_maia + type: feature + cos2018v3_mangualde: + type: collection + title: COS2018V3 Mangualde + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mangualde + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.896908642558642, 40.52592422856755, -7.561751234602266, + 40.65153528359722] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_mangualde/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_mangualde + type: feature + cos2018v3_manteigas: + type: collection + title: COS2018V3 Manteigas + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Manteigas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.612917222654292, 40.311270064803026, -7.41885081742079, + 40.46156155506276] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_manteigas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_manteigas + type: feature + cos2018v3_marco_de_canaveses: + type: collection + title: COS2018V3 Marco de Canaveses + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Marco de Canaveses + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.292982880691849, 41.06418354047162, -8.041279097950405, + 41.259042756815816] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_marco_de_canaveses/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_marco_de_canaveses + type: feature + cos2018v3_marinha_grande: + type: collection + title: COS2018V3 Marinha Grande + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Marinha Grande + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.040260486219593, 39.688472890936936, -8.868020691161686, + 39.89065622647592] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_marinha_grande/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_marinha_grande + type: feature + cos2018v3_marvao: + type: collection + title: COS2018V3 Marvão + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Marvão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.432882925992456, 39.31292490039862, -7.294211431874052, + 39.4952683667008] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_marvao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_marvao + type: feature + cos2018v3_matosinhos: + type: collection + title: COS2018V3 Matosinhos + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Matosinhos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.72915780721839, 41.17149003386437, -8.595447869897784, 41.27311470199227] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_matosinhos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_matosinhos + type: feature + cos2018v3_macao: + type: collection + title: COS2018V3 Mação + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mação + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.108310118213758, 39.4694045747295, -7.808988144142566, 39.747834058940086] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_macao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_macao + type: feature + cos2018v3_mealhada: + type: collection + title: COS2018V3 Mealhada + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mealhada + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.529953590310617, 40.27880920382503, -8.353757518211609, + 40.416380080234056] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_mealhada/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_mealhada + type: feature + cos2018v3_melgaco: + type: collection + title: COS2018V3 Melgaço + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Melgaço + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.342333139823271, 41.923600361552964, -8.082765176784426, + 42.154311127409436] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_melgaco/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_melgaco + type: feature + cos2018v3_mesao_frio: + type: collection + title: COS2018V3 Mesão Frio + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mesão Frio + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.914410539720258, 41.11872693811802, -7.820413872138225, + 41.20244000140309] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_mesao_frio/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_mesao_frio + type: feature + cos2018v3_mira: + type: collection + title: COS2018V3 Mira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.825676682085215, 40.37100376854673, -8.681974545504898, + 40.52036476110174] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_mira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_mira + type: feature + cos2018v3_miranda_do_corvo: + type: collection + title: COS2018V3 Miranda do Corvo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Miranda do Corvo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.405620965888954, 40.026057647877614, -8.24218833100989, + 40.19437714780404] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_miranda_do_corvo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_miranda_do_corvo + type: feature + cos2018v3_miranda_do_douro: + type: collection + title: COS2018V3 Miranda do Douro + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Miranda do Douro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.53252369958769, 41.34351912816115, -6.189159307482959, 41.676405240465776] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_miranda_do_douro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_miranda_do_douro + type: feature + cos2018v3_mirandela: + type: collection + title: COS2018V3 Mirandela + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mirandela + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.36686358353932, 41.33369400930741, -7.0291872368749, 41.73522514280672] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_mirandela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_mirandela + type: feature + cos2018v3_mogadouro: + type: collection + title: COS2018V3 Mogadouro + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mogadouro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.920933064480737, 41.19343802410898, -6.418147398124363, + 41.467322522881474] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_mogadouro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_mogadouro + type: feature + cos2018v3_moimenta_da_beira: + type: collection + title: COS2018V3 Moimenta da Beira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Moimenta da Beira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.757334403347126, 40.85357090453381, -7.530986589675204, + 41.05910703269347] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_moimenta_da_beira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_moimenta_da_beira + type: feature + cos2018v3_moita: + type: collection + title: COS2018V3 Moita + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Moita + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.050625140956935, 38.6012146542486, -8.944813174704963, 38.69686718955946] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_moita/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_moita + type: feature + cos2018v3_monchique: + type: collection + title: COS2018V3 Monchique + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Monchique + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.755133622310234, 37.209817860369654, -8.419978659750859, + 37.41198454247805] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_monchique/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_monchique + type: feature + cos2018v3_mondim_de_basto: + type: collection + title: COS2018V3 Mondim de Basto + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mondim de Basto + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.981148561779599, 41.302667084963055, -7.788687376491727, + 41.491792182414535] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_mondim_de_basto/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_mondim_de_basto + type: feature + cos2018v3_monforte: + type: collection + title: COS2018V3 Monforte + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Monforte + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.568108991070073, 38.86491572046194, -7.297958327802554, + 39.19062850435691] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_monforte/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_monforte + type: feature + cos2018v3_montalegre: + type: collection + title: COS2018V3 Montalegre + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Montalegre + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.11946507337715, 41.58689798345226, -7.579528136317313, 41.92709574946961] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_montalegre/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_montalegre + type: feature + cos2018v3_montemor_o_novo: + type: collection + title: COS2018V3 Montemor-o-Novo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Montemor-o-Novo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.582709479270688, 38.436844889713626, -8.029076523245145, + 38.86910916432609] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_montemor_o_novo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_montemor_o_novo + type: feature + cos2018v3_montemor_o_velho: + type: collection + title: COS2018V3 Montemor-o-Velho + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Montemor-o-Velho + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.775123540551299, 40.11210406109706, -8.54750925677364, 40.311044435328576] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_montemor_o_velho/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_montemor_o_velho + type: feature + cos2018v3_montijo: + type: collection + title: COS2018V3 Montijo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Montijo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.049840836189398, 38.64468964181376, -8.490972125626806, + 38.8454230963684] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_montijo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_montijo + type: feature + cos2018v3_moncao: + type: collection + title: COS2018V3 Monção + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Monção + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.546840575187531, 41.96573891762816, -8.28946954229364, 42.09049660627945] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_moncao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_moncao + type: feature + cos2018v3_mora: + type: collection + title: COS2018V3 Mora + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mora + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.27218836264627, 38.804968205162716, -7.8897871623408, 39.02693144992248] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_mora/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_mora + type: feature + cos2018v3_mortagua: + type: collection + title: COS2018V3 Mortágua + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mortágua + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.35944750078433, 40.32263823786809, -8.15763416420313, 40.51696397821156] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_mortagua/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_mortagua + type: feature + cos2018v3_moura: + type: collection + title: COS2018V3 Moura + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Moura + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.532777272496472, 37.96060655159417, -6.986829730095821, + 38.33114612481509] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_moura/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_moura + type: feature + cos2018v3_mourao: + type: collection + title: COS2018V3 Mourão + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mourão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.430580627783664, 38.15465013191799, -7.106776071548042, + 38.4403525691553] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_mourao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_mourao + type: feature + cos2018v3_murtosa: + type: collection + title: COS2018V3 Murtosa + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Murtosa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.734851809081354, 40.70208713282574, -8.593700921311282, + 40.8196334832146] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_murtosa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_murtosa + type: feature + cos2018v3_murca: + type: collection + title: COS2018V3 Murça + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Murça + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.58877640925565, 41.32401392914522, -7.314167332058389, 41.5278653564947] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_murca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_murca + type: feature + cos2018v3_mertola: + type: collection + title: COS2018V3 Mértola + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mértola + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.934171881069331, 37.43199792676132, -7.426353438102667, + 37.84940777158061] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_mertola/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_mertola + type: feature + cos2018v3_meda: + type: collection + title: COS2018V3 Mêda + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Mêda + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.379992057402914, 40.82313228938767, -7.133495418700937, + 41.037484832282885] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_meda/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_meda + type: feature + cos2018v3_nazare: + type: collection + title: COS2018V3 Nazaré + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Nazaré + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.115448785639275, 39.5110419693848, -8.970956728458637, 39.65011939852541] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_nazare/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_nazare + type: feature + cos2018v3_nelas: + type: collection + title: COS2018V3 Nelas + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Nelas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.943489851579277, 40.45601604501882, -7.748499843681937, + 40.58873012915381] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_nelas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_nelas + type: feature + cos2018v3_nisa: + type: collection + title: COS2018V3 Nisa + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Nisa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.882926799823199, 39.37723629583487, -7.480471108878556, + 39.663679579185384] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_nisa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_nisa + type: feature + cos2018v3_odemira: + type: collection + title: COS2018V3 Odemira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Odemira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.8195340633807, 37.373718975994876, -8.311868235445393, 37.87090925143604] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_odemira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_odemira + type: feature + cos2018v3_odivelas: + type: collection + title: COS2018V3 Odivelas + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Odivelas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.241120012087586, 38.760221180048084, -9.149887733400911, + 38.830530108664185] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_odivelas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_odivelas + type: feature + cos2018v3_oeiras: + type: collection + title: COS2018V3 Oeiras + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Oeiras + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.32967649716713, 38.673146905250086, -9.2112112122183, 38.75195049275766] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_oeiras/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_oeiras + type: feature + cos2018v3_oleiros: + type: collection + title: COS2018V3 Oleiros + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Oleiros + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.08822960075689, 39.810703665883274, -7.691088899746884, + 40.059148654927974] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_oleiros/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_oleiros + type: feature + cos2018v3_olhao: + type: collection + title: COS2018V3 Olhão + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Olhão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.88976550756828, 36.998080691070825, -7.723360982076801, + 37.131162013974624] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_olhao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_olhao + type: feature + cos2018v3_oliveira_de_azemeis: + type: collection + title: COS2018V3 Oliveira de Azeméis + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Oliveira de Azeméis + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.550859416535495, 40.75876451293272, -8.38511984351335, 40.93740814620531] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_oliveira_de_azemeis/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_oliveira_de_azemeis + type: feature + cos2018v3_oliveira_de_frades: + type: collection + title: COS2018V3 Oliveira de Frades + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Oliveira de Frades + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.333587931831321, 40.563661940865714, -8.129546297196056, + 40.80392676464404] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_oliveira_de_frades/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_oliveira_de_frades + type: feature + cos2018v3_oliveira_do_bairro: + type: collection + title: COS2018V3 Oliveira do Bairro + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Oliveira do Bairro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.63078334205111, 40.46550445940288, -8.459209346059362, 40.56394696549522] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_oliveira_do_bairro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_oliveira_do_bairro + type: feature + cos2018v3_oliveira_do_hospital: + type: collection + title: COS2018V3 Oliveira do Hospital + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Oliveira do Hospital + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.981735554722249, 40.25942650030315, -7.758212772943534, + 40.498611884647936] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_oliveira_do_hospital/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_oliveira_do_hospital + type: feature + cos2018v3_ourique: + type: collection + title: COS2018V3 Ourique + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Ourique + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.466790814975058, 37.40925904742235, -8.13575880413532, 37.8626537210992] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_ourique/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_ourique + type: feature + cos2018v3_ourem: + type: collection + title: COS2018V3 Ourém + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Ourém + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.70225150011481, 39.535819236885416, -8.423082007200076, + 39.838729173911496] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_ourem/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_ourem + type: feature + cos2018v3_ovar: + type: collection + title: COS2018V3 Ovar + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Ovar + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.695980970879164, 40.79573150205535, -8.523237082000868, + 40.976179452736716] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_ovar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_ovar + type: feature + cos2018v3_palmela: + type: collection + title: COS2018V3 Palmela + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Palmela + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.025908380493423, 38.51219602705371, -8.612390709273955, + 38.74167663067599] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_palmela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_palmela + type: feature + cos2018v3_pampilhosa_da_serra: + type: collection + title: COS2018V3 Pampilhosa da Serra + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Pampilhosa da Serra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.132729931120101, 39.93281125586159, -7.73175549835099, 40.21090120972442] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_pampilhosa_da_serra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_pampilhosa_da_serra + type: feature + cos2018v3_paredes: + type: collection + title: COS2018V3 Paredes + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Paredes + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.473972032999253, 41.06829277242905, -8.296195662940336, + 41.25977143692978] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_paredes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_paredes + type: feature + cos2018v3_paredes_de_coura: + type: collection + title: COS2018V3 Paredes de Coura + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Paredes de Coura + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.675386693593266, 41.84433566570484, -8.488548675470177, + 41.98257131558974] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_paredes_de_coura/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_paredes_de_coura + type: feature + cos2018v3_pacos_de_ferreira: + type: collection + title: COS2018V3 Paços de Ferreira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Paços de Ferreira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.452464201740812, 41.242461973229624, -8.317297448156133, + 41.33722313096585] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_pacos_de_ferreira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_pacos_de_ferreira + type: feature + cos2018v3_pedrogao_grande: + type: collection + title: COS2018V3 Pedrógão Grande + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Pedrógão Grande + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.261407685722336, 39.85025546077296, -8.108037790899322, + 40.03646097107034] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_pedrogao_grande/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_pedrogao_grande + type: feature + cos2018v3_penacova: + type: collection + title: COS2018V3 Penacova + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Penacova + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.389650575903316, 40.2186148592499, -8.108248032688866, 40.370801412138526] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_penacova/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_penacova + type: feature + cos2018v3_penafiel: + type: collection + title: COS2018V3 Penafiel + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Penafiel + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.392568954719971, 41.0401032980016, -8.16895875785295, 41.24800948897065] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_penafiel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_penafiel + type: feature + cos2018v3_penalva_do_castelo: + type: collection + title: COS2018V3 Penalva do Castelo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Penalva do Castelo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.783968538907506, 40.62417759676759, -7.535141759735289, + 40.72647849187548] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_penalva_do_castelo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_penalva_do_castelo + type: feature + cos2018v3_penamacor: + type: collection + title: COS2018V3 Penamacor + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Penamacor + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.319242582676601, 40.04917789229265, -6.932238575574599, + 40.324642422719776] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_penamacor/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_penamacor + type: feature + cos2018v3_penedono: + type: collection + title: COS2018V3 Penedono + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Penedono + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.461456127365883, 40.90452202095902, -7.325272217607708, + 41.07012969051496] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_penedono/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_penedono + type: feature + cos2018v3_penela: + type: collection + title: COS2018V3 Penela + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Penela + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.47458666853901, 39.923786628869195, -8.27011859406082, 40.08518864843029] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_penela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_penela + type: feature + cos2018v3_peniche: + type: collection + title: COS2018V3 Peniche + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Peniche + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.517029080454028, 39.28345873514515, -9.256431421371843, + 39.42106453285238] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_peniche/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_peniche + type: feature + cos2018v3_peso_da_regua: + type: collection + title: COS2018V3 Peso da Régua + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Peso da Régua + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.894089762690281, 41.141488509527775, -7.648177638488291, + 41.24204802372021] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_peso_da_regua/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_peso_da_regua + type: feature + cos2018v3_pinhel: + type: collection + title: COS2018V3 Pinhel + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Pinhel + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.262444255477398, 40.58764936933665, -6.953832148032321, + 40.97121879957972] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_pinhel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_pinhel + type: feature + cos2018v3_pombal: + type: collection + title: COS2018V3 Pombal + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Pombal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.93223254745858, 39.776892808392994, -8.46999088763891, 40.04550292681376] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_pombal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_pombal + type: feature + cos2018v3_ponte_da_barca: + type: collection + title: COS2018V3 Ponte da Barca + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Ponte da Barca + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.479861562197808, 41.732261992988555, -8.161772354326795, + 41.879091665831815] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_ponte_da_barca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_ponte_da_barca + type: feature + cos2018v3_ponte_de_lima: + type: collection + title: COS2018V3 Ponte de Lima + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Ponte de Lima + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.699715669922647, 41.62367065692657, -8.461479746472852, + 41.87028780628238] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_ponte_de_lima/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_ponte_de_lima + type: feature + cos2018v3_ponte_de_sor: + type: collection + title: COS2018V3 Ponte de Sor + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Ponte de Sor + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.343869930097744, 38.978215966000256, -7.824360875421694, + 39.38463395965249] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_ponte_de_sor/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_ponte_de_sor + type: feature + cos2018v3_portalegre: + type: collection + title: COS2018V3 Portalegre + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Portalegre + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.558526713269307, 39.146235849019895, -7.231471693082903, + 39.39874242169016] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_portalegre/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_portalegre + type: feature + cos2018v3_portel: + type: collection + title: COS2018V3 Portel + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Portel + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.93649194016722, 38.18845398256607, -7.457194903195194, 38.43860358851756] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_portel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_portel + type: feature + cos2018v3_portimao: + type: collection + title: COS2018V3 Portimão + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Portimão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.684664933197661, 37.10841885973309, -8.485203418094397, + 37.279916851590144] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_portimao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_portimao + type: feature + cos2018v3_porto: + type: collection + title: COS2018V3 Porto + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Porto + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.691294069420442, 41.13835067971358, -8.552613455058339, + 41.18593530519972] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_porto/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_porto + type: feature + cos2018v3_porto_de_mos: + type: collection + title: COS2018V3 Porto de Mós + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Porto de Mós + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.933562358998964, 39.46525100895433, -8.687380355469505, + 39.651512374057326] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_porto_de_mos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_porto_de_mos + type: feature + cos2018v3_proenca_a_nova: + type: collection + title: COS2018V3 Proença-a-Nova + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Proença-a-Nova + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.03575370222304, 39.565783196408695, -7.739666369805511, + 39.87060795417982] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_proenca_a_nova/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_proenca_a_nova + type: feature + cos2018v3_povoa_de_lanhoso: + type: collection + title: COS2018V3 Póvoa de Lanhoso + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Póvoa de Lanhoso + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.344309949130823, 41.51857089052586, -8.14692379819111, 41.65591140680206] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_povoa_de_lanhoso/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_povoa_de_lanhoso + type: feature + cos2018v3_povoa_de_varzim: + type: collection + title: COS2018V3 Póvoa de Varzim + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Póvoa de Varzim + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.789062684094041, 41.36457111899598, -8.590646977734547, + 41.471971416666904] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_povoa_de_varzim/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_povoa_de_varzim + type: feature + cos2018v3_redondo: + type: collection + title: COS2018V3 Redondo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Redondo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.725670346624729, 38.4755273375963, -7.489086839003917, 38.75512807703245] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_redondo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_redondo + type: feature + cos2018v3_reguengos_de_monsaraz: + type: collection + title: COS2018V3 Reguengos de Monsaraz + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Reguengos de Monsaraz + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.61288859063159, 38.227365099481744, -7.337859894061644, + 38.52659238038763] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_reguengos_de_monsaraz/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_reguengos_de_monsaraz + type: feature + cos2018v3_resende: + type: collection + title: COS2018V3 Resende + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Resende + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.027570479059985, 40.99929789401397, -7.850346080394981, + 41.150508314551224] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_resende/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_resende + type: feature + cos2018v3_ribeira_de_pena: + type: collection + title: COS2018V3 Ribeira de Pena + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Ribeira de Pena + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.909866324118603, 41.40363026425371, -7.704066800095003, + 41.652385370832526] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_ribeira_de_pena/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_ribeira_de_pena + type: feature + cos2018v3_rio_maior: + type: collection + title: COS2018V3 Rio Maior + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Rio Maior + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.00157588980757, 39.234912736460835, -8.783067444282803, + 39.466007470314615] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_rio_maior/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_rio_maior + type: feature + cos2018v3_sabrosa: + type: collection + title: COS2018V3 Sabrosa + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Sabrosa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.658179649503069, 41.15611740239223, -7.531497424511642, + 41.412548034484544] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sabrosa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sabrosa + type: feature + cos2018v3_sabugal: + type: collection + title: COS2018V3 Sabugal + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Sabugal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.332556000359985, 40.25389894472376, -6.78096071134138, 40.55299486748677] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sabugal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sabugal + type: feature + cos2018v3_salvaterra_de_magos: + type: collection + title: COS2018V3 Salvaterra de Magos + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Salvaterra de Magos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.815214709652837, 38.96167599369941, -8.575235909250573, + 39.13262573657938] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_salvaterra_de_magos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_salvaterra_de_magos + type: feature + cos2018v3_santa_comba_dao: + type: collection + title: COS2018V3 Santa Comba Dão + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Santa Comba Dão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.186818085320883, 40.333090408750685, -8.045048562094985, + 40.46542246903549] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_santa_comba_dao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_santa_comba_dao + type: feature + cos2018v3_santa_maria_da_feira: + type: collection + title: COS2018V3 Santa Maria da Feira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Santa Maria da Feira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.612964947840235, 40.87215211210144, -8.388852428560325, + 41.05346116026964] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_santa_maria_da_feira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_santa_maria_da_feira + type: feature + cos2018v3_santa_marta_de_penaguiao: + type: collection + title: COS2018V3 Santa Marta de Penaguião + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Santa Marta de Penaguião + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.895730605632643, 41.173557044605026, -7.743650539460693, + 41.27304881786548] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_santa_marta_de_penaguiao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_santa_marta_de_penaguiao + type: feature + cos2018v3_santarem: + type: collection + title: COS2018V3 Santarém + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Santarém + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.899447449219112, 39.16874642757498, -8.556894618727831, + 39.483009434935845] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_santarem/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_santarem + type: feature + cos2018v3_santiago_do_cacem: + type: collection + title: COS2018V3 Santiago do Cacém + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Santiago do Cacém + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.825614918026124, 37.749393262352996, -8.29313532012501, + 38.12694891332986] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_santiago_do_cacem/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_santiago_do_cacem + type: feature + cos2018v3_santo_tirso: + type: collection + title: COS2018V3 Santo Tirso + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Santo Tirso + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.519850439602127, 41.238070414399466, -8.316449703966018, + 41.3842886063551] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_santo_tirso/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_santo_tirso + type: feature + cos2018v3_sardoal: + type: collection + title: COS2018V3 Sardoal + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Sardoal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.195236966070427, 39.497333917805804, -8.080913597539936, + 39.626603973691665] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sardoal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sardoal + type: feature + cos2018v3_seia: + type: collection + title: COS2018V3 Seia + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Seia + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.849226744815818, 40.229918727189336, -7.583432456157536, + 40.535516835025376] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_seia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_seia + type: feature + cos2018v3_seixal: + type: collection + title: COS2018V3 Seixal + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Seixal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.178347885945058, 38.54067544356502, -9.047764430941779, + 38.65588333060508] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_seixal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_seixal + type: feature + cos2018v3_sernancelhe: + type: collection + title: COS2018V3 Sernancelhe + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Sernancelhe + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.660584531351262, 40.812451001960284, -7.374209229608668, + 41.02197947929788] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sernancelhe/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sernancelhe + type: feature + cos2018v3_serpa: + type: collection + title: COS2018V3 Serpa + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Serpa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.682327802025188, 37.74120437754112, -7.248260236454084, + 38.17640118426028] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_serpa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_serpa + type: feature + cos2018v3_serta: + type: collection + title: COS2018V3 Sertã + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Sertã + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.293123449994342, 39.726979262373334, -7.915857624447407, + 39.948693796162665] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_serta/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_serta + type: feature + cos2018v3_sesimbra: + type: collection + title: COS2018V3 Sesimbra + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Sesimbra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.222921974607067, 38.40907442337448, -9.017652600403368, + 38.58331896888709] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sesimbra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sesimbra + type: feature + cos2018v3_setubal: + type: collection + title: COS2018V3 Setúbal + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Setúbal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.055624112483068, 38.453960361462, -8.731391291589762, 38.580721107034414] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_setubal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_setubal + type: feature + cos2018v3_sever_do_vouga: + type: collection + title: COS2018V3 Sever do Vouga + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Sever do Vouga + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.416469581877847, 40.63676197645532, -8.271932272120482, + 40.799922464842766] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sever_do_vouga/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sever_do_vouga + type: feature + cos2018v3_silves: + type: collection + title: COS2018V3 Silves + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Silves + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.535457647913582, 37.08862375857678, -8.176880573135868, + 37.43939031168233] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_silves/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_silves + type: feature + cos2018v3_sines: + type: collection + title: COS2018V3 Sines + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Sines + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.890550901882472, 37.80494695931996, -8.681435537087564, + 38.04929489872328] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sines/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sines + type: feature + cos2018v3_sintra: + type: collection + title: COS2018V3 Sintra + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Sintra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.500526607165842, 38.73858182615243, -9.220690791832494, + 38.93243218258392] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sintra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sintra + type: feature + cos2018v3_sobral_de_monte_agraco: + type: collection + title: COS2018V3 Sobral de Monte Agraço + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Sobral de Monte Agraço + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.240566149914214, 38.947890758185274, -9.098557958422951, + 39.03591117031415] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sobral_de_monte_agraco/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sobral_de_monte_agraco + type: feature + cos2018v3_soure: + type: collection + title: COS2018V3 Soure + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Soure + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.763911823358981, 39.94884374172167, -8.424613057209712, + 40.17592852378922] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_soure/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_soure + type: feature + cos2018v3_sousel: + type: collection + title: COS2018V3 Sousel + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Sousel + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.914753179637721, 38.895793223986054, -7.539708714418998, + 39.022321658317054] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sousel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sousel + type: feature + cos2018v3_satao: + type: collection + title: COS2018V3 Sátão + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Sátão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.775509661033738, 40.68107403101336, -7.570704675894423, + 40.87478639935721] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_satao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_satao + type: feature + cos2018v3_sao_bras_de_alportel: + type: collection + title: COS2018V3 São Brás de Alportel + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + São Brás de Alportel + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.96599897376937, 37.12251521260791, -7.784922830712874, 37.26876564989318] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sao_bras_de_alportel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sao_bras_de_alportel + type: feature + cos2018v3_sao_joao_da_madeira: + type: collection + title: COS2018V3 São João da Madeira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + São João da Madeira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.51204474028974, 40.878833364376135, -8.47361207833262, 40.916605372142996] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sao_joao_da_madeira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sao_joao_da_madeira + type: feature + cos2018v3_sao_joao_da_pesqueira: + type: collection + title: COS2018V3 São João da Pesqueira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + São João da Pesqueira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.555744596098678, 40.99937372706266, -7.304573035638709, + 41.21465782194327] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sao_joao_da_pesqueira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sao_joao_da_pesqueira + type: feature + cos2018v3_sao_pedro_do_sul: + type: collection + title: COS2018V3 São Pedro do Sul + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + São Pedro do Sul + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.255095755107579, 40.72922044635303, -7.927512564118046, + 40.93653611615887] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_sao_pedro_do_sul/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_sao_pedro_do_sul + type: feature + cos2018v3_tabuaco: + type: collection + title: COS2018V3 Tabuaço + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Tabuaço + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.640284130888307, 41.005701344191685, -7.474630422144253, + 41.17416188534444] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_tabuaco/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_tabuaco + type: feature + cos2018v3_tarouca: + type: collection + title: COS2018V3 Tarouca + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Tarouca + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.85065361776791, 40.95425302602045, -7.659784864797182, 41.081011992192266] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_tarouca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_tarouca + type: feature + cos2018v3_tavira: + type: collection + title: COS2018V3 Tavira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Tavira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.915190180746207, 37.05408499318969, -7.568816355660194, + 37.38697582830811] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_tavira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_tavira + type: feature + cos2018v3_terras_de_bouro: + type: collection + title: COS2018V3 Terras de Bouro + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Terras de Bouro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.362889810626369, 41.649498047651, -8.044731055182535, 41.82063112642428] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_terras_de_bouro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_terras_de_bouro + type: feature + cos2018v3_tomar: + type: collection + title: COS2018V3 Tomar + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Tomar + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.512532713135355, 39.47660602157727, -8.236406026097296, + 39.70777505465882] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_tomar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_tomar + type: feature + cos2018v3_tondela: + type: collection + title: COS2018V3 Tondela + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Tondela + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.308419918671186, 40.447964736267515, -7.959153537969737, + 40.64067041760161] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_tondela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_tondela + type: feature + cos2018v3_torre_de_moncorvo: + type: collection + title: COS2018V3 Torre de Moncorvo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Torre de Moncorvo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.223713982282807, 41.03307498736933, -6.798175565937526, + 41.30918766904028] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_torre_de_moncorvo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_torre_de_moncorvo + type: feature + cos2018v3_torres_novas: + type: collection + title: COS2018V3 Torres Novas + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Torres Novas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.673322420817527, 39.39713754076873, -8.450787526912187, + 39.63210687045755] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_torres_novas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_torres_novas + type: feature + cos2018v3_torres_vedras: + type: collection + title: COS2018V3 Torres Vedras + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Torres Vedras + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.422101623216225, 39.00406835233825, -9.12572605778199, 39.21620473336823] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_torres_vedras/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_torres_vedras + type: feature + cos2018v3_trancoso: + type: collection + title: COS2018V3 Trancoso + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Trancoso + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.467240657333762, 40.68944553726162, -7.186085301239468, + 40.92182090389819] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_trancoso/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_trancoso + type: feature + cos2018v3_trofa: + type: collection + title: COS2018V3 Trofa + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Trofa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.634488251796993, 41.2572501298799, -8.506175379336264, 41.34785796818998] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_trofa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_trofa + type: feature + cos2018v3_tabua: + type: collection + title: COS2018V3 Tábua + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Tábua + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.134000329917493, 40.24071663972742, -7.89897475035813, 40.42395643678551] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_tabua/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_tabua + type: feature + cos2018v3_vagos: + type: collection + title: COS2018V3 Vagos + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vagos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.784028884237841, 40.424052697224596, -8.607685783188955, + 40.58292845871863] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vagos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vagos + type: feature + cos2018v3_vale_de_cambra: + type: collection + title: COS2018V3 Vale de Cambra + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vale de Cambra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.43474586870201, 40.76317341493931, -8.236763512471457, 40.90362953228248] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vale_de_cambra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vale_de_cambra + type: feature + cos2018v3_valenca: + type: collection + title: COS2018V3 Valença + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Valença + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.681907409514128, 41.92716712132895, -8.529221546095497, + 42.056872327020656] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_valenca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_valenca + type: feature + cos2018v3_valongo: + type: collection + title: COS2018V3 Valongo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Valongo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.570727255884604, 41.1407644399656, -8.43999522700725, 41.26902460337855] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_valongo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_valongo + type: feature + cos2018v3_valpacos: + type: collection + title: COS2018V3 Valpaços + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Valpaços + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.531108051086026, 41.440422844573284, -7.170640234000507, + 41.783507076185934] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_valpacos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_valpacos + type: feature + cos2018v3_vendas_novas: + type: collection + title: COS2018V3 Vendas Novas + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vendas Novas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.658467940114265, 38.542116301910845, -8.378239640859318, + 38.75460449411278] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vendas_novas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vendas_novas + type: feature + cos2018v3_viana_do_alentejo: + type: collection + title: COS2018V3 Viana do Alentejo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Viana do Alentejo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.322570785477323, 38.2995250051615, -7.908556020984166, 38.48174317671142] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_viana_do_alentejo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_viana_do_alentejo + type: feature + cos2018v3_viana_do_castelo: + type: collection + title: COS2018V3 Viana do Castelo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Viana do Castelo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.881058316994906, 41.606380653870424, -8.64205950223043, + 41.82970789801029] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_viana_do_castelo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_viana_do_castelo + type: feature + cos2018v3_vidigueira: + type: collection + title: COS2018V3 Vidigueira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vidigueira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.880873500977832, 38.06407028316155, -7.486929176836985, + 38.25806023920184] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vidigueira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vidigueira + type: feature + cos2018v3_vieira_do_minho: + type: collection + title: COS2018V3 Vieira do Minho + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vieira do Minho + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.259574753716638, 41.546387830932616, -7.981525450158186, + 41.700753885809064] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vieira_do_minho/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vieira_do_minho + type: feature + cos2018v3_vila_flor: + type: collection + title: COS2018V3 Vila Flor + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Flor + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.298174884080352, 41.22791550801536, -7.032632375168383, + 41.41270584438426] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_flor/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_flor + type: feature + cos2018v3_vila_franca_de_xira: + type: collection + title: COS2018V3 Vila Franca de Xira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Franca de Xira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.118434004419075, 38.79325080140072, -8.841540934332642, + 39.03157480104459] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_franca_de_xira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_franca_de_xira + type: feature + cos2018v3_vila_nova_da_barquinha: + type: collection + title: COS2018V3 Vila Nova da Barquinha + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Nova da Barquinha + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.467747318289875, 39.44704577410029, -8.32709509115791, 39.521005804171025] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_nova_da_barquinha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_nova_da_barquinha + type: feature + cos2018v3_vila_nova_de_cerveira: + type: collection + title: COS2018V3 Vila Nova de Cerveira + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Nova de Cerveira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.78575404591823, 41.846676151487834, -8.637589529813129, + 41.99066463386939] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_nova_de_cerveira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_nova_de_cerveira + type: feature + cos2018v3_vila_nova_de_famalicao: + type: collection + title: COS2018V3 Vila Nova de Famalicão + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Nova de Famalicão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.623321307688082, 41.33853731454811, -8.376800172774889, + 41.47882347134676] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_nova_de_famalicao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_nova_de_famalicao + type: feature + cos2018v3_vila_nova_de_foz_coa: + type: collection + title: COS2018V3 Vila Nova de Foz Côa + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Nova de Foz Côa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.345710919743355, 40.92284689072601, -6.976669607397896, + 41.17935167500039] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_nova_de_foz_coa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_nova_de_foz_coa + type: feature + cos2018v3_vila_nova_de_gaia: + type: collection + title: COS2018V3 Vila Nova de Gaia + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Nova de Gaia + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.675575033616, 41.009304123743725, -8.44874065529945, 41.14746838263079] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_nova_de_gaia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_nova_de_gaia + type: feature + cos2018v3_vila_nova_de_paiva: + type: collection + title: COS2018V3 Vila Nova de Paiva + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Nova de Paiva + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.868479874640064, 40.76492860310488, -7.687059996834042, + 40.94783261926747] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_nova_de_paiva/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_nova_de_paiva + type: feature + cos2018v3_vila_nova_de_poiares: + type: collection + title: COS2018V3 Vila Nova de Poiares + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Nova de Poiares + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.340313324344356, 40.176043722004664, -8.163629269441165, + 40.254687561208954] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_nova_de_poiares/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_nova_de_poiares + type: feature + cos2018v3_vila_pouca_de_aguiar: + type: collection + title: COS2018V3 Vila Pouca de Aguiar + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Pouca de Aguiar + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.784636697864811, 41.391089959213076, -7.471392368953417, + 41.639702070361395] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_pouca_de_aguiar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_pouca_de_aguiar + type: feature + cos2018v3_vila_real: + type: collection + title: COS2018V3 Vila Real + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Real + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.921366916206175, 41.17968515034873, -7.600299644535202, + 41.42152516795081] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_real/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_real + type: feature + cos2018v3_vila_real_de_santo_antonio: + type: collection + title: COS2018V3 Vila Real de Santo António + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Real de Santo António + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.574620981108105, 37.142367064689736, -7.393304846125638, + 37.25906508129838] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_real_de_santo_antonio/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_real_de_santo_antonio + type: feature + cos2018v3_vila_velha_de_rodao: + type: collection + title: COS2018V3 Vila Velha de Ródão + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Velha de Ródão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.828848931805937, 39.53736490188611, -7.487946515360604, + 39.79519735031723] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_velha_de_rodao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_velha_de_rodao + type: feature + cos2018v3_vila_verde: + type: collection + title: COS2018V3 Vila Verde + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Verde + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.54736003844241, 41.56888709185913, -8.306191798390403, 41.77060843450578] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_verde/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_verde + type: feature + cos2018v3_vila_vicosa: + type: collection + title: COS2018V3 Vila Viçosa + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila Viçosa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.499993381892885, 38.67123449854883, -7.207376193835662, + 38.848021631205995] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_vicosa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_vicosa + type: feature + cos2018v3_vila_de_rei: + type: collection + title: COS2018V3 Vila de Rei + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila de Rei + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.23814530197993, 39.61126540638164, -8.050056884359739, 39.759889393583926] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_de_rei/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_de_rei + type: feature + cos2018v3_vila_do_bispo: + type: collection + title: COS2018V3 Vila do Bispo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila do Bispo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.997545018487784, 36.993499004083645, -8.772261249950228, + 37.165411136438685] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_do_bispo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_do_bispo + type: feature + cos2018v3_vila_do_conde: + type: collection + title: COS2018V3 Vila do Conde + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vila do Conde + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.767960707147472, 41.255494908205634, -8.610623579010419, + 41.42570920040902] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vila_do_conde/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vila_do_conde + type: feature + cos2018v3_vimioso: + type: collection + title: COS2018V3 Vimioso + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vimioso + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.678098500336363, 41.4456259920277, -6.366744030204737, 41.693267219548] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vimioso/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vimioso + type: feature + cos2018v3_vinhais: + type: collection + title: COS2018V3 Vinhais + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vinhais + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.213597774733427, 41.67113241877329, -6.860957079898794, + 41.99075777547884] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vinhais/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vinhais + type: feature + cos2018v3_viseu: + type: collection + title: COS2018V3 Viseu + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Viseu + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.091588935061592, 40.53573247519868, -7.75898421046043, 40.84259976820926] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_viseu/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_viseu + type: feature + cos2018v3_vizela: + type: collection + title: COS2018V3 Vizela + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vizela + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.328090847618123, 41.341064579152835, -8.246138356946457, + 41.40578455413938] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vizela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vizela + type: feature + cos2018v3_vouzela: + type: collection + title: COS2018V3 Vouzela + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Vouzela + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.274278402535948, 40.600621427337614, -8.00724869007128, + 40.75008187066711] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_vouzela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_vouzela + type: feature + cos2018v3_agueda: + type: collection + title: COS2018V3 Águeda + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Águeda + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.558151993660811, 40.495908361811274, -8.245383292350219, + 40.694290517663] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_agueda/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_agueda + type: feature + cos2018v3_evora: + type: collection + title: COS2018V3 Évora + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Évora + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.165696184305348, 38.34068140165637, -7.554935069489544, + 38.768196196581556] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_evora/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_evora + type: feature + cos2018v3_ilhavo: + type: collection + title: COS2018V3 Ílhavo + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Ílhavo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.766088884173472, 40.56244200923345, -8.618095418650874, + 40.65985505580761] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_ilhavo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_ilhavo + type: feature + cos2018v3_obidos: + type: collection + title: COS2018V3 Óbidos + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) - + Óbidos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.291880543286508, 39.304622460099644, -9.058655808392565, + 39.43161920034526] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2018v3_obidos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2018v3_obidos + type: feature + cos2023v1_abrantes: + type: collection + title: COS2023V1 Abrantes + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Abrantes + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.355566934194218, 39.233313649886455, -7.939457760052016, + 39.64649371592394] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_abrantes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_abrantes + type: feature + cos2023v1_aguiar_da_beira: + type: collection + title: COS2023V1 Aguiar da Beira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Aguiar da Beira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.628108604630781, 40.69030221857782, -7.421981867889016, + 40.873290078217835] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_aguiar_da_beira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_aguiar_da_beira + type: feature + cos2023v1_alandroal: + type: collection + title: COS2023V1 Alandroal + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Alandroal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.56366935399753, 38.430105675567766, -7.203714576671402, + 38.77406941401878] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_alandroal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_alandroal + type: feature + cos2023v1_albergaria_a_velha: + type: collection + title: COS2023V1 Albergaria-a-Velha + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Albergaria-a-Velha + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.63243327393885, 40.608066940481336, -8.407892567272732, + 40.78084738767177] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_albergaria_a_velha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_albergaria_a_velha + type: feature + cos2023v1_albufeira: + type: collection + title: COS2023V1 Albufeira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Albufeira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.329722203736427, 37.0715696544462, -8.126931670837, 37.21723190792165] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_albufeira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_albufeira + type: feature + cos2023v1_alcanena: + type: collection + title: COS2023V1 Alcanena + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Alcanena + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.764012488378313, 39.39880373541605, -8.616851788047123, + 39.56241167473518] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_alcanena/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_alcanena + type: feature + cos2023v1_alcobaca: + type: collection + title: COS2023V1 Alcobaça + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Alcobaça + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.150083496488833, 39.38482280293176, -8.865426538032926, + 39.74142301848951] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_alcobaca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_alcobaca + type: feature + cos2023v1_alcochete: + type: collection + title: COS2023V1 Alcochete + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Alcochete + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.031059899895212, 38.671371031563844, -8.810295823954384, + 38.82614196486276] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_alcochete/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_alcochete + type: feature + cos2023v1_alcoutim: + type: collection + title: COS2023V1 Alcoutim + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Alcoutim + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.896838242726884, 37.275569121321475, -7.437081855063554, + 37.52913066464757] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_alcoutim/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_alcoutim + type: feature + cos2023v1_alcacer_do_sal: + type: collection + title: COS2023V1 Alcácer do Sal + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Alcácer do Sal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.822763900076394, 38.17839579756052, -8.129696303784025, + 38.553105191691465] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_alcacer_do_sal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_alcacer_do_sal + type: feature + cos2023v1_alenquer: + type: collection + title: COS2023V1 Alenquer + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Alenquer + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.163891515355765, 39.00071613106392, -8.918675906214592, + 39.188714560187826] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_alenquer/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_alenquer + type: feature + cos2023v1_alfandega_da_fe: + type: collection + title: COS2023V1 Alfândega da Fé + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Alfândega da Fé + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.069548519453146, 41.23939921614345, -6.820483156086075, + 41.471725699566036] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_alfandega_da_fe/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_alfandega_da_fe + type: feature + cos2023v1_alijo: + type: collection + title: COS2023V1 Alijó + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Alijó + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.603685498867246, 41.179672363322865, -7.362126874851024, + 41.403605299480745] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_alijo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_alijo + type: feature + cos2023v1_aljezur: + type: collection + title: COS2023V1 Aljezur + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Aljezur + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.918709346961894, 37.14946914151132, -8.674145367596411, + 37.442947913416546] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_aljezur/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_aljezur + type: feature + cos2023v1_aljustrel: + type: collection + title: COS2023V1 Aljustrel + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Aljustrel + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.33619240975927, 37.78007394722319, -8.048129944572784, 38.00027776341993] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_aljustrel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_aljustrel + type: feature + cos2023v1_almada: + type: collection + title: COS2023V1 Almada + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Almada + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.262975324253272, 38.550321240870886, -9.128496031156699, + 38.68841397154696] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_almada/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_almada + type: feature + cos2023v1_almeida: + type: collection + title: COS2023V1 Almeida + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Almeida + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.051833246037483, 40.47668025626889, -6.794014437713779, + 40.78342014824925] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_almeida/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_almeida + type: feature + cos2023v1_almeirim: + type: collection + title: COS2023V1 Almeirim + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Almeirim + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.71178930922165, 39.092010735805744, -8.43892207905499, 39.243981952051584] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_almeirim/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_almeirim + type: feature + cos2023v1_almodovar: + type: collection + title: COS2023V1 Almodôvar + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Almodôvar + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.275778788286166, 37.31893672996505, -7.88654148022893, 37.63126591888559] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_almodovar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_almodovar + type: feature + cos2023v1_alpiarca: + type: collection + title: COS2023V1 Alpiarça + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Alpiarça + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.634009538630226, 39.1714759786947, -8.492708769056808, 39.30615762415465] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_alpiarca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_alpiarca + type: feature + cos2023v1_alter_do_chao: + type: collection + title: COS2023V1 Alter do Chão + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Alter do Chão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.878753197858093, 39.11588993555757, -7.521699533638866, + 39.331086699268575] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_alter_do_chao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_alter_do_chao + type: feature + cos2023v1_alvaiazere: + type: collection + title: COS2023V1 Alvaiázere + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Alvaiázere + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.483966563263515, 39.73089058288847, -8.301049090353642, + 39.90120439307878] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_alvaiazere/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_alvaiazere + type: feature + cos2023v1_alvito: + type: collection + title: COS2023V1 Alvito + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Alvito + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.16436867642642, 38.1505595720198, -7.926687506549813, 38.32934698549232] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_alvito/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_alvito + type: feature + cos2023v1_amadora: + type: collection + title: COS2023V1 Amadora + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Amadora + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.265283538582345, 38.721993186309234, -9.197828157656229, + 38.79698348427926] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_amadora/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_amadora + type: feature + cos2023v1_amarante: + type: collection + title: COS2023V1 Amarante + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Amarante + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.216313453407954, 41.189441405059426, -7.89404691030886, + 41.37519577527886] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_amarante/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_amarante + type: feature + cos2023v1_amares: + type: collection + title: COS2023V1 Amares + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Amares + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.433859185172842, 41.6032442902066, -8.241952871407312, 41.700174234299816] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_amares/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_amares + type: feature + cos2023v1_anadia: + type: collection + title: COS2023V1 Anadia + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Anadia + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.579820023896303, 40.39535981085992, -8.311494715428491, + 40.51252615170382] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_anadia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_anadia + type: feature + cos2023v1_ansiao: + type: collection + title: COS2023V1 Ansião + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Ansião + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.538812129848647, 39.85555893747882, -8.334789343136217, + 40.02672714549284] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_ansiao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_ansiao + type: feature + cos2023v1_arcos_de_valdevez: + type: collection + title: COS2023V1 Arcos de Valdevez + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Arcos de Valdevez + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.531008463690247, 41.790814768640814, -8.191715765401785, + 42.01868296841974] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_arcos_de_valdevez/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_arcos_de_valdevez + type: feature + cos2023v1_arganil: + type: collection + title: COS2023V1 Arganil + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Arganil + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.207357045651477, 40.136312532473845, -7.782391510881312, + 40.3041309036689] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_arganil/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_arganil + type: feature + cos2023v1_armamar: + type: collection + title: COS2023V1 Armamar + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Armamar + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.757791575005172, 41.019025944510204, -7.616007260291188, + 41.1630401631471] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_armamar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_armamar + type: feature + cos2023v1_arouca: + type: collection + title: COS2023V1 Arouca + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Arouca + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.434171032188054, 40.84484646314316, -8.089172179289955, + 41.01606088063408] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_arouca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_arouca + type: feature + cos2023v1_arraiolos: + type: collection + title: COS2023V1 Arraiolos + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Arraiolos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.153472152731851, 38.62785837823628, -7.673632379806323, + 38.9284164719445] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_arraiolos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_arraiolos + type: feature + cos2023v1_arronches: + type: collection + title: COS2023V1 Arronches + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Arronches + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.390067795644356, 39.00597697326352, -7.110342776455563, + 39.2082551169008] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_arronches/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_arronches + type: feature + cos2023v1_arruda_dos_vinhos: + type: collection + title: COS2023V1 Arruda dos Vinhos + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Arruda dos Vinhos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.178527253814304, 38.92143685359875, -9.021893505143375, + 39.02879453341587] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_arruda_dos_vinhos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_arruda_dos_vinhos + type: feature + cos2023v1_aveiro: + type: collection + title: COS2023V1 Aveiro + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Aveiro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.763645893606128, 40.528483668674944, -8.520964871585631, + 40.727553602062656] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_aveiro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_aveiro + type: feature + cos2023v1_avis: + type: collection + title: COS2023V1 Avis + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Avis + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.152002950739735, 38.94076676360927, -7.696666864270414, + 39.21861639180791] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_avis/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_avis + type: feature + cos2023v1_azambuja: + type: collection + title: COS2023V1 Azambuja + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Azambuja + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.004746369676903, 39.00613616941152, -8.781861006420497, + 39.25546747724322] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_azambuja/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_azambuja + type: feature + cos2023v1_baiao: + type: collection + title: COS2023V1 Baião + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Baião + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.115466380362017, 41.089584914900435, -7.875579307603225, + 41.248977517399375] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_baiao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_baiao + type: feature + cos2023v1_barcelos: + type: collection + title: COS2023V1 Barcelos + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Barcelos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.745894438661567, 41.41404662991324, -8.494542410121849, + 41.654379713533494] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_barcelos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_barcelos + type: feature + cos2023v1_barrancos: + type: collection + title: COS2023V1 Barrancos + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Barrancos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.210792697780569, 38.08851599076512, -6.931499466765644, + 38.22066273974429] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_barrancos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_barrancos + type: feature + cos2023v1_barreiro: + type: collection + title: COS2023V1 Barreiro + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Barreiro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.094855862838545, 38.57795926590013, -8.997141679769427, + 38.69011722439148] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_barreiro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_barreiro + type: feature + cos2023v1_batalha: + type: collection + title: COS2023V1 Batalha + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Batalha + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.873799325185237, 39.550868062482195, -8.671135664518301, + 39.69552914319536] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_batalha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_batalha + type: feature + cos2023v1_beja: + type: collection + title: COS2023V1 Beja + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Beja + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.083150980331014, 37.77646058859197, -7.632630609949218, + 38.162586717055675] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_beja/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_beja + type: feature + cos2023v1_belmonte: + type: collection + title: COS2023V1 Belmonte + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Belmonte + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.393070935620886, 40.24447686416686, -7.26999214336188, 40.416131795545965] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_belmonte/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_belmonte + type: feature + cos2023v1_benavente: + type: collection + title: COS2023V1 Benavente + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Benavente + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.968466086132118, 38.731490386510465, -8.652794438770707, + 39.031952839502914] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_benavente/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_benavente + type: feature + cos2023v1_bombarral: + type: collection + title: COS2023V1 Bombarral + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Bombarral + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.238990845799366, 39.21157731576655, -9.084784511219192, + 39.338242972193065] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_bombarral/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_bombarral + type: feature + cos2023v1_borba: + type: collection + title: COS2023V1 Borba + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Borba + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.564224507871092, 38.71301395574179, -7.391673061918233, + 38.92682763875491] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_borba/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_borba + type: feature + cos2023v1_boticas: + type: collection + title: COS2023V1 Boticas + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Boticas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.917869718476771, 41.578499005328666, -7.562724956293337, + 41.795303542669856] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_boticas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_boticas + type: feature + cos2023v1_braga: + type: collection + title: COS2023V1 Braga + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Braga + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.526085537027578, 41.46373040575681, -8.295470345970696, + 41.61720267787168] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_braga/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_braga + type: feature + cos2023v1_braganca: + type: collection + title: COS2023V1 Bragança + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Bragança + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.954484113073318, 41.53457672684672, -6.51551411784634, 41.99252128361319] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_braganca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_braganca + type: feature + cos2023v1_cabeceiras_de_basto: + type: collection + title: COS2023V1 Cabeceiras de Basto + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Cabeceiras de Basto + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.068900939914045, 41.44664460948185, -7.81067671654667, 41.616825291551876] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_cabeceiras_de_basto/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_cabeceiras_de_basto + type: feature + cos2023v1_cadaval: + type: collection + title: COS2023V1 Cadaval + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Cadaval + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.17844037359116, 39.16762457037935, -8.975224499102815, 39.31198730862889] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_cadaval/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_cadaval + type: feature + cos2023v1_caldas_da_rainha: + type: collection + title: COS2023V1 Caldas da Rainha + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Caldas da Rainha + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.235782204590109, 39.29142777738643, -8.982495561713645, + 39.509770397456805] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_caldas_da_rainha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_caldas_da_rainha + type: feature + cos2023v1_caminha: + type: collection + title: COS2023V1 Caminha + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Caminha + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.876943040070014, 41.7807459293871, -8.670101953186851, 41.91736930703457] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_caminha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_caminha + type: feature + cos2023v1_campo_maior: + type: collection + title: COS2023V1 Campo Maior + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Campo Maior + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.149356628587914, 38.90585390231695, -6.951130313002546, + 39.11838988198803] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_campo_maior/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_campo_maior + type: feature + cos2023v1_cantanhede: + type: collection + title: COS2023V1 Cantanhede + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Cantanhede + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.846326484269413, 40.24529868063039, -8.480992052656882, + 40.485582796458715] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_cantanhede/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_cantanhede + type: feature + cos2023v1_carrazeda_de_ansiaes: + type: collection + title: COS2023V1 Carrazeda de Ansiães + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Carrazeda de Ansiães + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.431892067944764, 41.135490168551264, -7.18654053120992, + 41.33852055499973] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_carrazeda_de_ansiaes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_carrazeda_de_ansiaes + type: feature + cos2023v1_carregal_do_sal: + type: collection + title: COS2023V1 Carregal do Sal + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Carregal do Sal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.068526966418252, 40.380580941803494, -7.90310198595873, + 40.53807021475163] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_carregal_do_sal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_carregal_do_sal + type: feature + cos2023v1_cartaxo: + type: collection + title: COS2023V1 Cartaxo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Cartaxo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.91312469726831, 39.058286407328566, -8.682848983944513, + 39.21174731801607] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_cartaxo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_cartaxo + type: feature + cos2023v1_cascais: + type: collection + title: COS2023V1 Cascais + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Cascais + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.486554327418599, 38.67588584356416, -9.308073175404493, + 38.76899274132591] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_cascais/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_cascais + type: feature + cos2023v1_castanheira_de_pera: + type: collection + title: COS2023V1 Castanheira de Pêra + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Castanheira de Pêra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.241456358818207, 39.945946966248364, -8.142631357035942, + 40.08973602820804] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_castanheira_de_pera/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_castanheira_de_pera + type: feature + cos2023v1_castelo_branco: + type: collection + title: COS2023V1 Castelo Branco + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Castelo Branco + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.850755138272135, 39.640846489090485, -7.179153467544413, + 40.083647896915316] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_castelo_branco/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_castelo_branco + type: feature + cos2023v1_castelo_de_paiva: + type: collection + title: COS2023V1 Castelo de Paiva + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Castelo de Paiva + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.40092280007353, 40.96225874301463, -8.229954699720238, 41.08015455925221] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_castelo_de_paiva/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_castelo_de_paiva + type: feature + cos2023v1_castelo_de_vide: + type: collection + title: COS2023V1 Castelo de Vide + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Castelo de Vide + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.598169585602699, 39.36765703655685, -7.378671602058858, + 39.58417750148851] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_castelo_de_vide/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_castelo_de_vide + type: feature + cos2023v1_castro_daire: + type: collection + title: COS2023V1 Castro Daire + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Castro Daire + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.132607388825441, 40.7867223372839, -7.75008046208609, 41.02662059386339] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_castro_daire/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_castro_daire + type: feature + cos2023v1_castro_marim: + type: collection + title: COS2023V1 Castro Marim + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Castro Marim + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.637074168675968, 37.167176814101275, -7.412571232616084, + 37.39456986705657] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_castro_marim/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_castro_marim + type: feature + cos2023v1_castro_verde: + type: collection + title: COS2023V1 Castro Verde + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Castro Verde + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.246538171709334, 37.56124021613213, -7.849021598842421, + 37.82734816392023] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_castro_verde/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_castro_verde + type: feature + cos2023v1_celorico_da_beira: + type: collection + title: COS2023V1 Celorico da Beira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Celorico da Beira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.511260975849336, 40.51518405607446, -7.255362795216406, + 40.70928688015632] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_celorico_da_beira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_celorico_da_beira + type: feature + cos2023v1_celorico_de_basto: + type: collection + title: COS2023V1 Celorico de Basto + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Celorico de Basto + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.146612852777352, 41.318798262035266, -7.936942611663053, + 41.4879364166162] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_celorico_de_basto/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_celorico_de_basto + type: feature + cos2023v1_chamusca: + type: collection + title: COS2023V1 Chamusca + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Chamusca + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.580532488576585, 39.07113263922875, -8.172599450516861, + 39.46378966278961] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_chamusca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_chamusca + type: feature + cos2023v1_chaves: + type: collection + title: COS2023V1 Chaves + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Chaves + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.620555866226383, 41.581273648306585, -7.19294785152994, + 41.88001005723486] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_chaves/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_chaves + type: feature + cos2023v1_cinfaes: + type: collection + title: COS2023V1 Cinfães + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Cinfães + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.263992093452131, 40.9647368220688, -7.949945420796237, 41.10081953165828] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_cinfaes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_cinfaes + type: feature + cos2023v1_coimbra: + type: collection + title: COS2023V1 Coimbra + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Coimbra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.591675912308059, 40.09892276112516, -8.312903551763641, + 40.35201458049846] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_coimbra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_coimbra + type: feature + cos2023v1_condeixa_a_nova: + type: collection + title: COS2023V1 Condeixa-a-Nova + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Condeixa-a-Nova + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.59144575363068, 40.029772724814535, -8.398198870138417, + 40.17855290571042] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_condeixa_a_nova/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_condeixa_a_nova + type: feature + cos2023v1_constancia: + type: collection + title: COS2023V1 Constância + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Constância + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.34452207911065, 39.33732035691406, -8.240817250426684, 39.5069995255623] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_constancia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_constancia + type: feature + cos2023v1_coruche: + type: collection + title: COS2023V1 Coruche + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Coruche + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.72952107322383, 38.762749253492224, -8.124310332836215, + 39.11010461054843] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_coruche/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_coruche + type: feature + cos2023v1_covilha: + type: collection + title: COS2023V1 Covilhã + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Covilhã + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.809044874149199, 40.130039647380165, -7.34377655885513, + 40.40183506238474] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_covilha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_covilha + type: feature + cos2023v1_crato: + type: collection + title: COS2023V1 Crato + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Crato + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.90128205190913, 39.17735518309078, -7.467105173409045, 39.43877049927655] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_crato/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_crato + type: feature + cos2023v1_cuba: + type: collection + title: COS2023V1 Cuba + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Cuba + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.003305075028491, 38.10582735727577, -7.837003638064871, + 38.30527246651026] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_cuba/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_cuba + type: feature + cos2023v1_elvas: + type: collection + title: COS2023V1 Elvas + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Elvas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.424292277316752, 38.75149734079531, -7.032858088121791, + 39.057186866676766] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_elvas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_elvas + type: feature + cos2023v1_entroncamento: + type: collection + title: COS2023V1 Entroncamento + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Entroncamento + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.499632360775307, 39.43950823043361, -8.45565752795772, 39.49244167089482] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_entroncamento/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_entroncamento + type: feature + cos2023v1_espinho: + type: collection + title: COS2023V1 Espinho + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Espinho + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.653119328156153, 40.964778276523035, -8.593622923990694, + 41.025766443872385] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_espinho/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_espinho + type: feature + cos2023v1_esposende: + type: collection + title: COS2023V1 Esposende + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Esposende + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.811574442094072, 41.46613752687397, -8.700683587726616, + 41.62493583232298] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_esposende/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_esposende + type: feature + cos2023v1_estarreja: + type: collection + title: COS2023V1 Estarreja + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Estarreja + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.667180323447216, 40.68880385544341, -8.511389539572518, + 40.83370259035522] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_estarreja/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_estarreja + type: feature + cos2023v1_estremoz: + type: collection + title: COS2023V1 Estremoz + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Estremoz + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.799950978273313, 38.68486374493536, -7.452713736131128, + 39.008438213334934] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_estremoz/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_estremoz + type: feature + cos2023v1_fafe: + type: collection + title: COS2023V1 Fafe + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Fafe + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.247960909236081, 41.372830048640516, -8.055186268339614, + 41.56594691018811] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_fafe/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_fafe + type: feature + cos2023v1_faro: + type: collection + title: COS2023V1 Faro + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Faro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.00648949636786, 36.96171046617659, -7.809354462736643, 37.14578117909135] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_faro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_faro + type: feature + cos2023v1_felgueiras: + type: collection + title: COS2023V1 Felgueiras + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Felgueiras + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.280115364279125, 41.29391230772659, -8.109617131037023, + 41.41187337595971] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_felgueiras/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_felgueiras + type: feature + cos2023v1_ferreira_do_alentejo: + type: collection + title: COS2023V1 Ferreira do Alentejo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Ferreira do Alentejo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.409654210900403, 37.964667860307756, -7.977061440354062, + 38.2240720743936] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_ferreira_do_alentejo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_ferreira_do_alentejo + type: feature + cos2023v1_ferreira_do_zezere: + type: collection + title: COS2023V1 Ferreira do Zêzere + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Ferreira do Zêzere + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.432607370511247, 39.64426294848466, -8.22541507107768, 39.80349302389606] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_ferreira_do_zezere/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_ferreira_do_zezere + type: feature + cos2023v1_figueira_da_foz: + type: collection + title: COS2023V1 Figueira da Foz + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Figueira da Foz + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.90924368738838, 40.012558636934486, -8.699875484156792, + 40.32688088447043] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_figueira_da_foz/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_figueira_da_foz + type: feature + cos2023v1_figueira_de_castelo_rodrigo: + type: collection + title: COS2023V1 Figueira de Castelo Rodrigo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Figueira de Castelo Rodrigo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.122247157843893, 40.748509598923725, -6.800155289753206, + 41.03641258593586] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_figueira_de_castelo_rodrigo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_figueira_de_castelo_rodrigo + type: feature + cos2023v1_figueiro_dos_vinhos: + type: collection + title: COS2023V1 Figueiró dos Vinhos + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Figueiró dos Vinhos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.363975322147962, 39.79321383621165, -8.209749042712131, + 40.06733769569397] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_figueiro_dos_vinhos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_figueiro_dos_vinhos + type: feature + cos2023v1_fornos_de_algodres: + type: collection + title: COS2023V1 Fornos de Algodres + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Fornos de Algodres + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.589333557609799, 40.55759312874592, -7.419851062989698, + 40.75809167169744] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_fornos_de_algodres/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_fornos_de_algodres + type: feature + cos2023v1_freixo_de_espada_a_cinta: + type: collection + title: COS2023V1 Freixo de Espada à Cinta + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Freixo de Espada à Cinta + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.995189024845416, 41.02454225341558, -6.688263188915817, + 41.24860007951692] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_freixo_de_espada_a_cinta/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_freixo_de_espada_a_cinta + type: feature + cos2023v1_fronteira: + type: collection + title: COS2023V1 Fronteira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Fronteira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.77249079893488, 38.99066926946148, -7.512051346703374, 39.16703047460515] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_fronteira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_fronteira + type: feature + cos2023v1_fundao: + type: collection + title: COS2023V1 Fundão + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Fundão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.817282551413117, 39.97766549178999, -7.251902665534207, + 40.27235491904106] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_fundao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_fundao + type: feature + cos2023v1_gaviao: + type: collection + title: COS2023V1 Gavião + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Gavião + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.008894383568483, 39.33406156926789, -7.745448773394991, + 39.56508587269577] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_gaviao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_gaviao + type: feature + cos2023v1_golega: + type: collection + title: COS2023V1 Golegã + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Golegã + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.591263969102009, 39.316503734462614, -8.434543614054606, + 39.45965535848252] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_golega/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_golega + type: feature + cos2023v1_gondomar: + type: collection + title: COS2023V1 Gondomar + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Gondomar + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.584110501906926, 41.00138011574352, -8.372570741476625, + 41.20331791266854] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_gondomar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_gondomar + type: feature + cos2023v1_gouveia: + type: collection + title: COS2023V1 Gouveia + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Gouveia + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.742100300259024, 40.38757064198966, -7.434258661993456, + 40.60792069195691] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_gouveia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_gouveia + type: feature + cos2023v1_grandola: + type: collection + title: COS2023V1 Grândola + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Grândola + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.912867460989983, 38.02345203723386, -8.238175684147718, + 38.5053433601833] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_grandola/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_grandola + type: feature + cos2023v1_guarda: + type: collection + title: COS2023V1 Guarda + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Guarda + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.467313039789879, 40.380607652682485, -7.032743673127765, + 40.70096374686522] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_guarda/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_guarda + type: feature + cos2023v1_guimaraes: + type: collection + title: COS2023V1 Guimarães + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Guimarães + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.43572487933555, 41.361992841664794, -8.188370276365793, + 41.5692483222496] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_guimaraes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_guimaraes + type: feature + cos2023v1_gois: + type: collection + title: COS2023V1 Góis + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Góis + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.180394023786267, 39.960232744937265, -7.948666376617036, + 40.212862137284354] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_gois/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_gois + type: feature + cos2023v1_idanha_a_nova: + type: collection + title: COS2023V1 Idanha-a-Nova + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Idanha-a-Nova + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.361710278934612, 39.65307184888036, -6.863785074316655, + 40.10067327850242] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_idanha_a_nova/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_idanha_a_nova + type: feature + cos2023v1_lagoa: + type: collection + title: COS2023V1 Lagoa + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Lagoa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.532414763582429, 37.08532768814392, -8.369361466447582, + 37.17988328517243] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_lagoa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_lagoa + type: feature + cos2023v1_lagos: + type: collection + title: COS2023V1 Lagos + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Lagos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.85321303431254, 37.071222056978165, -8.61915011127207, 37.23502306703343] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_lagos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_lagos + type: feature + cos2023v1_lamego: + type: collection + title: COS2023V1 Lamego + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Lamego + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.91568120045839, 40.98150401071074, -7.729966101330276, 41.16186692836949] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_lamego/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_lamego + type: feature + cos2023v1_leiria: + type: collection + title: COS2023V1 Leiria + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Leiria + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.968165905730054, 39.63687445010723, -8.623335342653194, + 39.965426403925036] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_leiria/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_leiria + type: feature + cos2023v1_lisboa: + type: collection + title: COS2023V1 Lisboa + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Lisboa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.237942948162196, 38.68003265083062, -9.08633277485445, 38.79675969109249] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_lisboa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_lisboa + type: feature + cos2023v1_loule: + type: collection + title: COS2023V1 Loulé + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Loulé + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.232007886842169, 37.0102697656286, -7.878284375984409, 37.41825822324747] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_loule/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_loule + type: feature + cos2023v1_loures: + type: collection + title: COS2023V1 Loures + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Loures + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.246001099118741, 38.77480535575094, -9.068755630190022, + 38.94091376260094] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_loures/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_loures + type: feature + cos2023v1_lourinha: + type: collection + title: COS2023V1 Lourinhã + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Lourinhã + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.351607330023237, 39.17449870345955, -9.175870264209104, + 39.31772866134255] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_lourinha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_lourinha + type: feature + cos2023v1_lousada: + type: collection + title: COS2023V1 Lousada + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Lousada + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.339752651066453, 41.23081087127719, -8.191496462882661, + 41.35125965939943] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_lousada/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_lousada + type: feature + cos2023v1_lousa: + type: collection + title: COS2023V1 Lousã + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Lousã + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.311468817345263, 40.05208071145879, -8.151526896907367, + 40.205548113342495] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_lousa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_lousa + type: feature + cos2023v1_macedo_de_cavaleiros: + type: collection + title: COS2023V1 Macedo de Cavaleiros + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Macedo de Cavaleiros + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.12955667995605, 41.40368950804641, -6.65856129922648, 41.71134257380055] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_macedo_de_cavaleiros/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_macedo_de_cavaleiros + type: feature + cos2023v1_mafra: + type: collection + title: COS2023V1 Mafra + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mafra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.427782774962415, 38.86243232786286, -9.159432454752608, + 39.06471837916571] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_mafra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_mafra + type: feature + cos2023v1_maia: + type: collection + title: COS2023V1 Maia + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Maia + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.693983792435706, 41.17963208525133, -8.515264273076616, + 41.29536884690238] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_maia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_maia + type: feature + cos2023v1_mangualde: + type: collection + title: COS2023V1 Mangualde + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mangualde + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.896908642558642, 40.52592422856755, -7.561751234602266, + 40.65153528359722] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_mangualde/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_mangualde + type: feature + cos2023v1_manteigas: + type: collection + title: COS2023V1 Manteigas + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Manteigas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.612917222654292, 40.311270064803026, -7.41885081742079, + 40.46156155506276] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_manteigas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_manteigas + type: feature + cos2023v1_marco_de_canaveses: + type: collection + title: COS2023V1 Marco de Canaveses + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Marco de Canaveses + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.292982880691849, 41.06418354047162, -8.041279097950405, + 41.259042756815816] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_marco_de_canaveses/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_marco_de_canaveses + type: feature + cos2023v1_marinha_grande: + type: collection + title: COS2023V1 Marinha Grande + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Marinha Grande + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.040260486219593, 39.688472890936936, -8.868020691161686, + 39.89065622647592] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_marinha_grande/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_marinha_grande + type: feature + cos2023v1_marvao: + type: collection + title: COS2023V1 Marvão + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Marvão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.432882925992456, 39.31292490039862, -7.294211431874052, + 39.4952683667008] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_marvao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_marvao + type: feature + cos2023v1_matosinhos: + type: collection + title: COS2023V1 Matosinhos + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Matosinhos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.72915780721839, 41.17149003386437, -8.595447869897784, 41.27311470199227] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_matosinhos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_matosinhos + type: feature + cos2023v1_macao: + type: collection + title: COS2023V1 Mação + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mação + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.108310118213758, 39.4694045747295, -7.808988144142566, 39.747834058940086] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_macao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_macao + type: feature + cos2023v1_mealhada: + type: collection + title: COS2023V1 Mealhada + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mealhada + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.529953590310617, 40.27880920382503, -8.353757518211609, + 40.416380080234056] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_mealhada/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_mealhada + type: feature + cos2023v1_melgaco: + type: collection + title: COS2023V1 Melgaço + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Melgaço + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.342333139823271, 41.923600361552964, -8.082765176784426, + 42.154311127409436] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_melgaco/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_melgaco + type: feature + cos2023v1_mesao_frio: + type: collection + title: COS2023V1 Mesão Frio + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mesão Frio + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.914410539720258, 41.11872693811802, -7.820413872138225, + 41.20244000140309] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_mesao_frio/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_mesao_frio + type: feature + cos2023v1_mira: + type: collection + title: COS2023V1 Mira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.825676682085215, 40.37100376854673, -8.681974545504898, + 40.52036476110174] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_mira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_mira + type: feature + cos2023v1_miranda_do_corvo: + type: collection + title: COS2023V1 Miranda do Corvo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Miranda do Corvo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.405620965888954, 40.026057647877614, -8.24218833100989, + 40.19437714780404] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_miranda_do_corvo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_miranda_do_corvo + type: feature + cos2023v1_miranda_do_douro: + type: collection + title: COS2023V1 Miranda do Douro + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Miranda do Douro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.53252369958769, 41.34351912816115, -6.189159307482959, 41.676405240465776] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_miranda_do_douro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_miranda_do_douro + type: feature + cos2023v1_mirandela: + type: collection + title: COS2023V1 Mirandela + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mirandela + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.36686358353932, 41.33369400930741, -7.0291872368749, 41.73522514280672] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_mirandela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_mirandela + type: feature + cos2023v1_mogadouro: + type: collection + title: COS2023V1 Mogadouro + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mogadouro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.920933064480737, 41.19343802410898, -6.418147398124363, + 41.467322522881474] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_mogadouro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_mogadouro + type: feature + cos2023v1_moimenta_da_beira: + type: collection + title: COS2023V1 Moimenta da Beira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Moimenta da Beira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.757334403347126, 40.85357090453381, -7.530986589675204, + 41.05910703269347] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_moimenta_da_beira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_moimenta_da_beira + type: feature + cos2023v1_moita: + type: collection + title: COS2023V1 Moita + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Moita + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.050625140956935, 38.6012146542486, -8.944813174704963, 38.69686718955946] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_moita/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_moita + type: feature + cos2023v1_monchique: + type: collection + title: COS2023V1 Monchique + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Monchique + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.755133622310234, 37.209817860369654, -8.419978659750859, + 37.41198454247805] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_monchique/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_monchique + type: feature + cos2023v1_mondim_de_basto: + type: collection + title: COS2023V1 Mondim de Basto + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mondim de Basto + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.981148561779599, 41.302667084963055, -7.788687376491727, + 41.491792182414535] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_mondim_de_basto/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_mondim_de_basto + type: feature + cos2023v1_monforte: + type: collection + title: COS2023V1 Monforte + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Monforte + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.568108991070073, 38.86491572046194, -7.297958327802554, + 39.19062850435691] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_monforte/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_monforte + type: feature + cos2023v1_montalegre: + type: collection + title: COS2023V1 Montalegre + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Montalegre + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.11946507337715, 41.58689798345226, -7.579528136317313, 41.92709574946961] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_montalegre/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_montalegre + type: feature + cos2023v1_montemor_o_novo: + type: collection + title: COS2023V1 Montemor-o-Novo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Montemor-o-Novo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.582709479270688, 38.436844889713626, -8.029076523245145, + 38.86910916432609] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_montemor_o_novo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_montemor_o_novo + type: feature + cos2023v1_montemor_o_velho: + type: collection + title: COS2023V1 Montemor-o-Velho + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Montemor-o-Velho + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.775123540551299, 40.11210406109706, -8.54750925677364, 40.311044435328576] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_montemor_o_velho/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_montemor_o_velho + type: feature + cos2023v1_montijo: + type: collection + title: COS2023V1 Montijo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Montijo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.049840836189398, 38.64468964181376, -8.490972125626806, + 38.8454230963684] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_montijo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_montijo + type: feature + cos2023v1_moncao: + type: collection + title: COS2023V1 Monção + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Monção + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.546840575187531, 41.96573891762816, -8.28946954229364, 42.09049660627945] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_moncao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_moncao + type: feature + cos2023v1_mora: + type: collection + title: COS2023V1 Mora + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mora + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.27218836264627, 38.804968205162716, -7.8897871623408, 39.02693144992248] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_mora/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_mora + type: feature + cos2023v1_mortagua: + type: collection + title: COS2023V1 Mortágua + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mortágua + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.35944750078433, 40.32263823786809, -8.15763416420313, 40.51696397821156] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_mortagua/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_mortagua + type: feature + cos2023v1_moura: + type: collection + title: COS2023V1 Moura + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Moura + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.532777272496472, 37.96060655159417, -6.986829730095821, + 38.33114612481509] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_moura/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_moura + type: feature + cos2023v1_mourao: + type: collection + title: COS2023V1 Mourão + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mourão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.430580627783664, 38.15465013191799, -7.106776071548042, + 38.4403525691553] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_mourao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_mourao + type: feature + cos2023v1_murtosa: + type: collection + title: COS2023V1 Murtosa + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Murtosa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.734851809081354, 40.70208713282574, -8.593700921311282, + 40.8196334832146] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_murtosa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_murtosa + type: feature + cos2023v1_murca: + type: collection + title: COS2023V1 Murça + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Murça + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.58877640925565, 41.32401392914522, -7.314167332058389, 41.5278653564947] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_murca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_murca + type: feature + cos2023v1_mertola: + type: collection + title: COS2023V1 Mértola + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mértola + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.934171881069331, 37.43199792676132, -7.426353438102667, + 37.84940777158061] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_mertola/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_mertola + type: feature + cos2023v1_meda: + type: collection + title: COS2023V1 Mêda + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Mêda + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.379992057402914, 40.82313228938767, -7.133495418700937, + 41.037484832282885] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_meda/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_meda + type: feature + cos2023v1_nazare: + type: collection + title: COS2023V1 Nazaré + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Nazaré + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.115448785639275, 39.5110419693848, -8.970956728458637, 39.65011939852541] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_nazare/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_nazare + type: feature + cos2023v1_nelas: + type: collection + title: COS2023V1 Nelas + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Nelas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.943489851579277, 40.45601604501882, -7.748499843681937, + 40.58873012915381] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_nelas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_nelas + type: feature + cos2023v1_nisa: + type: collection + title: COS2023V1 Nisa + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Nisa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.882926799823199, 39.37723629583487, -7.480471108878556, + 39.663679579185384] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_nisa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_nisa + type: feature + cos2023v1_odemira: + type: collection + title: COS2023V1 Odemira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Odemira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.8195340633807, 37.373718975994876, -8.311868235445393, 37.87090925143604] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_odemira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_odemira + type: feature + cos2023v1_odivelas: + type: collection + title: COS2023V1 Odivelas + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Odivelas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.241120012087586, 38.760221180048084, -9.149887733400911, + 38.830530108664185] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_odivelas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_odivelas + type: feature + cos2023v1_oeiras: + type: collection + title: COS2023V1 Oeiras + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Oeiras + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.32967649716713, 38.673146905250086, -9.2112112122183, 38.75195049275766] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_oeiras/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_oeiras + type: feature + cos2023v1_oleiros: + type: collection + title: COS2023V1 Oleiros + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Oleiros + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.08822960075689, 39.810703665883274, -7.691088899746884, + 40.059148654927974] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_oleiros/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_oleiros + type: feature + cos2023v1_olhao: + type: collection + title: COS2023V1 Olhão + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Olhão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.88976550756828, 36.998080691070825, -7.723360982076801, + 37.131162013974624] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_olhao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_olhao + type: feature + cos2023v1_oliveira_de_azemeis: + type: collection + title: COS2023V1 Oliveira de Azeméis + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Oliveira de Azeméis + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.550859416535495, 40.75876451293272, -8.38511984351335, 40.93740814620531] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_oliveira_de_azemeis/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_oliveira_de_azemeis + type: feature + cos2023v1_oliveira_de_frades: + type: collection + title: COS2023V1 Oliveira de Frades + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Oliveira de Frades + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.333587931831321, 40.563661940865714, -8.129546297196056, + 40.80392676464404] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_oliveira_de_frades/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_oliveira_de_frades + type: feature + cos2023v1_oliveira_do_bairro: + type: collection + title: COS2023V1 Oliveira do Bairro + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Oliveira do Bairro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.63078334205111, 40.46550445940288, -8.459209346059362, 40.56394696549522] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_oliveira_do_bairro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_oliveira_do_bairro + type: feature + cos2023v1_oliveira_do_hospital: + type: collection + title: COS2023V1 Oliveira do Hospital + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Oliveira do Hospital + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.981735554722249, 40.25942650030315, -7.758212772943534, + 40.498611884647936] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_oliveira_do_hospital/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_oliveira_do_hospital + type: feature + cos2023v1_ourique: + type: collection + title: COS2023V1 Ourique + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Ourique + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.466790814975058, 37.40925904742235, -8.13575880413532, 37.8626537210992] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_ourique/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_ourique + type: feature + cos2023v1_ourem: + type: collection + title: COS2023V1 Ourém + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Ourém + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.70225150011481, 39.535819236885416, -8.423082007200076, + 39.838729173911496] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_ourem/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_ourem + type: feature + cos2023v1_ovar: + type: collection + title: COS2023V1 Ovar + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Ovar + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.695980970879164, 40.79573150205535, -8.523237082000868, + 40.976179452736716] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_ovar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_ovar + type: feature + cos2023v1_palmela: + type: collection + title: COS2023V1 Palmela + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Palmela + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.025908380493423, 38.51219602705371, -8.612390709273955, + 38.74167663067599] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_palmela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_palmela + type: feature + cos2023v1_pampilhosa_da_serra: + type: collection + title: COS2023V1 Pampilhosa da Serra + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Pampilhosa da Serra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.132729931120101, 39.93281125586159, -7.73175549835099, 40.21090120972442] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_pampilhosa_da_serra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_pampilhosa_da_serra + type: feature + cos2023v1_paredes: + type: collection + title: COS2023V1 Paredes + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Paredes + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.473972032999253, 41.06829277242905, -8.296195662940336, + 41.25977143692978] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_paredes/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_paredes + type: feature + cos2023v1_paredes_de_coura: + type: collection + title: COS2023V1 Paredes de Coura + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Paredes de Coura + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.675386693593266, 41.84433566570484, -8.488548675470177, + 41.98257131558974] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_paredes_de_coura/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_paredes_de_coura + type: feature + cos2023v1_pacos_de_ferreira: + type: collection + title: COS2023V1 Paços de Ferreira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Paços de Ferreira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.452464201740812, 41.242461973229624, -8.317297448156133, + 41.33722313096585] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_pacos_de_ferreira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_pacos_de_ferreira + type: feature + cos2023v1_pedrogao_grande: + type: collection + title: COS2023V1 Pedrógão Grande + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Pedrógão Grande + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.261407685722336, 39.85025546077296, -8.108037790899322, + 40.03646097107034] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_pedrogao_grande/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_pedrogao_grande + type: feature + cos2023v1_penacova: + type: collection + title: COS2023V1 Penacova + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Penacova + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.389650575903316, 40.2186148592499, -8.108248032688866, 40.370801412138526] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_penacova/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_penacova + type: feature + cos2023v1_penafiel: + type: collection + title: COS2023V1 Penafiel + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Penafiel + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.392568954719971, 41.0401032980016, -8.16895875785295, 41.24800948897065] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_penafiel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_penafiel + type: feature + cos2023v1_penalva_do_castelo: + type: collection + title: COS2023V1 Penalva do Castelo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Penalva do Castelo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.783968538907506, 40.62417759676759, -7.535141759735289, + 40.72647849187548] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_penalva_do_castelo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_penalva_do_castelo + type: feature + cos2023v1_penamacor: + type: collection + title: COS2023V1 Penamacor + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Penamacor + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.319242582676601, 40.04917789229265, -6.932238575574599, + 40.324642422719776] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_penamacor/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_penamacor + type: feature + cos2023v1_penedono: + type: collection + title: COS2023V1 Penedono + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Penedono + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.461456127365883, 40.90452202095902, -7.325272217607708, + 41.07012969051496] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_penedono/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_penedono + type: feature + cos2023v1_penela: + type: collection + title: COS2023V1 Penela + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Penela + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.47458666853901, 39.923786628869195, -8.27011859406082, 40.08518864843029] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_penela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_penela + type: feature + cos2023v1_peniche: + type: collection + title: COS2023V1 Peniche + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Peniche + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.517029080454028, 39.28345873514515, -9.256431421371843, + 39.42106453285238] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_peniche/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_peniche + type: feature + cos2023v1_peso_da_regua: + type: collection + title: COS2023V1 Peso da Régua + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Peso da Régua + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.894089762690281, 41.141488509527775, -7.648177638488291, + 41.24204802372021] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_peso_da_regua/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_peso_da_regua + type: feature + cos2023v1_pinhel: + type: collection + title: COS2023V1 Pinhel + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Pinhel + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.262444255477398, 40.58764936933665, -6.953832148032321, + 40.97121879957972] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_pinhel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_pinhel + type: feature + cos2023v1_pombal: + type: collection + title: COS2023V1 Pombal + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Pombal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.93223254745858, 39.776892808392994, -8.46999088763891, 40.04550292681376] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_pombal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_pombal + type: feature + cos2023v1_ponte_da_barca: + type: collection + title: COS2023V1 Ponte da Barca + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Ponte da Barca + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.479861562197808, 41.732261992988555, -8.161772354326795, + 41.879091665831815] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_ponte_da_barca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_ponte_da_barca + type: feature + cos2023v1_ponte_de_lima: + type: collection + title: COS2023V1 Ponte de Lima + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Ponte de Lima + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.699715669922647, 41.62367065692657, -8.461479746472852, + 41.87028780628238] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_ponte_de_lima/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_ponte_de_lima + type: feature + cos2023v1_ponte_de_sor: + type: collection + title: COS2023V1 Ponte de Sor + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Ponte de Sor + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.343869930097744, 38.978215966000256, -7.824360875421694, + 39.38463395965249] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_ponte_de_sor/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_ponte_de_sor + type: feature + cos2023v1_portalegre: + type: collection + title: COS2023V1 Portalegre + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Portalegre + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.558526713269307, 39.146235849019895, -7.231471693082903, + 39.39874242169016] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_portalegre/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_portalegre + type: feature + cos2023v1_portel: + type: collection + title: COS2023V1 Portel + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Portel + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.93649194016722, 38.18845398256607, -7.457194903195194, 38.43860358851756] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_portel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_portel + type: feature + cos2023v1_portimao: + type: collection + title: COS2023V1 Portimão + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Portimão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.684664933197661, 37.10841885973309, -8.485203418094397, + 37.279916851590144] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_portimao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_portimao + type: feature + cos2023v1_porto: + type: collection + title: COS2023V1 Porto + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Porto + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.691294069420442, 41.13835067971358, -8.552613455058339, + 41.18593530519972] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_porto/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_porto + type: feature + cos2023v1_porto_de_mos: + type: collection + title: COS2023V1 Porto de Mós + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Porto de Mós + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.933562358998964, 39.46525100895433, -8.687380355469505, + 39.651512374057326] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_porto_de_mos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_porto_de_mos + type: feature + cos2023v1_proenca_a_nova: + type: collection + title: COS2023V1 Proença-a-Nova + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Proença-a-Nova + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.03575370222304, 39.565783196408695, -7.739666369805511, + 39.87060795417982] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_proenca_a_nova/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_proenca_a_nova + type: feature + cos2023v1_povoa_de_lanhoso: + type: collection + title: COS2023V1 Póvoa de Lanhoso + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Póvoa de Lanhoso + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.344309949130823, 41.51857089052586, -8.14692379819111, 41.65591140680206] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_povoa_de_lanhoso/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_povoa_de_lanhoso + type: feature + cos2023v1_povoa_de_varzim: + type: collection + title: COS2023V1 Póvoa de Varzim + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Póvoa de Varzim + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.789062684094041, 41.36457111899598, -8.590646977734547, + 41.471971416666904] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_povoa_de_varzim/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_povoa_de_varzim + type: feature + cos2023v1_redondo: + type: collection + title: COS2023V1 Redondo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Redondo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.725670346624729, 38.4755273375963, -7.489086839003917, 38.75512807703245] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_redondo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_redondo + type: feature + cos2023v1_reguengos_de_monsaraz: + type: collection + title: COS2023V1 Reguengos de Monsaraz + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Reguengos de Monsaraz + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.61288859063159, 38.227365099481744, -7.337859894061644, + 38.52659238038763] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_reguengos_de_monsaraz/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_reguengos_de_monsaraz + type: feature + cos2023v1_resende: + type: collection + title: COS2023V1 Resende + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Resende + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.027570479059985, 40.99929789401397, -7.850346080394981, + 41.150508314551224] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_resende/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_resende + type: feature + cos2023v1_ribeira_de_pena: + type: collection + title: COS2023V1 Ribeira de Pena + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Ribeira de Pena + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.909866324118603, 41.40363026425371, -7.704066800095003, + 41.652385370832526] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_ribeira_de_pena/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_ribeira_de_pena + type: feature + cos2023v1_rio_maior: + type: collection + title: COS2023V1 Rio Maior + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Rio Maior + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.00157588980757, 39.234912736460835, -8.783067444282803, + 39.466007470314615] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_rio_maior/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_rio_maior + type: feature + cos2023v1_sabrosa: + type: collection + title: COS2023V1 Sabrosa + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Sabrosa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.658179649503069, 41.15611740239223, -7.531497424511642, + 41.412548034484544] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sabrosa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sabrosa + type: feature + cos2023v1_sabugal: + type: collection + title: COS2023V1 Sabugal + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Sabugal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.332556000359985, 40.25389894472376, -6.78096071134138, 40.55299486748677] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sabugal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sabugal + type: feature + cos2023v1_salvaterra_de_magos: + type: collection + title: COS2023V1 Salvaterra de Magos + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Salvaterra de Magos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.815214709652837, 38.96167599369941, -8.575235909250573, + 39.13262573657938] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_salvaterra_de_magos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_salvaterra_de_magos + type: feature + cos2023v1_santa_comba_dao: + type: collection + title: COS2023V1 Santa Comba Dão + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Santa Comba Dão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.186818085320883, 40.333090408750685, -8.045048562094985, + 40.46542246903549] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_santa_comba_dao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_santa_comba_dao + type: feature + cos2023v1_santa_maria_da_feira: + type: collection + title: COS2023V1 Santa Maria da Feira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Santa Maria da Feira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.612964947840235, 40.87215211210144, -8.388852428560325, + 41.05346116026964] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_santa_maria_da_feira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_santa_maria_da_feira + type: feature + cos2023v1_santa_marta_de_penaguiao: + type: collection + title: COS2023V1 Santa Marta de Penaguião + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Santa Marta de Penaguião + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.895730605632643, 41.173557044605026, -7.743650539460693, + 41.27304881786548] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_santa_marta_de_penaguiao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_santa_marta_de_penaguiao + type: feature + cos2023v1_santarem: + type: collection + title: COS2023V1 Santarém + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Santarém + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.899447449219112, 39.16874642757498, -8.556894618727831, + 39.483009434935845] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_santarem/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_santarem + type: feature + cos2023v1_santiago_do_cacem: + type: collection + title: COS2023V1 Santiago do Cacém + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Santiago do Cacém + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.825614918026124, 37.749393262352996, -8.29313532012501, + 38.12694891332986] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_santiago_do_cacem/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_santiago_do_cacem + type: feature + cos2023v1_santo_tirso: + type: collection + title: COS2023V1 Santo Tirso + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Santo Tirso + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.519850439602127, 41.238070414399466, -8.316449703966018, + 41.3842886063551] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_santo_tirso/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_santo_tirso + type: feature + cos2023v1_sardoal: + type: collection + title: COS2023V1 Sardoal + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Sardoal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.195236966070427, 39.497333917805804, -8.080913597539936, + 39.626603973691665] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sardoal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sardoal + type: feature + cos2023v1_seia: + type: collection + title: COS2023V1 Seia + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Seia + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.849226744815818, 40.229918727189336, -7.583432456157536, + 40.535516835025376] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_seia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_seia + type: feature + cos2023v1_seixal: + type: collection + title: COS2023V1 Seixal + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Seixal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.178347885945058, 38.54067544356502, -9.047764430941779, + 38.65588333060508] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_seixal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_seixal + type: feature + cos2023v1_sernancelhe: + type: collection + title: COS2023V1 Sernancelhe + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Sernancelhe + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.660584531351262, 40.812451001960284, -7.374209229608668, + 41.02197947929788] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sernancelhe/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sernancelhe + type: feature + cos2023v1_serpa: + type: collection + title: COS2023V1 Serpa + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Serpa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.682327802025188, 37.74120437754112, -7.248260236454084, + 38.17640118426028] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_serpa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_serpa + type: feature + cos2023v1_serta: + type: collection + title: COS2023V1 Sertã + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Sertã + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.293123449994342, 39.726979262373334, -7.915857624447407, + 39.948693796162665] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_serta/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_serta + type: feature + cos2023v1_sesimbra: + type: collection + title: COS2023V1 Sesimbra + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Sesimbra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.222921974607067, 38.40907442337448, -9.017652600403368, + 38.58331896888709] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sesimbra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sesimbra + type: feature + cos2023v1_setubal: + type: collection + title: COS2023V1 Setúbal + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Setúbal + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.055624112483068, 38.453960361462, -8.731391291589762, 38.580721107034414] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_setubal/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_setubal + type: feature + cos2023v1_sever_do_vouga: + type: collection + title: COS2023V1 Sever do Vouga + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Sever do Vouga + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.416469581877847, 40.63676197645532, -8.271932272120482, + 40.799922464842766] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sever_do_vouga/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sever_do_vouga + type: feature + cos2023v1_silves: + type: collection + title: COS2023V1 Silves + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Silves + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.535457647913582, 37.08862375857678, -8.176880573135868, + 37.43939031168233] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_silves/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_silves + type: feature + cos2023v1_sines: + type: collection + title: COS2023V1 Sines + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Sines + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.890550901882472, 37.80494695931996, -8.681435537087564, + 38.04929489872328] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sines/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sines + type: feature + cos2023v1_sintra: + type: collection + title: COS2023V1 Sintra + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Sintra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.500526607165842, 38.73858182615243, -9.220690791832494, + 38.93243218258392] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sintra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sintra + type: feature + cos2023v1_sobral_de_monte_agraco: + type: collection + title: COS2023V1 Sobral de Monte Agraço + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Sobral de Monte Agraço + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.240566149914214, 38.947890758185274, -9.098557958422951, + 39.03591117031415] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sobral_de_monte_agraco/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sobral_de_monte_agraco + type: feature + cos2023v1_soure: + type: collection + title: COS2023V1 Soure + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Soure + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.763911823358981, 39.94884374172167, -8.424613057209712, + 40.17592852378922] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_soure/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_soure + type: feature + cos2023v1_sousel: + type: collection + title: COS2023V1 Sousel + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Sousel + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.914753179637721, 38.895793223986054, -7.539708714418998, + 39.022321658317054] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sousel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sousel + type: feature + cos2023v1_satao: + type: collection + title: COS2023V1 Sátão + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Sátão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.775509661033738, 40.68107403101336, -7.570704675894423, + 40.87478639935721] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_satao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_satao + type: feature + cos2023v1_sao_bras_de_alportel: + type: collection + title: COS2023V1 São Brás de Alportel + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + São Brás de Alportel + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.96599897376937, 37.12251521260791, -7.784922830712874, 37.26876564989318] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sao_bras_de_alportel/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sao_bras_de_alportel + type: feature + cos2023v1_sao_joao_da_madeira: + type: collection + title: COS2023V1 São João da Madeira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + São João da Madeira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.51204474028974, 40.878833364376135, -8.47361207833262, 40.916605372142996] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sao_joao_da_madeira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sao_joao_da_madeira + type: feature + cos2023v1_sao_joao_da_pesqueira: + type: collection + title: COS2023V1 São João da Pesqueira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + São João da Pesqueira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.555744596098678, 40.99937372706266, -7.304573035638709, + 41.21465782194327] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sao_joao_da_pesqueira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sao_joao_da_pesqueira + type: feature + cos2023v1_sao_pedro_do_sul: + type: collection + title: COS2023V1 São Pedro do Sul + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + São Pedro do Sul + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.255095755107579, 40.72922044635303, -7.927512564118046, + 40.93653611615887] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_sao_pedro_do_sul/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_sao_pedro_do_sul + type: feature + cos2023v1_tabuaco: + type: collection + title: COS2023V1 Tabuaço + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Tabuaço + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.640284130888307, 41.005701344191685, -7.474630422144253, + 41.17416188534444] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_tabuaco/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_tabuaco + type: feature + cos2023v1_tarouca: + type: collection + title: COS2023V1 Tarouca + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Tarouca + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.85065361776791, 40.95425302602045, -7.659784864797182, 41.081011992192266] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_tarouca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_tarouca + type: feature + cos2023v1_tavira: + type: collection + title: COS2023V1 Tavira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Tavira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.915190180746207, 37.05408499318969, -7.568816355660194, + 37.38697582830811] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_tavira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_tavira + type: feature + cos2023v1_terras_de_bouro: + type: collection + title: COS2023V1 Terras de Bouro + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Terras de Bouro + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.362889810626369, 41.649498047651, -8.044731055182535, 41.82063112642428] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_terras_de_bouro/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_terras_de_bouro + type: feature + cos2023v1_tomar: + type: collection + title: COS2023V1 Tomar + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Tomar + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.512532713135355, 39.47660602157727, -8.236406026097296, + 39.70777505465882] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_tomar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_tomar + type: feature + cos2023v1_tondela: + type: collection + title: COS2023V1 Tondela + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Tondela + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.308419918671186, 40.447964736267515, -7.959153537969737, + 40.64067041760161] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_tondela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_tondela + type: feature + cos2023v1_torre_de_moncorvo: + type: collection + title: COS2023V1 Torre de Moncorvo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Torre de Moncorvo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.223713982282807, 41.03307498736933, -6.798175565937526, + 41.30918766904028] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_torre_de_moncorvo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_torre_de_moncorvo + type: feature + cos2023v1_torres_novas: + type: collection + title: COS2023V1 Torres Novas + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Torres Novas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.673322420817527, 39.39713754076873, -8.450787526912187, + 39.63210687045755] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_torres_novas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_torres_novas + type: feature + cos2023v1_torres_vedras: + type: collection + title: COS2023V1 Torres Vedras + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Torres Vedras + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.422101623216225, 39.00406835233825, -9.12572605778199, 39.21620473336823] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_torres_vedras/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_torres_vedras + type: feature + cos2023v1_trancoso: + type: collection + title: COS2023V1 Trancoso + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Trancoso + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.467240657333762, 40.68944553726162, -7.186085301239468, + 40.92182090389819] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_trancoso/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_trancoso + type: feature + cos2023v1_trofa: + type: collection + title: COS2023V1 Trofa + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Trofa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.634488251796993, 41.2572501298799, -8.506175379336264, 41.34785796818998] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_trofa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_trofa + type: feature + cos2023v1_tabua: + type: collection + title: COS2023V1 Tábua + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Tábua + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.134000329917493, 40.24071663972742, -7.89897475035813, 40.42395643678551] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_tabua/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_tabua + type: feature + cos2023v1_vagos: + type: collection + title: COS2023V1 Vagos + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vagos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.784028884237841, 40.424052697224596, -8.607685783188955, + 40.58292845871863] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vagos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vagos + type: feature + cos2023v1_vale_de_cambra: + type: collection + title: COS2023V1 Vale de Cambra + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vale de Cambra + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.43474586870201, 40.76317341493931, -8.236763512471457, 40.90362953228248] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vale_de_cambra/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vale_de_cambra + type: feature + cos2023v1_valenca: + type: collection + title: COS2023V1 Valença + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Valença + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.681907409514128, 41.92716712132895, -8.529221546095497, + 42.056872327020656] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_valenca/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_valenca + type: feature + cos2023v1_valongo: + type: collection + title: COS2023V1 Valongo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Valongo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.570727255884604, 41.1407644399656, -8.43999522700725, 41.26902460337855] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_valongo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_valongo + type: feature + cos2023v1_valpacos: + type: collection + title: COS2023V1 Valpaços + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Valpaços + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.531108051086026, 41.440422844573284, -7.170640234000507, + 41.783507076185934] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_valpacos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_valpacos + type: feature + cos2023v1_vendas_novas: + type: collection + title: COS2023V1 Vendas Novas + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vendas Novas + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.658467940114265, 38.542116301910845, -8.378239640859318, + 38.75460449411278] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vendas_novas/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vendas_novas + type: feature + cos2023v1_viana_do_alentejo: + type: collection + title: COS2023V1 Viana do Alentejo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Viana do Alentejo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.322570785477323, 38.2995250051615, -7.908556020984166, 38.48174317671142] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_viana_do_alentejo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_viana_do_alentejo + type: feature + cos2023v1_viana_do_castelo: + type: collection + title: COS2023V1 Viana do Castelo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Viana do Castelo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.881058316994906, 41.606380653870424, -8.64205950223043, + 41.82970789801029] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_viana_do_castelo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_viana_do_castelo + type: feature + cos2023v1_vidigueira: + type: collection + title: COS2023V1 Vidigueira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vidigueira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.880873500977832, 38.06407028316155, -7.486929176836985, + 38.25806023920184] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vidigueira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vidigueira + type: feature + cos2023v1_vieira_do_minho: + type: collection + title: COS2023V1 Vieira do Minho + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vieira do Minho + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.259574753716638, 41.546387830932616, -7.981525450158186, + 41.700753885809064] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vieira_do_minho/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vieira_do_minho + type: feature + cos2023v1_vila_flor: + type: collection + title: COS2023V1 Vila Flor + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Flor + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.298174884080352, 41.22791550801536, -7.032632375168383, + 41.41270584438426] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_flor/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_flor + type: feature + cos2023v1_vila_franca_de_xira: + type: collection + title: COS2023V1 Vila Franca de Xira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Franca de Xira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.118434004419075, 38.79325080140072, -8.841540934332642, + 39.03157480104459] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_franca_de_xira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_franca_de_xira + type: feature + cos2023v1_vila_nova_da_barquinha: + type: collection + title: COS2023V1 Vila Nova da Barquinha + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Nova da Barquinha + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.467747318289875, 39.44704577410029, -8.32709509115791, 39.521005804171025] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_nova_da_barquinha/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_nova_da_barquinha + type: feature + cos2023v1_vila_nova_de_cerveira: + type: collection + title: COS2023V1 Vila Nova de Cerveira + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Nova de Cerveira + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.78575404591823, 41.846676151487834, -8.637589529813129, + 41.99066463386939] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_nova_de_cerveira/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_nova_de_cerveira + type: feature + cos2023v1_vila_nova_de_famalicao: + type: collection + title: COS2023V1 Vila Nova de Famalicão + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Nova de Famalicão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.623321307688082, 41.33853731454811, -8.376800172774889, + 41.47882347134676] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_nova_de_famalicao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_nova_de_famalicao + type: feature + cos2023v1_vila_nova_de_foz_coa: + type: collection + title: COS2023V1 Vila Nova de Foz Côa + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Nova de Foz Côa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.345710919743355, 40.92284689072601, -6.976669607397896, + 41.17935167500039] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_nova_de_foz_coa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_nova_de_foz_coa + type: feature + cos2023v1_vila_nova_de_gaia: + type: collection + title: COS2023V1 Vila Nova de Gaia + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Nova de Gaia + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.675575033616, 41.009304123743725, -8.44874065529945, 41.14746838263079] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_nova_de_gaia/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_nova_de_gaia + type: feature + cos2023v1_vila_nova_de_paiva: + type: collection + title: COS2023V1 Vila Nova de Paiva + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Nova de Paiva + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.868479874640064, 40.76492860310488, -7.687059996834042, + 40.94783261926747] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_nova_de_paiva/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_nova_de_paiva + type: feature + cos2023v1_vila_nova_de_poiares: + type: collection + title: COS2023V1 Vila Nova de Poiares + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Nova de Poiares + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.340313324344356, 40.176043722004664, -8.163629269441165, + 40.254687561208954] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_nova_de_poiares/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_nova_de_poiares + type: feature + cos2023v1_vila_pouca_de_aguiar: + type: collection + title: COS2023V1 Vila Pouca de Aguiar + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Pouca de Aguiar + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.784636697864811, 41.391089959213076, -7.471392368953417, + 41.639702070361395] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_pouca_de_aguiar/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_pouca_de_aguiar + type: feature + cos2023v1_vila_real: + type: collection + title: COS2023V1 Vila Real + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Real + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.921366916206175, 41.17968515034873, -7.600299644535202, + 41.42152516795081] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_real/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_real + type: feature + cos2023v1_vila_real_de_santo_antonio: + type: collection + title: COS2023V1 Vila Real de Santo António + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Real de Santo António + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.574620981108105, 37.142367064689736, -7.393304846125638, + 37.25906508129838] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_real_de_santo_antonio/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_real_de_santo_antonio + type: feature + cos2023v1_vila_velha_de_rodao: + type: collection + title: COS2023V1 Vila Velha de Ródão + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Velha de Ródão + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.828848931805937, 39.53736490188611, -7.487946515360604, + 39.79519735031723] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_velha_de_rodao/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_velha_de_rodao + type: feature + cos2023v1_vila_verde: + type: collection + title: COS2023V1 Vila Verde + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Verde + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.54736003844241, 41.56888709185913, -8.306191798390403, 41.77060843450578] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_verde/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_verde + type: feature + cos2023v1_vila_vicosa: + type: collection + title: COS2023V1 Vila Viçosa + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila Viçosa + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.499993381892885, 38.67123449854883, -7.207376193835662, + 38.848021631205995] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_vicosa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_vicosa + type: feature + cos2023v1_vila_de_rei: + type: collection + title: COS2023V1 Vila de Rei + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila de Rei + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.23814530197993, 39.61126540638164, -8.050056884359739, 39.759889393583926] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_de_rei/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_de_rei + type: feature + cos2023v1_vila_do_bispo: + type: collection + title: COS2023V1 Vila do Bispo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila do Bispo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.997545018487784, 36.993499004083645, -8.772261249950228, + 37.165411136438685] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_do_bispo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_do_bispo + type: feature + cos2023v1_vila_do_conde: + type: collection + title: COS2023V1 Vila do Conde + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vila do Conde + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.767960707147472, 41.255494908205634, -8.610623579010419, + 41.42570920040902] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vila_do_conde/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vila_do_conde + type: feature + cos2023v1_vimioso: + type: collection + title: COS2023V1 Vimioso + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vimioso + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-6.678098500336363, 41.4456259920277, -6.366744030204737, 41.693267219548] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vimioso/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vimioso + type: feature + cos2023v1_vinhais: + type: collection + title: COS2023V1 Vinhais + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vinhais + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-7.213597774733427, 41.67113241877329, -6.860957079898794, + 41.99075777547884] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vinhais/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vinhais + type: feature + cos2023v1_viseu: + type: collection + title: COS2023V1 Viseu + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Viseu + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.091588935061592, 40.53573247519868, -7.75898421046043, 40.84259976820926] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_viseu/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_viseu + type: feature + cos2023v1_vizela: + type: collection + title: COS2023V1 Vizela + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vizela + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.328090847618123, 41.341064579152835, -8.246138356946457, + 41.40578455413938] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vizela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vizela + type: feature + cos2023v1_vouzela: + type: collection + title: COS2023V1 Vouzela + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Vouzela + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.274278402535948, 40.600621427337614, -8.00724869007128, + 40.75008187066711] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_vouzela/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_vouzela + type: feature + cos2023v1_agueda: + type: collection + title: COS2023V1 Águeda + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Águeda + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.558151993660811, 40.495908361811274, -8.245383292350219, + 40.694290517663] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_agueda/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_agueda + type: feature + cos2023v1_evora: + type: collection + title: COS2023V1 Évora + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Évora + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.165696184305348, 38.34068140165637, -7.554935069489544, + 38.768196196581556] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_evora/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_evora + type: feature + cos2023v1_ilhavo: + type: collection + title: COS2023V1 Ílhavo + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Ílhavo + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-8.766088884173472, 40.56244200923345, -8.618095418650874, + 40.65985505580761] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_ilhavo/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_ilhavo + type: feature + cos2023v1_obidos: + type: collection + title: COS2023V1 Óbidos + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) - + Óbidos + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + - S2 + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.291880543286508, 39.304622460099644, -9.058655808392565, + 39.43161920034526] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/v_cos2023v1_obidos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: v_cos2023v1_obidos + type: feature + municipios: + type: collection + title: CAOP2024 Municípios + description: Carta Administrativa Oficial de Portugal, Continente, 2024. Municípios + keywords: + - Limites Administrativos + - Portugal Continental + - Municipios + - CAOP + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.51, 36.96, -6.19, 42.15] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/municipios/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: fid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: municipios + type: feature + freguesias: + type: collection + title: CAOP2024 Freguesias + description: Carta Administrativa Oficial de Portugal, Continente, 2024. Freguesias + keywords: + - Limites Administrativos + - Portugal Continental + - Freguesias + - CAOP + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.51, 36.96, -6.19, 42.15] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/freguesias/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: fid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: freguesias + type: feature + area_administrativa: + type: collection + title: CAOP2024 Áreas administrativas + description: Carta Administrativa Oficial de Portugal, Continente, 2024. Áreas + administrativas + keywords: + - Limites Admnistrativos + - Portugal Continental + - Áreas administrativas + - CAOP + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.51, 36.96, -6.19, 42.15] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/area_administrativa/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: fid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: area_administrativa + type: feature + nuts1: + type: collection + title: CAOP2024 NUTSI + description: Carta Administrativa Oficial de Portugal, Continente, 2024. NUTSI + keywords: + - Limites Administrativos + - Portugal Continental + - NUTSI + - CAOP + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.51, 36.96, -6.19, 42.15] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/nuts1/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: fid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: nuts1 + type: feature + nuts2: + type: collection + title: CAOP2024 NUTSII + description: Carta Administrativa Oficial de Portugal, Continente, 2024. NUTSII + keywords: + - Limites Administrativos + - Portugal Continental + - NUTSII + - CAOP + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.51, 36.96, -6.19, 42.15] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/nuts2/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: fid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: nuts2 + type: feature + nuts3: + type: collection + title: CAOP2024 NUTSIII + description: Carta Administrativa Oficial de Portugal, Continente, 2024. NUTSIII + keywords: + - Limites Administrativos + - Portugal Continental + - NUTSIII + - CAOP + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.51, 36.96, -6.19, 42.15] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/nuts3/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: fid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: nuts3 + type: feature + trocos: + type: collection + title: CAOP2024 Troços + description: Carta Administrativa Oficial de Portugal, Continente, 2024. Troços + administrativos + keywords: + - Limites Admnistrativos + - Portugal Continental + - Troços administrativos + - CAOP + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.51, 36.96, -6.19, 42.15] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/trocos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: fid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: trocos + type: feature + distritos: + type: collection + title: CAOP2024 Distritos + description: Carta Administrativa Oficial de Portugal, Continente, 2024. Distritos + keywords: + - Limites Admnistrativos + - Portugal Continental + - Distritos + - CAOP + links: + - type: text/csv + rel: canonical + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + title: data + hreflang: en-US + extents: + spatial: + bbox: [-9.51, 36.96, -6.19, 42.15] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: tile + name: MVT-proxy + data: http://tiles:3000/distritos/{z}/{x}/{y}?f=mvt + options: + zoom: + min: 0 + max: 15 + schemes: + - WebMercatorQuad + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: fid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: distritos + type: feature diff --git a/tests/dgterritorio_OGCAPI_@21359a6_docker.config.yml b/tests/dgterritorio_OGCAPI_@21359a6_docker.config.yml new file mode 100644 index 0000000..84e8b02 --- /dev/null +++ b/tests/dgterritorio_OGCAPI_@21359a6_docker.config.yml @@ -0,0 +1,1172 @@ +server: + bind: + host: 0.0.0.0 + port: 80 + url: ${HOST_URL} + mimetype: application/json; charset=UTF-8 + encoding: utf-8 + gzip: false + languages: + - pt-PT + - en-US + cors: true + pretty_print: true + limits: + default_items: 100 + max_items: 5000 + on_exceed: throttle + map: + url: https://tile.openstreetmap.org/{z}/{x}/{y}.png + attribution: '© OpenStreetMap + contributors' + templates: + path: /templates + static: /pygeoapi/pygeoapi/static +logging: + level: DEBUG + logfile: /tmp/pygeoapi.log +metadata: + identification: + title: + pt: Serviço OGC API da DGT + en: OGC API Service from DGT + description: + pt: Plataforma de publicação de dados abertos da DGT em OGC API + en: Plattform for publishing Open Data from DGT in OGC API + keywords: + pt: + - DGT + - dados abertos + - OGC API + - api + en: + - DGT + - OPEN DATA + - OGC API + - api + keywords_type: theme + terms_of_service: https://creativecommons.org/licenses/by/4.0/ + url: https://ogcapi.dgterritorio.gov.pt/ + license: + name: CC-BY 4.0 license + url: https://creativecommons.org/licenses/by/4.0/ + provider: + name: Direção-Geral do Território + url: https://www.dgterritorio.gov.pt/ + contact: + name: DGT + position: DGT + address: Rua Artilharia Um, 107 + city: Lisboa + stateorprovince: Administrative Area + postalcode: 1099-052 + country: Portugal + phone: (+351) 21 381 96 00 + fax: (+351) 21 381 96 00 + email: igeografica@dgterritorio.pt + url: https://www.dgterritorio.gov.pt/ + hours: Seg-Sext 08:00-17:00 + instructions: Durante as horas de serviço. + role: pointOfContact +resources: + ortos-rgb: + type: collection + title: OrtoSat 30 cm - Portugal Continental - 2023 (Cor Verdadeira) + description: 'A cobertura OrtoSat2023 é uma cobertura de ortoimagens obtidas a + partir de imagens de satélite de muito grande resolução espacial adquirida durante + o ano de 2023 sobre o território de Portugal continental. A cobertura é composta + por um mosaico equalizado e ininterrupto de imagens de satélite ortorretificadas + com uma resolução espacial de 30 cm. As imagens utilizadas na produção do mosaico + foram obtidas da constelação de satélites Pleiades-Neo (3 & 4) durante o período + de abril a outubro de 2023. Disponibilização em cor verdadeira: RGB: Vermelho, + Verde e Azul.' + keywords: + - Cor verdadeira + - Imagem de Satélite + - Deteção Remota + - Cartografia Oficial + - '2023' + - infoMapAccessService + - SMOS + - Ortoimagens + - OrtoSat2023 + - Ortoimagem + - Orto + - Ortofoto + - Ortofotos + - Ortofotomapa + - Ortofotomapas + - OrtoSat + - DGT + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/b2a1ca02-779b-4189-b895-85d10fff610f + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: null + end: null + providers: + - type: map + name: WMSFacade + data: https://ortos.dgterritorio.gov.pt/wms/ortosat2023 + options: + layer: ortoSat2023-CorVerdadeira + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + ortos-irg: + type: collection + title: OrtoSat 30 cm - Portugal Continental - 2023 (Falsa Cor) + description: 'A cobertura OrtoSat2023 é uma cobertura de ortoimagens obtidas a + partir de imagens de satélite de muito grande resolução espacial adquirida durante + o ano de 2023 sobre o território de Portugal continental. A cobertura é composta + por um mosaico equalizado e ininterrupto de imagens de satélite ortorretificadas + com uma resolução espacial de 30 cm. As imagens utilizadas na produção do mosaico + foram obtidas da constelação de satélites Pleiades-Neo (3 & 4) durante o período + de abril a outubro de 2023. Disponibilização em false cor: RGB: Infravermelho + Próximo, Vermelho e Verde.' + keywords: + - Falsa cor + - Imagem de Satélite + - Deteção Remota + - Cartografia Oficial + - '2023' + - infoMapAccessService + - SMOS + - Ortoimagens + - OrtoSat2023 + - Ortoimagem + - Orto + - Ortofoto + - Ortofotos + - Ortofotomapa + - Ortofotomapas + - OrtoSat + - DGT + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/b2a1ca02-779b-4189-b895-85d10fff610f + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: null + end: null + providers: + - type: map + name: WMSFacade + data: https://ortos.dgterritorio.gov.pt/wms/ortosat2023 + options: + layer: ortoSat2023-FalsaCor + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + cadastro: + description: Parcelas Cadastrais + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + keywords: + - prédio + - conservação cadastral + - INSPIRECORE + - DL_72_2023 + - Cadastro Oficial + - HVD + - cadastro + - cadastro predial + - carta cadastral + - prédios cadastrados + - cadastro predial atualizado + - Base de Dados Nacional de Cadastro Predial + - BDNCP + - Direção-geral do Território + - DGT + - Geoespaciais + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/73282c48-7f23-435c-ba41-592a96470080 + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_INSPIRE_DB} + host: ${REMOTE_INSPIRE_HOST} + port: ${REMOTE_INSPIRE_PORT} + user: ${REMOTE_INSPIRE_USER} + password: ${REMOTE_INSPIRE_PASSWORD} + search_path: + - inspire + geom_field: geometry + id_field: id + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: mv_cadastralparcel_4326 + type: feature + - data: http://tiles_inspire:3000/mv_cadastralparcel_4326/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: Cadastro Predial (Continente) + type: collection + cos2018v3: + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) + extents: + spatial: + bbox: + - -9.68 + - 36.77 + - -6.17 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: cos2018v3 + type: feature + - data: http://tiles:3000/cos2018v3/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: COS2018v3-S2 + type: collection + cos2023v1: + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) + extents: + spatial: + bbox: + - -9.68 + - 36.77 + - -6.17 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: cos2023v1 + type: feature + - data: http://tiles:3000/cos2023v1/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: COS2023v1-S2 + type: collection + municipios: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. Municípios + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: '2000-10-30T18:24:39Z' + end: '2007-10-30T08:57:29Z' + keywords: + - Limites Administrativos + - Portugal Continental + - Municipios + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: dtmn + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_municipios + type: feature + - data: http://tiles_caop:3000/cont_municipios/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 Municípios + type: collection + freguesias: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. Freguesias + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Administrativos + - Portugal Continental + - Freguesias + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: dtmnfr + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_freguesias + type: feature + - data: http://tiles_caop:3000/cont_freguesias/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 Freguesias + type: collection + admin: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. Áreas + administrativas + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Admnistrativos + - Portugal Continental + - Áreas administrativas + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: id + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_areas_administrativas + type: feature + - data: http://tiles_caop:3000/cont_areas_administrativas/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 Áreas administrativas + type: collection + nuts1: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. NUTSI + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Administrativos + - Portugal Continental + - NUTSI + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: codigo + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_nuts1 + type: feature + - data: http://tiles_caop:3000/cont_nuts1/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 NUTSI + type: collection + nuts2: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. NUTSII + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Administrativos + - Portugal Continental + - NUTSII + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: codigo + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_nuts2 + type: feature + - data: http://tiles_caop:3000/cont_nuts2/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 NUTSII + type: collection + nuts3: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. NUTSIII + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Administrativos + - Portugal Continental + - NUTSIII + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: codigo + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_nuts3 + type: feature + - data: http://tiles_caop:3000/nuts3/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 NUTSIII + type: collection + trocos: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. Troços + administrativos + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Admnistrativos + - Portugal Continental + - Troços administrativos + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: identificador + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_trocos + type: feature + - data: http://tiles_caop:3000/trocos/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 Troços + type: collection + distritos: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. Distritos + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Admnistrativos + - Portugal Continental + - Distritos + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: dt + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_distritos + type: feature + - data: http://tiles_caop:3000/distritos/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 Distritos + type: collection + snig: + description: OGC API que permite a descoberta e acesso a metadados registados no Sistema Nacional de Informação Geográfica - SNIG. + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: null + end: null + keywords: + - Metadados + - Catálogo + - SNIG + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/home + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - type: record + name: CSWFacade + data: https://snig.dgterritorio.gov.pt/rndg/srv/eng/csw?request=GetCapabilities&service=CSW + id_field: identifier + time_field: datetime + title_field: title + title: SNIG + type: collection + point: + description: OGC API que permite a descoberta e acesso a metadados catalogados para o Portal de Informação Territorial - PoInT. + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: null + end: null + keywords: + - Metadados + - Catálogo + - PoInT + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/home + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - type: record + name: CSWFacade + data: https://snig.dgterritorio.gov.pt/rndg/srv/eng/csw-point?request=GetCapabilities&service=CSW + id_field: identifier + time_field: datetime + title_field: title + title: PoInT + type: collection + cosc2018: + type: collection + title: Carta de Ocupação do Solo Conjuntural - 2018 + description: 'A COSc foi criada com o objetivo de fornecer informação complementar à Carta de Uso e Ocupação do Solo (COS), e retrata a ocupação do solo num ano específico e não o uso do solo.' + keywords: + - Sentinel + - DGT + - Imagem de Satélite + - Deteção Remota + - Copernicus + - Sentinel-2 + - 2018 + - Carta de ocupação do solo + - Cartografia temática + - COSsim + - COSsim2018 + - COSc + - COSc2018 + - SMOS + - infoMapAccessService + - infoFeatureAccessService + - HVD + - Observação da Terra e do ambiente + - point + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/262dabc4-0217-44c1-8983-21f69d8670c7 + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: "2018-01-01T00:00:00Z" + end: "2018-12-31T23:59:00Z" + providers: + - type: map + name: WMSFacade + data: https://geo2.dgterritorio.gov.pt/wms/COSc2018 + options: + layer: COSc + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + cosc2020: + type: collection + title: Carta de Ocupação do Solo Conjuntural - 2020 + description: 'A COSc foi criada com o objetivo de fornecer informação complementar à Carta de Uso e Ocupação do Solo (COS), e retrata a ocupação do solo num ano específico e não o uso do solo.' + keywords: + - Sentinel + - DGT + - Imagem de Satélite + - Deteção Remota + - Copernicus + - Sentinel-2 + - 2020 + - Carta de ocupação do solo + - Cartografia temática + - COSsim + - COSsim2020 + - COSc + - COSc2020 + - SMOS + - infoMapAccessService + - infoFeatureAccessService + - HVD + - Observação da Terra e do ambiente + - point + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/17b3bad7-ba7e-4ef5-8067-b6ac67473359 + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: "2020-01-01T00:00:00Z" + end: "2020-12-31T23:59:00Z" + providers: + - type: map + name: WMSFacade + data: https://geo2.dgterritorio.gov.pt/wms/COSc2020 + options: + layer: COSc + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + cosc2021: + type: collection + title: Carta de Ocupação do Solo Conjuntural - 2021 + description: 'A COSc foi criada com o objetivo de fornecer informação complementar à Carta de Uso e Ocupação do Solo (COS), e retrata a ocupação do solo num ano específico e não o uso do solo.' + keywords: + - Sentinel + - DGT + - Imagem de Satélite + - Deteção Remota + - Copernicus + - Sentinel-2 + - 2021 + - Carta de ocupação do solo + - Cartografia temática + - COSsim + - COSsim2021 + - COSc + - COSc2021 + - SMOS + - infoMapAccessService + - infoFeatureAccessService + - HVD + - Observação da Terra e do ambiente + - point + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/c9b955b4-eeb5-4686-ad90-3c6d5215961a + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: "2021-01-01T00:00:00Z" + end: "2021-12-31T23:59:00Z" + providers: + - type: map + name: WMSFacade + data: https://geo2.dgterritorio.gov.pt/wms/COSc2021 + options: + layer: COSc + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + cosc2022: + type: collection + title: Carta de Ocupação do Solo Conjuntural - 2022 + description: 'A COSc foi criada com o objetivo de fornecer informação complementar à Carta de Uso e Ocupação do Solo (COS), e retrata a ocupação do solo num ano específico e não o uso do solo.' + keywords: + - Sentinel + - DGT + - Imagem de Satélite + - Deteção Remota + - Copernicus + - Sentinel-2 + - 2022 + - Carta de ocupação do solo + - Cartografia temática + - COSsim + - COSsim2022 + - COSc + - COSc2022 + - SMOS + - infoMapAccessService + - infoFeatureAccessService + - HVD + - Observação da Terra e do ambiente + - point + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/fefc5557-2cc6-4efd-aab8-761f45b46f3c + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: "2022-01-01T00:00:00Z" + end: "2022-12-31T23:59:00Z" + providers: + - type: map + name: WMSFacade + data: https://geo2.dgterritorio.gov.pt/wms/COSc2022 + options: + layer: COSc + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + cosc2023: + type: collection + title: Carta de Ocupação do Solo Conjuntural - 2023 + description: 'A COSc foi criada com o objetivo de fornecer informação complementar à Carta de Uso e Ocupação do Solo (COS), e retrata a ocupação do solo num ano específico e não o uso do solo.' + keywords: + - Sentinel + - DGT + - Imagem de Satélite + - Deteção Remota + - Copernicus + - Sentinel-2 + - 2023 + - Carta de ocupação do solo + - Cartografia temática + - COSsim + - COSsim2023 + - COSc + - COSc2023 + - SMOS + - infoMapAccessService + - infoFeatureAccessService + - HVD + - Observação da Terra e do ambiente + - point + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e9d25fc4-5a25-4c5e-9bce-d470f745d89e + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: "2023-01-01T00:00:00Z" + end: "2023-12-31T23:59:00Z" + providers: + - type: map + name: WMSFacade + data: https://geo2.dgterritorio.gov.pt/wms/COSc2023 + options: + layer: COSc2023 + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png \ No newline at end of file diff --git a/tests/geopython_pygeoapi_@5ed31b4_cite.config.yml b/tests/geopython_pygeoapi_@5ed31b4_cite.config.yml new file mode 100644 index 0000000..104fb09 --- /dev/null +++ b/tests/geopython_pygeoapi_@5ed31b4_cite.config.yml @@ -0,0 +1,174 @@ +server: + bind: + host: 0.0.0.0 + port: 5001 + url: http://localhost:5001 + mimetype: application/json; charset=UTF-8 + encoding: utf-8 + language: en-US + cors: true + pretty_print: true + limits: + default_items: 10 + max_items: 10 + # templates: /path/to/templates + map: + url: https://tile.openstreetmap.org/{z}/{x}/{y}.png + attribution: '© OpenStreetMap contributors' + manager: + name: TinyDB + connection: /tmp/pygeoapi-process-manager.db + output_dir: /tmp/ + +logging: + level: ERROR + #logfile: /tmp/pygeoapi.log + +metadata: + identification: + title: pygeoapi CITE instance + description: pygeoapi instance in support of OGC CITE compliance + keywords: + - geospatial + - data + - api + keywords_type: theme + terms_of_service: https://creativecommons.org/licenses/by/4.0/ + url: https://pygeoapi.io + license: + name: CC-BY 4.0 license + url: https://creativecommons.org/licenses/by/4.0/ + provider: + name: pygeoapi + url: https://pygeoapi.io + contact: + name: Tom Kralidis + position: Senior Systems Scientist + address: Mailing Address + city: City + stateorprovince: Administrative Area + postalcode: Zip or Postal Code + country: Country + phone: +xx-xxx-xxx-xxxx + fax: +xx-xxx-xxx-xxxx + email: pygeoapi@lists.osgeo.org + url: https://pygeoapi.io/community/ + hours: Mo-Fr 08:00-17:00 + instructions: During hours of service. Off on weekends. + role: pointOfContact + +resources: + icoads-sst: + type: collection + title: International Comprehensive Ocean-Atmosphere Data Set (ICOADS) + description: International Comprehensive Ocean-Atmosphere Data Set (ICOADS) + keywords: + - icoads + - sst + - air temperature + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-01-16T06:00:00Z + end: 2000-12-16T01:20:06Z + links: + - type: text/html + rel: canonical + title: information + href: https://psl.noaa.gov/data/gridded/data.coads.1deg.html + hreflang: en-US + providers: + - type: edr + name: xarray-edr + data: ../data/coads_sst.nc + format: + name: NetCDF + mimetype: application/x-netcdf + + canada-hydat-daily-mean-02hc003: + type: collection + title: Daily Mean of Water Level or Flow + description: The daily mean is the average of all unit values for a given day. + keywords: [Daily, Daily Mean, Water Level, Flow, Discharge] + crs: + - CRS84 + links: + - type: text/html + rel: canonical + title: Water Level and Flow - Environment Canada + href: https://wateroffice.ec.gc.ca + hreflang: en-CA + - type: text/html + rel: canonical + title: Niveau d'eau et débit - Environnement Canada + href: https://wateroffice.ec.gc.ca/index_f.html + hreflang: fr-CA + - type: text/html + rel: download + title: "National water data archive: HYDAT - Canada.ca" + href: https://www.canada.ca/en/environment-climate-change/services/water-overview/quantity/monitoring/survey/data-products-services/national-archive-hydat.html + hreflang: en-CA + - type: text/html + rel: download + title: "Archives nationales des données hydrologiques : HYDAT - Canada.ca" + href: https://www.canada.ca/fr/environnement-changement-climatique/services/eau-apercu/volume/surveillance/releves/produits-donnees-services/archives-nationales-hydat.html + hreflang: fr-CA + - type: application/zip + rel: download + title: download data + href: https://collaboration.cmc.ec.gc.ca/cmc/hydrometrics/www + hreflang: en-CA + extents: + spatial: + bbox: [-142, 52, -52, 84] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 1850-01-01T00:00:00Z + end: null # or empty + providers: + - type: feature + name: TinyDB + data: ../data/canada-hydat-daily-mean-02hc003.tinydb + id_field: IDENTIFIER + time_field: DATE + + lakes: + type: collection + title: Large Lakes + description: lakes of the world, public domain + keywords: + - lakes + crs: + - CRS84 + links: + - type: text/html + rel: canonical + title: information + href: http://www.naturalearthdata.com/ + hreflang: en-US + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2011-11-11T00:00:00Z + end: null # or empty + providers: + - type: tile + name: MVT-tippecanoe + data: ../data/tiles/ne_110m_lakes + options: + bounds: [[-124.953634,-16.536406],[109.929807,66.969298]] + zoom: + min: 0 + max: 5 + format: + name: pbf + mimetype: application/vnd.mapbox-vector-tile + + hello-world: + type: process + processor: + name: HelloWorld diff --git a/tests/geopython_pygeoapi_@5ed31b4_pygeoapi-test-config-ogr.yml b/tests/geopython_pygeoapi_@5ed31b4_pygeoapi-test-config-ogr.yml new file mode 100644 index 0000000..373985d --- /dev/null +++ b/tests/geopython_pygeoapi_@5ed31b4_pygeoapi-test-config-ogr.yml @@ -0,0 +1,357 @@ +# ================================================================= +# +# Authors: Just van den Broecke +# +# Copyright (c) 2019 Just van den Broecke +# +# 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. +# +# ================================================================= + +server: + bind: + host: 0.0.0.0 + port: 5000 + url: http://localhost:5000/ + mimetype: application/json; charset=UTF-8 + encoding: utf-8 + language: en-US + cors: true + gzip: false + pretty_print: true + limits: + default_items: 10 + max_items: 10 + # templates: /path/to/templates + map: + url: https://tile.openstreetmap.org/{z}/{x}/{y}.png + attribution: '© OpenStreetMap contributors' + +logging: + level: DEBUG + #logfile: /tmp/pygeoapi.log + +metadata: + identification: + title: pygeoapi default instance + description: pygeoapi provides an API to geospatial data + keywords: + - geospatial + - data + - api + keywords_type: theme + terms_of_service: https://creativecommons.org/licenses/by/4.0/ + url: http://example.org + license: + name: CC-BY 4.0 license + url: https://creativecommons.org/licenses/by/4.0/ + provider: + name: Organization Name + url: https://pygeoapi.io + contact: + name: Lastname, Firstname + position: Position Title + address: Mailing Address + city: City + stateorprovince: Administrative Area + postalcode: Zip or Postal Code + country: Country + phone: +xx-xxx-xxx-xxxx + fax: +xx-xxx-xxx-xxxx + email: you@example.org + url: Contact URL + hours: Hours of Service + instructions: During hours of service. Off on weekends. + role: pointOfContact + +resources: + dutch_georef_stations: + type: collection + title: Dutch Georef Stations via OGR WFS + description: Locations of RD/GNSS-reference stations from Dutch Kadaster PDOK a.k.a RDInfo. Uses MapServer WFS v2 backend via OGRProvider. + keywords: + - Netherlands + - GNSS + - Surveying + - Holland + - RD + links: + - type: text/html + rel: canonical + title: information + href: http://www.nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/3ebe56dc-5f09-4fb3-b224-55c2db4ca2fd?tab=general + hreflang: nl-NL + extents: + spatial: + bbox: [ 50.7539, 7.21097, 53.4658, 3.37087 ] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: + end: null # or empty + providers: + - type: feature + name: OGR + data: + source_type: WFS + source: WFS:https://service.pdok.nl/kadaster/rdinfo/wfs/v1_0? +# source_srs: EPSG:28992 +# target_srs: EPSG:4326 + source_capabilities: + paging: True + + source_options: + # OGR_WFS_VERSION: 1.1.0 + OGR_WFS_LOAD_MULTIPLE_LAYER_DEFN: NO + + gdal_ogr_options: + EMPTY_AS_NULL: NO + GDAL_CACHEMAX: 64 + # GDAL_HTTP_PROXY: (optional proxy) + # GDAL_PROXY_AUTH: (optional auth for remote WFS) + CPL_DEBUG: NO + + storage_crs: http://www.opengis.net/def/crs/EPSG/0/28992 + id_field: gml_id + layer: rdinfo:stations + + dutch_addresses_4326: + type: collection + title: Dutch Addresses from GeoPackage in EPSG:4326 + description: Selection of Dutch addresses as derived from the key registry BAG. + keywords: + - Netherlands + - Addresses + - Europe + - Holland + - BAG + links: + - type: text/html + rel: canonical + title: information + href: http://www.nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/3a97fbe4-2b0d-4e9c-9644-276883400dd7 + hreflang: nl-NL + extents: + spatial: + bbox: [ 5.670670, 52.042700, 5.829110, 52.123700 ] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: + end: null # or empty + providers: + - type: feature + name: OGR + data: + source_type: GPKG + source: + # Feature Count: 2481 + ./tests/data/dutch_addresses_4326.gpkg +# source_srs: EPSG:4326 +# target_srs: EPSG:4326 + source_capabilities: + paging: True + crs: + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/28992 + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + id_field: id + layer: ogrgeojson + + dutch_addresses_28992: + type: collection + title: Dutch Addresses from GeoPackage in EPSG:28992 + description: Selection of Dutch addresses as derived from the key registry BAG. + keywords: + - Netherlands + - Addresses + - Europe + - Holland + - BAG + links: + - type: text/html + rel: canonical + title: information + href: http://www.nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/3a97fbe4-2b0d-4e9c-9644-276883400dd7 + hreflang: nl-NL + extents: + spatial: + bbox: [ 5.670670, 52.042700, 5.829110, 52.123700 ] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: + end: null # or empty + providers: + - type: feature + name: OGR + data: + source_type: GPKG + source: + # Feature Count: 2481 + ./tests/data/dutch_addresses_28992.gpkg +# source_srs: EPSG:4326 +# target_srs: EPSG:4326 + source_capabilities: + paging: True + crs: + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/28992 + storage_crs: http://www.opengis.net/def/crs/EPSG/0/28992 + id_field: id + layer: ogrgeojson + + ogr_gpkg_poi: + type: collection + title: Portuguese Points of Interest via OGR GPKG + description: Portuguese Points of Interest obtained from OpenStreetMap. Dataset includes Madeira and Azores islands. Uses GeoPackage backend via OGR provider. + keywords: + - Portugal + - POI + - Point of Interest + - Madeira + - Azores + - OSM + - Open Street Map + - NaturaGIS + links: + - type: text/html + rel: canonical + title: information + href: https://wiki.openstreetmap.org/wiki/Points_of_interest/ + hreflang: en-US + extents: + spatial: + bbox: [ -31.2687, 32.5898, -6.18992, 42.152 ] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: + end: null # or empty + providers: + - type: feature + name: OGR + data: + source_type: GPKG + source: tests/data/poi_portugal.gpkg +# source_srs: EPSG:4326 +# target_srs: EPSG:4326 + source_capabilities: + paging: True + + gdal_ogr_options: + EMPTY_AS_NULL: NO + GDAL_CACHEMAX: 64 + # GDAL_HTTP_PROXY: (optional proxy) + # GDAL_PROXY_AUTH: (optional auth for remote WFS) + CPL_DEBUG: NO + + id_field: osm_id + layer: poi_portugal + + sf_311incidents: + type: collection + title: SF 311Incidents via OGR ESRI Feature Server + description: OGR Provider - ESRI Feature Server - SF 311Incidents + keywords: + - USA + - ESRI + links: + - type: text/html + rel: canonical + title: information + href: http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/SanFrancisco/311Incidents/FeatureServer/0 + hreflang: en-US + extents: + spatial: + bbox: [ -180, -90, 180, 90 ] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: + end: null # or empty + providers: + - type: feature + name: OGR + data: + source_type: ESRIJSON + source: ESRIJSON:http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/SanFrancisco/311Incidents/FeatureServer/0/query?where=objectid+%3D+objectid&outfields=*&f=json +# source_srs: EPSG:4326 +# target_srs: EPSG:4326 + source_capabilities: + paging: True + + gdal_ogr_options: + EMPTY_AS_NULL: NO + GDAL_CACHEMAX: 64 + # GDAL_HTTP_PROXY: (optional proxy) + # GDAL_PROXY_AUTH: (optional auth for remote WFS) + CPL_DEBUG: NO + + id_field: objectid + + cases_italy_per_region_from_github: + type: collection + title: "Cases in Italy - DPC GitHub" + description: "Current situation within Italy, number of cases with variation per Italy, provided by ESRI, source data from DPC." + keywords: [ Daily, Cases Variation, Region ] + crs: + - CRS84 + links: + - type: text/html + rel: canonical + title: "GitHub DPC repository - COVID-19 raw data for Italy" + href: https://github.com/pcm-dpc/COVID-19 + hreflang: it-IT + extents: + spatial: + bbox: [ -180,-90,180,90 ] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2020-01-01T00:00:00Z + end: # or empty + + providers: + - type: feature + name: OGR + data: + source_type: CSV + source: /vsicurl/https://raw.githubusercontent.com/pcm-dpc/COVID-19/master/dati-regioni/dpc-covid19-ita-regioni.csv +# source_srs: EPSG:4326 +# target_srs: EPSG:4326 + source_capabilities: + paging: True + open_options: + X_POSSIBLE_NAMES: long + Y_POSSIBLE_NAMES: lat + gdal_ogr_options: + EMPTY_AS_NULL: NO + GDAL_CACHEMAX: 64 + # GDAL_HTTP_PROXY: (optional proxy) + # GDAL_PROXY_AUTH: (optional auth for remote WFS) + CPL_DEBUG: NO + id_field: fid + time_field: data + layer: dpc-covid19-ita-regioni + + hello-world: + type: process + processor: + name: HelloWorld diff --git a/tests/run_tests_locally.py b/tests/run_tests_locally.py new file mode 100644 index 0000000..a22639c --- /dev/null +++ b/tests/run_tests_locally.py @@ -0,0 +1,65 @@ +import yaml +import subprocess +import os +import venv +from pathlib import Path + +# Paths +REPO_ROOT = Path(__file__).parent.parent # adjust if script is inside a subfolder +WORKFLOW_FILE = REPO_ROOT / ".github" / "workflows" / "unit-tests.yml" +VENV_DIR = REPO_ROOT / ".venv_workflow" # dedicated venv in repo root +REQ_MAIN = REPO_ROOT / "requirements.txt" +REQ_DEV = REPO_ROOT / "requirements_dev.txt" + +# 1. Create the virtual environment if it doesn't exist +if not VENV_DIR.exists(): + print(f"Creating virtual environment at {VENV_DIR}") + venv.create(VENV_DIR, with_pip=True) + +# Determine Python and pip inside the venv +if os.name == "nt": + python_exe = VENV_DIR / "Scripts" / "python.exe" + pip_exe = VENV_DIR / "Scripts" / "pip.exe" +else: + python_exe = VENV_DIR / "bin" / "python" + pip_exe = VENV_DIR / "bin" / "pip" + +# Upgrade pip inside the venv +subprocess.run( + [str(python_exe), "-m", "pip", "install", "--upgrade", "pip"], check=True +) + +# Install requirements into the venv +print("\nInstalling main requirements...") +subprocess.run( + [str(python_exe), "-m", "pip", "install", "-r", str(REQ_MAIN)], check=True +) + +print("Installing dev/test requirements...") +subprocess.run( + [str(python_exe), "-m", "pip", "install", "-r", str(REQ_DEV)], check=True +) + +# 4. Load workflow YAML +with open(WORKFLOW_FILE) as f: + workflow = yaml.safe_load(f) + +# 5. Iterate through jobs and steps +for job_name, job in workflow.get("jobs", {}).items(): + print(f"\n=== Running job: {job_name} ===") + for step in job.get("steps", []): + if "run" in step: + cmd = step["run"] + + # 5a. Set environment variables for this step + env_vars = os.environ.copy() + step_env = step.get("env", {}) + for k, v in step_env.items(): + env_vars[k] = v + + # 5b. Replace "python" in commands with venv Python + cmd = cmd.replace("python", str(python_exe)) + + # 5c. Run the command from repo root + print(f"\n--> Running: {cmd}") + subprocess.run(cmd, shell=True, check=True, env=env_vars, cwd=REPO_ROOT) diff --git a/tests/test_yaml_save.py b/tests/test_yaml_save.py new file mode 100644 index 0000000..c5d6f48 --- /dev/null +++ b/tests/test_yaml_save.py @@ -0,0 +1,142 @@ +from copy import deepcopy +import yaml +import pytest +import subprocess +from pathlib import Path + +from ..utils.data_diff import diff_yaml_dict_remove_known_faulty_fields +from ..pygeoapi_config_dialog import PygeoapiConfigDialog + +BASE_DIR = Path(__file__).parent / "yaml_samples" + + +# List all YAML files dynamically +# First, delete all YAML files that start with "saved_" +for f in BASE_DIR.glob("saved_*.yml"): + f.unlink() # deletes the file +sample_yaml_files = list(BASE_DIR.glob("*.yml")) + + +def load_yaml(path: str | Path) -> dict: + with open(path, "r", encoding="utf-8") as f: + return yaml.safe_load(f) # returns nested dicts/lists + + +@pytest.fixture() +def base_dir(): + return BASE_DIR + # return os.path.dirname(os.path.abspath(__file__)) # directory of current file + + +@pytest.mark.parametrize("sample_yaml", sample_yaml_files) +def test_json_schema_on_open_save(qtbot, sample_yaml: str): + """Validate YAML against schema.json after loading and saving.""" + + # Create the dialog widget and let qtbot manage it + dialog = PygeoapiConfigDialog() + qtbot.addWidget(dialog) + + # Load YAML + # abs_yaml_path = os.path.join(base_dir, sample_yaml) + dialog.open_file(sample_yaml) # now dialog.config_data has the data stored + + # Save YAML + abs_new_yaml_path = sample_yaml.with_name(f"saved_{sample_yaml.name}") + dialog.save_to_file(abs_new_yaml_path) + + result = subprocess.run( + [ + "check-jsonschema", + "--verbose", + "--schemafile", + "https://raw.githubusercontent.com/geopython/pygeoapi/refs/heads/master/pygeoapi/resources/schemas/config/pygeoapi-config-0.x.yml", + abs_new_yaml_path, + ], + capture_output=True, + text=True, + ) + print(f"_______File saved as '{abs_new_yaml_path}'", flush=True) + assert ( + result.returncode == 0 + ), f"Validation failed:\n{result.stderr}, '{abs_new_yaml_path.name}', {result.stdout}" + + +@pytest.mark.parametrize("sample_yaml", sample_yaml_files) +def test_open_file_validate_ui_data(qtbot, sample_yaml: str): + """Run UI data validation from opened file (done in the plugin before saving to the new file).""" + + # Create the dialog widget and let qtbot manage it + dialog = PygeoapiConfigDialog() + qtbot.addWidget(dialog) + + # Load YAML + # abs_yaml_path = os.path.join(base_dir, sample_yaml) + dialog.open_file(sample_yaml) # now dialog.config_data has the data stored + + # Validate UI data (to follow exactly the user experience after clicking Save button) + data_valid, invalid_props = dialog._set_validate_ui_data() + + if not data_valid: + # fail the test if a legit file (e.g. "docker.config.yml") did not pass the validation + assert False, f"'{sample_yaml.name}' file UI data is not valid: {invalid_props}" + else: + print(f"_________Data validated for '{sample_yaml.name}'", flush=True) + assert True + return + + +@pytest.mark.parametrize("sample_yaml", sample_yaml_files) +def test_open_file_validate_ui_data_save_file(qtbot, sample_yaml: str): + """Run UI data validation from opened file (done in the plugin before saving to the new file).""" + + # Create the dialog widget and let qtbot manage it + dialog = PygeoapiConfigDialog() + qtbot.addWidget(dialog) + + # Load YAML + dialog.open_file( + sample_yaml + ) # now dialog.config_data has the data stored including .all_missing_props + yaml1_data = dialog.config_data.asdict_enum_safe( + deepcopy(dialog.yaml_original_data), True + ) + yaml1_missing_props = deepcopy(dialog.config_data.all_missing_props) + + # Save YAML - EVEN THOUGH some mandatory fields might be missing and recorded as empty strings/lists + abs_new_yaml_path = sample_yaml.with_name(f"saved_updated_{sample_yaml.name}") + dialog.save_to_file(abs_new_yaml_path) + + # open the new file + dialog.open_file(abs_new_yaml_path) # now dialog.config_data has the data stored + yaml2_data = dialog.config_data.asdict_enum_safe( + deepcopy(dialog.yaml_original_data), True + ) + + # get diff between old and new data + diff_data = diff_yaml_dict_remove_known_faulty_fields( + yaml1_data, yaml2_data, yaml1_missing_props + ) + + # save to file + diff_yaml_path = sample_yaml.with_name(f"saved_DIFF_{sample_yaml.name}") + with open(diff_yaml_path, "w", encoding="utf-8") as file: + yaml.dump( + diff_data, + file, + Dumper=dialog.dumper, + default_flow_style=False, + sort_keys=False, + allow_unicode=True, + indent=4, + ) + + if ( + len(diff_data["added"]) + len(diff_data["removed"]) + len(diff_data["changed"]) + == 0 + ): + assert True + return + + assert ( + False + ), f"YAML data changed after saving: '{sample_yaml.name}'. \nAdded: {len(diff_data['added'])} fields, changed: {len(diff_data['changed'])} fields, removed: {len(diff_data['removed'])} fields." diff --git a/tests/yaml_samples/dgterritorio_OGCAPI_@ 4d98dd8_docker.config.yml b/tests/yaml_samples/dgterritorio_OGCAPI_@ 4d98dd8_docker.config.yml new file mode 100644 index 0000000..ccf6e6f --- /dev/null +++ b/tests/yaml_samples/dgterritorio_OGCAPI_@ 4d98dd8_docker.config.yml @@ -0,0 +1,1173 @@ +server: + bind: + host: 0.0.0.0 + port: 80 + url: ${HOST_URL} + mimetype: application/json; charset=UTF-8 + encoding: utf-8 + gzip: false + languages: + - pt-PT + - en-US + cors: true + pretty_print: true + limits: + default_items: 100 + max_items: 5000 + on_exceed: throttle + map: + url: https://tile.openstreetmap.org/{z}/{x}/{y}.png + attribution: '© OpenStreetMap + contributors' + admin: false + templates: + path: /templates + static: /pygeoapi/pygeoapi/static +logging: + level: DEBUG + logfile: /tmp/pygeoapi.log +metadata: + identification: + title: + pt: Serviço OGC API da DGT + en: OGC API Service from DGT + description: + pt: Plataforma de publicação de dados abertos da DGT em OGC API + en: Plattform for publishing Open Data from DGT in OGC API + keywords: + pt: + - DGT + - dados abertos + - OGC API + - api + en: + - DGT + - OPEN DATA + - OGC API + - api + keywords_type: theme + terms_of_service: https://creativecommons.org/licenses/by/4.0/ + url: https://ogcapi.dgterritorio.gov.pt/ + license: + name: CC-BY 4.0 license + url: https://creativecommons.org/licenses/by/4.0/ + provider: + name: Direção-Geral do Território + url: https://www.dgterritorio.gov.pt/ + contact: + name: DGT + position: DGT + address: Rua Artilharia Um, 107 + city: Lisboa + stateorprovince: Administrative Area + postalcode: 1099-052 + country: Portugal + phone: (+351) 21 381 96 00 + fax: (+351) 21 381 96 00 + email: igeografica@dgterritorio.pt + url: https://www.dgterritorio.gov.pt/ + hours: Seg-Sext 08:00-17:00 + instructions: Durante as horas de serviço. + role: pointOfContact +resources: + ortos-rgb: + type: collection + title: OrtoSat 30 cm - Portugal Continental - 2023 (Cor Verdadeira) + description: 'A cobertura OrtoSat2023 é uma cobertura de ortoimagens obtidas a + partir de imagens de satélite de muito grande resolução espacial adquirida durante + o ano de 2023 sobre o território de Portugal continental. A cobertura é composta + por um mosaico equalizado e ininterrupto de imagens de satélite ortorretificadas + com uma resolução espacial de 30 cm. As imagens utilizadas na produção do mosaico + foram obtidas da constelação de satélites Pleiades-Neo (3 & 4) durante o período + de abril a outubro de 2023. Disponibilização em cor verdadeira: RGB: Vermelho, + Verde e Azul.' + keywords: + - Cor verdadeira + - Imagem de Satélite + - Deteção Remota + - Cartografia Oficial + - '2023' + - infoMapAccessService + - SMOS + - Ortoimagens + - OrtoSat2023 + - Ortoimagem + - Orto + - Ortofoto + - Ortofotos + - Ortofotomapa + - Ortofotomapas + - OrtoSat + - DGT + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/b2a1ca02-779b-4189-b895-85d10fff610f + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: null + end: null + providers: + - type: map + name: WMSFacade + data: https://ortos.dgterritorio.gov.pt/wms/ortosat2023 + options: + layer: ortoSat2023-CorVerdadeira + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + ortos-irg: + type: collection + title: OrtoSat 30 cm - Portugal Continental - 2023 (Falsa Cor) + description: 'A cobertura OrtoSat2023 é uma cobertura de ortoimagens obtidas a + partir de imagens de satélite de muito grande resolução espacial adquirida durante + o ano de 2023 sobre o território de Portugal continental. A cobertura é composta + por um mosaico equalizado e ininterrupto de imagens de satélite ortorretificadas + com uma resolução espacial de 30 cm. As imagens utilizadas na produção do mosaico + foram obtidas da constelação de satélites Pleiades-Neo (3 & 4) durante o período + de abril a outubro de 2023. Disponibilização em false cor: RGB: Infravermelho + Próximo, Vermelho e Verde.' + keywords: + - Falsa cor + - Imagem de Satélite + - Deteção Remota + - Cartografia Oficial + - '2023' + - infoMapAccessService + - SMOS + - Ortoimagens + - OrtoSat2023 + - Ortoimagem + - Orto + - Ortofoto + - Ortofotos + - Ortofotomapa + - Ortofotomapas + - OrtoSat + - DGT + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/b2a1ca02-779b-4189-b895-85d10fff610f + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: null + end: null + providers: + - type: map + name: WMSFacade + data: https://ortos.dgterritorio.gov.pt/wms/ortosat2023 + options: + layer: ortoSat2023-FalsaCor + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + cadastro: + description: Parcelas Cadastrais + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + keywords: + - prédio + - conservação cadastral + - INSPIRECORE + - DL_72_2023 + - Cadastro Oficial + - HVD + - cadastro + - cadastro predial + - carta cadastral + - prédios cadastrados + - cadastro predial atualizado + - Base de Dados Nacional de Cadastro Predial + - BDNCP + - Direção-geral do Território + - DGT + - Geoespaciais + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/73282c48-7f23-435c-ba41-592a96470080 + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_INSPIRE_DB} + host: ${REMOTE_INSPIRE_HOST} + port: ${REMOTE_INSPIRE_PORT} + user: ${REMOTE_INSPIRE_USER} + password: ${REMOTE_INSPIRE_PASSWORD} + search_path: + - inspire + geom_field: geometry + id_field: id + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: mv_cadastralparcel_4326 + type: feature + - data: http://tiles_inspire:3000/mv_cadastralparcel_4326/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: Cadastro Predial (Continente) + type: collection + cos2018v3: + description: Carta de Uso e Ocupação do Solo (COS) 2018 - Série 2 (nova) + extents: + spatial: + bbox: + - -9.68 + - 36.77 + - -6.17 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2018' + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: cos2018v3 + type: feature + - data: http://tiles:3000/cos2018v3/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: COS2018v3-S2 + type: collection + cos2023v1: + description: Carta de Uso e Ocupação do Solo (COS) 2023 - Série 2 (nova) + extents: + spatial: + bbox: + - -9.68 + - 36.77 + - -6.17 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + keywords: + - Uso do Solo + - Ocupação do Solo + - PortugaL + - COS + - '2023' + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e7d91649-71dd-4a3a-ae38-e680fc54be88 + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: geodb + host: postgis + user: ${POSTGRES_USER} + geom_field: geometry + id_field: objectid + name: PostgreSQL + search_path: + - geostore + - public + storage_crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + table: cos2023v1 + type: feature + - data: http://tiles:3000/cos2023v1/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: COS2023v1-S2 + type: collection + municipios: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. Municípios + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: '2000-10-30T18:24:39Z' + end: '2007-10-30T08:57:29Z' + keywords: + - Limites Administrativos + - Portugal Continental + - Municipios + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: dtmn + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_municipios + type: feature + - data: http://tiles_caop:3000/cont_municipios/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 Municípios + type: collection + freguesias: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. Freguesias + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Administrativos + - Portugal Continental + - Freguesias + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: dtmnfr + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_freguesias + type: feature + - data: http://tiles_caop:3000/cont_freguesias/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 Freguesias + type: collection + admin: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. Áreas + administrativas + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Admnistrativos + - Portugal Continental + - Áreas administrativas + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: id + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_areas_administrativas + type: feature + - data: http://tiles_caop:3000/cont_areas_administrativas/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 Áreas administrativas + type: collection + nuts1: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. NUTSI + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Administrativos + - Portugal Continental + - NUTSI + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: codigo + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_nuts1 + type: feature + - data: http://tiles_caop:3000/cont_nuts1/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 NUTSI + type: collection + nuts2: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. NUTSII + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Administrativos + - Portugal Continental + - NUTSII + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: codigo + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_nuts2 + type: feature + - data: http://tiles_caop:3000/cont_nuts2/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 NUTSII + type: collection + nuts3: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. NUTSIII + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Administrativos + - Portugal Continental + - NUTSIII + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: codigo + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_nuts3 + type: feature + - data: http://tiles_caop:3000/nuts3/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 NUTSIII + type: collection + trocos: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. Troços + administrativos + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Admnistrativos + - Portugal Continental + - Troços administrativos + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: identificador + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_trocos + type: feature + - data: http://tiles_caop:3000/trocos/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 Troços + type: collection + distritos: + description: Carta Administrativa Oficial de Portugal, Continente, 2024.1. Distritos + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: "2000-10-30T18:24:39Z" + end: "2007-10-30T08:57:29Z" + keywords: + - Limites Admnistrativos + - Portugal Continental + - Distritos + - CAOP + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/198497815bf647ecaa990c34c42e932e + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - crs: + - http://www.opengis.net/def/crs/OGC/1.3/CRS84 + - http://www.opengis.net/def/crs/EPSG/0/4326 + - http://www.opengis.net/def/crs/EPSG/0/3857 + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/3763 + data: + dbname: ${REMOTE_CAOP_DB} + host: ${REMOTE_CAOP_HOST} + port: ${REMOTE_CAOP_PORT} + user: ${REMOTE_CAOP_USER} + password: ${REMOTE_CAOP_PASSWORD} + search_path: + - "CAOP2024.1" + geom_field: geometria + id_field: dt + name: PostgreSQL + storage_crs: http://www.opengis.net/def/crs/EPSG/0/3763 + table: cont_distritos + type: feature + - data: http://tiles_caop:3000/distritos/{z}/{x}/{y}?f=mvt + format: + mimetype: application/vnd.mapbox-vector-tile + name: pbf + name: MVT-proxy + options: + schemes: + - WebMercatorQuad + zoom: + max: 15 + min: 0 + type: tile + title: CAOP2024.1 Distritos + type: collection + snig: + description: OGC API que permite a descoberta e acesso a metadados registados no Sistema Nacional de Informação Geográfica - SNIG. + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: null + end: null + keywords: + - Metadados + - Catálogo + - SNIG + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/home + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - type: record + name: CSWFacade + data: https://snig.dgterritorio.gov.pt/rndg/srv/eng/csw?request=GetCapabilities&service=CSW + id_field: identifier + time_field: datetime + title_field: title + title: SNIG + type: collection + point: + description: OGC API que permite a descoberta e acesso a metadados catalogados para o Portal de Informação Territorial - PoInT. + extents: + spatial: + bbox: + - -9.51 + - 36.96 + - -6.19 + - 42.15 + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: null + end: null + keywords: + - Metadados + - Catálogo + - PoInT + links: + - href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/home + hreflang: en-US + rel: canonical + title: data + type: text/csv + providers: + - type: record + name: CSWFacade + data: https://snig.dgterritorio.gov.pt/rndg/srv/eng/csw-point?request=GetCapabilities&service=CSW + id_field: identifier + time_field: datetime + title_field: title + title: PoInT + type: collection + cosc2018: + type: collection + title: Carta de Ocupação do Solo Conjuntural - 2018 + description: 'A COSc foi criada com o objetivo de fornecer informação complementar à Carta de Uso e Ocupação do Solo (COS), e retrata a ocupação do solo num ano específico e não o uso do solo.' + keywords: + - Sentinel + - DGT + - Imagem de Satélite + - Deteção Remota + - Copernicus + - Sentinel-2 + - '2018' + - Carta de ocupação do solo + - Cartografia temática + - COSsim + - COSsim2018 + - COSc + - COSc2018 + - SMOS + - infoMapAccessService + - infoFeatureAccessService + - HVD + - Observação da Terra e do ambiente + - point + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/262dabc4-0217-44c1-8983-21f69d8670c7 + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: "2018-01-01T00:00:00Z" + end: "2018-12-31T23:59:00Z" + providers: + - type: map + name: WMSFacade + data: https://geo2.dgterritorio.gov.pt/wms/COSc2018 + options: + layer: COSc + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + cosc2020: + type: collection + title: Carta de Ocupação do Solo Conjuntural - 2020 + description: 'A COSc foi criada com o objetivo de fornecer informação complementar à Carta de Uso e Ocupação do Solo (COS), e retrata a ocupação do solo num ano específico e não o uso do solo.' + keywords: + - Sentinel + - DGT + - Imagem de Satélite + - Deteção Remota + - Copernicus + - Sentinel-2 + - '2020' + - Carta de ocupação do solo + - Cartografia temática + - COSsim + - COSsim2020 + - COSc + - COSc2020 + - SMOS + - infoMapAccessService + - infoFeatureAccessService + - HVD + - Observação da Terra e do ambiente + - point + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/17b3bad7-ba7e-4ef5-8067-b6ac67473359 + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: "2020-01-01T00:00:00Z" + end: "2020-12-31T23:59:00Z" + providers: + - type: map + name: WMSFacade + data: https://geo2.dgterritorio.gov.pt/wms/COSc2020 + options: + layer: COSc + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + cosc2021: + type: collection + title: Carta de Ocupação do Solo Conjuntural - 2021 + description: 'A COSc foi criada com o objetivo de fornecer informação complementar à Carta de Uso e Ocupação do Solo (COS), e retrata a ocupação do solo num ano específico e não o uso do solo.' + keywords: + - Sentinel + - DGT + - Imagem de Satélite + - Deteção Remota + - Copernicus + - Sentinel-2 + - '2021' + - Carta de ocupação do solo + - Cartografia temática + - COSsim + - COSsim2021 + - COSc + - COSc2021 + - SMOS + - infoMapAccessService + - infoFeatureAccessService + - HVD + - Observação da Terra e do ambiente + - point + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/c9b955b4-eeb5-4686-ad90-3c6d5215961a + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: "2021-01-01T00:00:00Z" + end: "2021-12-31T23:59:00Z" + providers: + - type: map + name: WMSFacade + data: https://geo2.dgterritorio.gov.pt/wms/COSc2021 + options: + layer: COSc + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + cosc2022: + type: collection + title: Carta de Ocupação do Solo Conjuntural - 2022 + description: 'A COSc foi criada com o objetivo de fornecer informação complementar à Carta de Uso e Ocupação do Solo (COS), e retrata a ocupação do solo num ano específico e não o uso do solo.' + keywords: + - Sentinel + - DGT + - Imagem de Satélite + - Deteção Remota + - Copernicus + - Sentinel-2 + - '2022' + - Carta de ocupação do solo + - Cartografia temática + - COSsim + - COSsim2022 + - COSc + - COSc2022 + - SMOS + - infoMapAccessService + - infoFeatureAccessService + - HVD + - Observação da Terra e do ambiente + - point + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/fefc5557-2cc6-4efd-aab8-761f45b46f3c + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: "2022-01-01T00:00:00Z" + end: "2022-12-31T23:59:00Z" + providers: + - type: map + name: WMSFacade + data: https://geo2.dgterritorio.gov.pt/wms/COSc2022 + options: + layer: COSc + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png + cosc2023: + type: collection + title: Carta de Ocupação do Solo Conjuntural - 2023 + description: 'A COSc foi criada com o objetivo de fornecer informação complementar à Carta de Uso e Ocupação do Solo (COS), e retrata a ocupação do solo num ano específico e não o uso do solo.' + keywords: + - Sentinel + - DGT + - Imagem de Satélite + - Deteção Remota + - Copernicus + - Sentinel-2 + - '2023' + - Carta de ocupação do solo + - Cartografia temática + - COSsim + - COSsim2023 + - COSc + - COSc2023 + - SMOS + - infoMapAccessService + - infoFeatureAccessService + - HVD + - Observação da Terra e do ambiente + - point + links: + - type: text/html + rel: canonical + title: information + href: https://snig.dgterritorio.gov.pt/rndg/srv/por/catalog.search#/metadata/e9d25fc4-5a25-4c5e-9bce-d470f745d89e + hreflang: en-US + extents: + spatial: + bbox: + - -10.1934 + - 36.7643 + - -5.70954 + - 42.2796 + crs: http://www.opengis.net/def/crs/EPSG/0/4326 + temporal: + begin: "2023-01-01T00:00:00Z" + end: "2023-12-31T23:59:00Z" + providers: + - type: map + name: WMSFacade + data: https://geo2.dgterritorio.gov.pt/wms/COSc2023 + options: + layer: COSc2023 + style: default + version: 1.3.0 + format: + name: png + mimetype: image/png \ No newline at end of file diff --git a/tests/yaml_samples/geopython_pygeoapi_@5ed31b4_default.config.yml b/tests/yaml_samples/geopython_pygeoapi_@5ed31b4_default.config.yml new file mode 100644 index 0000000..5d962c6 --- /dev/null +++ b/tests/yaml_samples/geopython_pygeoapi_@5ed31b4_default.config.yml @@ -0,0 +1,516 @@ +# ================================================================= +# +# Authors: Just van den Broecke +# Tom Kralidis +# Francesco Bartoli +# +# Copyright (c) 2019 Just van den Broecke +# Copyright (c) 2020 Tom Kralidis +# Copyright (c) 2025 Francesco Bartoli +# +# 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. +# +# ================================================================= + + +# Default config for base Docker Image, override via DockerVolume +# mapping with your own config. +server: + bind: + host: 0.0.0.0 + port: 80 + url: ${PYGEOAPI_SERVER_URL:-http://localhost:5000} + mimetype: application/json; charset=UTF-8 + encoding: utf-8 + gzip: false + language: en-US + cors: true + pretty_print: true + admin: ${PYGEOAPI_SERVER_ADMIN:-false} + limits: + default_items: 10 + max_items: 50 + # templates: /path/to/templates + map: + url: https://tile.openstreetmap.org/{z}/{x}/{y}.png + attribution: '© OpenStreetMap contributors' + ogc_schemas_location: /schemas.opengis.net + +logging: + level: ERROR + #logfile: /tmp/pygeoapi.log + +metadata: + identification: + title: pygeoapi Demo instance - running latest GitHub version + description: pygeoapi provides an API to geospatial data + keywords: + - geospatial + - data + - api + keywords_type: theme + terms_of_service: https://creativecommons.org/licenses/by/4.0/ + url: https://github.com/geopython/pygeoapi + license: + name: CC-BY 4.0 license + url: https://creativecommons.org/licenses/by/4.0/ + provider: + name: pygeoapi Development Team + url: https://pygeoapi.io + contact: + name: Kralidis, Tom + position: Lead Dev + address: Mailing Address + city: City + stateorprovince: Administrative Area + postalcode: Zip or Postal Code + country: Canada + phone: +xx-xxx-xxx-xxxx + fax: +xx-xxx-xxx-xxxx + email: you@example.org + url: Contact URL + hours: Hours of Service + instructions: During hours of service. Off on weekends. + role: pointOfContact + +resources: + obs: + type: collection + title: Observations + description: My cool observations + keywords: + - observations + - monitoring + linked-data: + context: + - datetime: https://schema.org/DateTime + - vocab: https://example.com/vocab# + stn_id: "vocab:stn_id" + value: "vocab:value" + links: + - type: text/csv + rel: canonical + title: data + href: https://github.com/mapserver/mapserver/blob/branch-7-0/msautotest/wxs/data/obs.csv + hreflang: en-US + - type: text/csv + rel: alternate + title: data + href: https://raw.githubusercontent.com/mapserver/mapserver/branch-7-0/msautotest/wxs/data/obs.csv + hreflang: en-US + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: feature + name: CSV + data: tests/data/obs.csv + id_field: id + geometry: + x_field: long + y_field: lat + + lakes: + type: collection + title: Large Lakes + description: lakes of the world, public domain + keywords: + - lakes + links: + - type: text/html + rel: canonical + title: information + href: http://www.naturalearthdata.com/ + hreflang: en-US + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2011-11-11 + end: null # or empty (either means open ended) + providers: + - type: feature + name: GeoJSON + data: tests/data/ne_110m_lakes.geojson + id_field: id + + countries: + type: collection + title: Countries in the world (SpatialLite Provider) + description: Countries of the world (SpatialLite) + keywords: + - countries + - natural eart + links: + - type: text/html + rel: canonical + title: information + href: http://www.naturalearthdata.com/ + hreflang: en-US + extents: + spatial: + bbox: [-180, -90, 180, 90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: + end: null # or empty + providers: + - type: feature + name: SQLiteGPKG + data: tests/data/ne_110m_admin_0_countries.sqlite + id_field: ogc_fid + table: ne_110m_admin_0_countries + + dutch_georef_stations: + type: collection + title: Dutch Georef Stations via OGR WFS + description: Locations of RD/GNSS-reference stations from Dutch Kadaster PDOK a.k.a RDInfo. Uses MapServer WFS v2 backend via OGRProvider. + keywords: + - Netherlands + - GNSS + - Surveying + - Holland + - RD + links: + - type: text/html + rel: canonical + title: information + href: http://www.nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/3ebe56dc-5f09-4fb3-b224-55c2db4ca2fd?tab=general + hreflang: nl-NL + extents: + spatial: + bbox: [3.37,50.75,7.21,53.47] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: + end: null # or empty + providers: + - type: feature + name: OGR + data: + source_type: WFS + source: WFS:https://service.pdok.nl/kadaster/rdinfo/wfs/v1_0? +# source_srs: EPSG:28992 +# target_srs: EPSG:4326 + source_capabilities: + paging: True + + source_options: + # OGR_WFS_VERSION: 1.1.0 + OGR_WFS_LOAD_MULTIPLE_LAYER_DEFN: NO + + gdal_ogr_options: + EMPTY_AS_NULL: NO + GDAL_CACHEMAX: 64 + # GDAL_HTTP_PROXY: (optional proxy) + # GDAL_PROXY_AUTH: (optional auth for remote WFS) + CPL_DEBUG: NO + + crs: + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/28992 + storage_crs: http://www.opengis.net/def/crs/EPSG/0/28992 + id_field: gml_id + layer: rdinfo:stations + + utah_city_locations: + type: collection + title: Cities in Utah via OGR WFS + description: Data from the state of Utah. Standard demo dataset from the deegree WFS server that is used as backend WFS. + keywords: + - USA + - deegree + - Utah + - Demo data + links: + - type: text/html + rel: canonical + title: information + href: http://download.deegree.org/documentation/3.3.20/html/lightly.html#example-workspace-2-utah-webmapping-services + hreflang: en-US + extents: + spatial: + bbox: [-112.108489, 39.854053, -111.028628, 40.460098] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: + end: null # or empty + providers: + - type: feature + name: OGR + data: + source_type: WFS + source: WFS:http://demo.deegree.org/utah-workspace/services/wfs?TYPENAME=app:SGID93_LOCATION_UDOTMap_CityLocations +# source_srs: EPSG:26912 +# target_srs: EPSG:4326 + source_capabilities: + paging: True + + source_options: + # OGR_WFS_VERSION: 2.0.0 + OGR_WFS_LOAD_MULTIPLE_LAYER_DEFN: NO + + gdal_ogr_options: + EMPTY_AS_NULL: NO + GDAL_CACHEMAX: 64 + # GDAL_HTTP_PROXY: (optional proxy) + # GDAL_PROXY_AUTH: (optional auth for remote WFS) + CPL_DEBUG: NO + + crs: + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/26912 + storage_crs: http://www.opengis.net/def/crs/EPSG/0/26912 + id_field: NAME + layer: app:SGID93_LOCATION_UDOTMap_CityLocations + + unesco_pois_italy: + type: collection + title: Unesco POIs in Italy via OGR WFS + description: Unesco Points of Interest in Italy. Using GeoSolutions GeoServer WFS demo-server as backend WFS. + keywords: + - Italy + - Unesco + - Demo + links: + - type: text/html + rel: canonical + title: information + href: https://mapstore2.geo-solutions.it/mapstore/#/dashboard/5593 + hreflang: en-US + extents: + spatial: + bbox: [5.0,36.0,20.0,46.0] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: + end: null # or empty + providers: + - type: feature + name: OGR + data: + source_type: WFS + source: WFS:https://gs-stable.geosolutionsgroup.com/geoserver/wfs +# source_srs: EPSG:32632 +# target_srs: EPSG:4326 + source_capabilities: + paging: True + + source_options: + # OGR_WFS_VERSION: 1.1.0 + OGR_WFS_LOAD_MULTIPLE_LAYER_DEFN: NO + + gdal_ogr_options: + EMPTY_AS_NULL: NO + GDAL_CACHEMAX: 64 + # GDAL_HTTP_PROXY: (optional proxy) + # GDAL_PROXY_AUTH: (optional auth for remote WFS) + CPL_DEBUG: NO + + crs: + - http://www.opengis.net/def/crs/EPSG/0/4258 + - http://www.opengis.net/def/crs/EPSG/0/32632 + storage_crs: http://www.opengis.net/def/crs/EPSG/0/32632 + id_field: gml_id + layer: unesco:Unesco_point + + ogr_gpkg_poi: + type: collection + title: Portuguese Points of Interest via OGR GPKG + description: Portuguese Points of Interest obtained from OpenStreetMap. Dataset includes Madeira and Azores islands. Uses GeoPackage backend via OGR provider. + keywords: + - Portugal + - POI + - Point of Interest + - Madeira + - Azores + - OSM + - Open Street Map + - NaturaGIS + links: + - type: text/html + rel: canonical + title: information + href: https://wiki.openstreetmap.org/wiki/Points_of_interest/ + hreflang: en-US + extents: + spatial: + bbox: [-31.2687, 32.5898, -6.18992, 42.152] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: + end: null # or empty + providers: + - type: feature + name: OGR + data: + source_type: GPKG + source: tests/data/poi_portugal.gpkg +# source_srs: EPSG:4326 +# target_srs: EPSG:4326 + source_capabilities: + paging: True + + gdal_ogr_options: + EMPTY_AS_NULL: NO + GDAL_CACHEMAX: 64 + # GDAL_HTTP_PROXY: (optional proxy) + # GDAL_PROXY_AUTH: (optional auth for remote WFS) + CPL_DEBUG: NO + + id_field: osm_id + layer: poi_portugal + + ogr_geojson_lakes: + type: collection + title: Large Lakes OGR GeoJSON Driver + description: lakes of the world, public domain + keywords: + - lakes + links: + - type: text/html + rel: canonical + title: information + href: http://www.naturalearthdata.com/ + hreflang: en-US + extents: + spatial: + bbox: [-180, -90, 180, 90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2011-11-11 + end: null # or empty + providers: + - type: feature + name: OGR + data: + source_type: GeoJSON + source: tests/data/ne_110m_lakes.geojson +# source_srs: EPSG:4326 +# target_srs: EPSG:4326 + source_capabilities: + paging: True + + gdal_ogr_options: + EMPTY_AS_NULL: NO + GDAL_CACHEMAX: 64 + # GDAL_HTTP_PROXY: (optional proxy) + # GDAL_PROXY_AUTH: (optional auth for remote WFS) + CPL_DEBUG: NO + + id_field: id + layer: ne_110m_lakes + + ogr_addresses_sqlite: + type: collection + title: Dutch addresses (subset Otterlo). OGR SQLite Driver + description: Dutch addresses subset. + keywords: + - Netherlands + - addresses + - INSPIRE + links: + - type: text/html + rel: canonical + title: information + href: http://www.nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/4074b3c3-ca85-45ad-bc0d-b5fca8540z0b + hreflang: nl-NL + extents: + spatial: + bbox: [3.37,50.75,7.21,53.47] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: + end: null # or empty + providers: + - type: feature + name: OGR + data: + source_type: SQLite + # source: tests/data/ne_110m_admin_0_countries.sqlite + source: tests/data/dutch_addresses_4326.sqlite +# source_srs: EPSG:4326 +# target_srs: EPSG:4326 + source_capabilities: + paging: True + + gdal_ogr_options: + EMPTY_AS_NULL: NO + GDAL_CACHEMAX: 64 + # GDAL_HTTP_PROXY: (optional proxy) + # GDAL_PROXY_AUTH: (optional auth for remote WFS) + CPL_DEBUG: NO + + id_field: id + layer: ogrgeojson + + ogr_addresses_gpkg: + type: collection + title: Dutch addresses (subset Otterlo). OGR GeoPackage Driver + description: Dutch addresses subset. + keywords: + - Netherlands + - addresses + - INSPIRE + links: + - type: text/html + rel: canonical + title: information + href: http://www.nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/metadata/4074b3c3-ca85-45ad-bc0d-b5fca8540z0b + hreflang: nl-NL + extents: + spatial: + bbox: [3.37,50.75,7.21,53.47] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: + end: null # or empty + providers: + - type: feature + name: OGR + data: + source_type: GPKG + source: tests/data/dutch_addresses_4326.gpkg +# source_srs: EPSG:4326 +# target_srs: EPSG:4326 + source_capabilities: + paging: True + + gdal_ogr_options: + EMPTY_AS_NULL: NO + GDAL_CACHEMAX: 64 + # GDAL_HTTP_PROXY: (optional proxy) + # GDAL_PROXY_AUTH: (optional auth for remote WFS) + CPL_DEBUG: NO + + id_field: id + layer: OGRGeoJSON + + hello-world: + type: process + processor: + name: HelloWorld diff --git a/tests/yaml_samples/geopython_pygeoapi_@5ed31b4_pygeoapi-config.yml b/tests/yaml_samples/geopython_pygeoapi_@5ed31b4_pygeoapi-config.yml new file mode 100644 index 0000000..b260c76 --- /dev/null +++ b/tests/yaml_samples/geopython_pygeoapi_@5ed31b4_pygeoapi-config.yml @@ -0,0 +1,307 @@ +# ================================================================= +# +# Authors: Tom Kralidis +# +# Copyright (c) 2025 Tom Kralidis +# +# 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. +# +# ================================================================= + +server: + bind: + host: 0.0.0.0 + port: 5000 + url: http://localhost:5000 + mimetype: application/json; charset=UTF-8 + encoding: utf-8 + gzip: false + languages: + # First language is the default language + - en-US + - fr-CA + # cors: true + pretty_print: true + limits: + default_items: 20 + max_items: 50 + # templates: + # path: /path/to/Jinja2/templates + # static: /path/to/static/folder # css/js/img + map: + url: https://tile.openstreetmap.org/{z}/{x}/{y}.png + attribution: '© OpenStreetMap contributors' +# manager: +# name: TinyDB +# connection: /tmp/pygeoapi-process-manager.db +# output_dir: /tmp/ + # ogc_schemas_location: /opt/schemas.opengis.net + admin: false # enable admin api + +logging: + level: ERROR + #logfile: /tmp/pygeoapi.log + +metadata: + identification: + title: + en: pygeoapi default instance + fr: instance par défaut de pygeoapi + description: + en: pygeoapi provides an API to geospatial data + fr: pygeoapi fournit une API aux données géospatiales + keywords: + en: + - geospatial + - data + - api + fr: + - géospatiale + - données + - api + keywords_type: theme + terms_of_service: https://creativecommons.org/licenses/by/4.0/ + url: https://example.org + license: + name: CC-BY 4.0 license + url: https://creativecommons.org/licenses/by/4.0/ + provider: + name: Organization Name + url: https://pygeoapi.io + contact: + name: Lastname, Firstname + position: Position Title + address: Mailing Address + city: City + stateorprovince: Administrative Area + postalcode: Zip or Postal Code + country: Country + phone: +xx-xxx-xxx-xxxx + fax: +xx-xxx-xxx-xxxx + email: you@example.org + url: Contact URL + hours: Mo-Fr 08:00-17:00 + instructions: During hours of service. Off on weekends. + role: pointOfContact + +resources: + obs: + type: collection + title: Observations + description: My cool observations + keywords: + - observations + - monitoring + linked-data: + context: + - datetime: https://schema.org/DateTime + - vocab: https://example.com/vocab# + stn_id: "vocab:stn_id" + value: "vocab:value" + links: + - type: text/csv + rel: canonical + title: data + href: https://github.com/mapserver/mapserver/blob/branch-7-0/msautotest/wxs/data/obs.csv + hreflang: en-US + - type: text/csv + rel: alternate + title: data + href: https://raw.githubusercontent.com/mapserver/mapserver/branch-7-0/msautotest/wxs/data/obs.csv + hreflang: en-US + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2000-10-30T18:24:39Z + end: 2007-10-30T08:57:29Z + providers: + - type: feature + name: CSV + data: tests/data/obs.csv + id_field: id + geometry: + x_field: long + y_field: lat + + lakes: + type: collection + title: + en: Large Lakes + fr: Grands Lacs + description: + en: lakes of the world, public domain + fr: lacs du monde, domaine public + keywords: + en: + - lakes + - water bodies + fr: + - lacs + - plans d'eau + links: + - type: text/html + rel: canonical + title: information + href: http://www.naturalearthdata.com/ + hreflang: en-US + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2011-11-11T11:11:11Z + end: null # or empty (either means open ended) + providers: + - type: feature + name: GeoJSON + data: tests/data/ne_110m_lakes.geojson + id_field: id + title_field: name + + mapserver_world_map: + type: collection + title: MapServer demo WMS world map + description: MapServer demo WMS world map + keywords: + - MapServer + - world map + links: + - type: text/html + rel: canonical + title: information + href: https://demo.mapserver.org + hreflang: en-US + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + providers: + - type: map + name: WMSFacade + data: https://demo.mapserver.org/cgi-bin/msautotest + options: + layer: world_latlong + style: default + format: + name: png + mimetype: image/png + + gdps-temperature: + type: collection + title: Global Deterministic Prediction System sample + description: Global Deterministic Prediction System sample + keywords: + - gdps + - global + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + links: + - type: text/html + rel: canonical + title: information + href: https://eccc-msc.github.io/open-data/msc-data/nwp_gdps/readme_gdps_en + hreflang: en-CA + providers: + - type: coverage + name: rasterio + data: tests/data/CMC_glb_TMP_TGL_2_latlon.15x.15_2020081000_P000.grib2 + options: + DATA_ENCODING: COMPLEX_PACKING + format: + name: GRIB + mimetype: application/x-grib2 + + test-data: + type: stac-collection + title: pygeoapi test data + description: pygeoapi test data + keywords: + - poi + - portugal + links: + - type: text/html + rel: canonical + title: information + href: https://github.com/geopython/pygeoapi/tree/master/tests/data + hreflang: en-US + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + providers: + - type: stac + name: FileSystem + data: tests/data + file_types: + - .gpkg + - .sqlite + - .csv + - .grib2 + - .tif + - .shp + + canada-metadata: + type: collection + title: + en: Open Canada sample data + fr: Exemple de donn\u00e9es Canada Ouvert + description: + en: Sample metadata records from open.canada.ca + fr: Exemples d'enregistrements de m\u00e9tadonn\u00e9es sur ouvert.canada.ca + keywords: + en: + - canada + - open data + fr: + - canada + - donn\u00e9es ouvertes + links: + - type: text/html + rel: canonical + title: information + href: https://open.canada.ca/en/open-data + hreflang: en-CA + - type: text/html + rel: alternate + title: informations + href: https://ouvert.canada.ca/fr/donnees-ouvertes + hreflang: fr-CA + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + providers: + - type: record + name: TinyDBCatalogue + data: tests/data/open.canada.ca/sample-records.tinydb + id_field: externalId + time_field: created + title_field: title + + hello-world: + type: process + processor: + name: HelloWorld diff --git a/ui_widgets/DataSetterFromUi.py b/ui_widgets/DataSetterFromUi.py index 5bffe84..a111b86 100644 --- a/ui_widgets/DataSetterFromUi.py +++ b/ui_widgets/DataSetterFromUi.py @@ -21,7 +21,9 @@ MetadataKeywordTypeEnum, MetadataRoleEnum, ServerOnExceedEnum, + ServerOptionalBoolsEnum, ServerTemplatesConfig, + ServerLimitsConfig, ) from ..models.top_level.providers import ProviderTemplate from ..models.top_level.providers.records import ( @@ -57,19 +59,38 @@ def set_data_from_ui(self): # bind config_data.server.bind.host = dialog.lineEditHost.text() - config_data.server.bind.port = dialog.spinBoxPort.value() + try: + config_data.server.bind.port = int(dialog.lineEditPort.text()) + except ValueError: + config_data.server.bind.port = dialog.lineEditPort.text() # gzip - config_data.server.gzip = dialog.checkBoxGzip.isChecked() + config_data.server.gzip = get_enum_value_from_string( + ServerOptionalBoolsEnum, dialog.comboBoxGzip.currentText() + ) + if config_data.server.gzip == ServerOptionalBoolsEnum.NONE: + config_data.server.gzip = None # pretty print - config_data.server.pretty_print = dialog.checkBoxPretty.isChecked() + config_data.server.pretty_print = get_enum_value_from_string( + ServerOptionalBoolsEnum, dialog.comboBoxPretty.currentText() + ) + if config_data.server.pretty_print == ServerOptionalBoolsEnum.NONE: + config_data.server.pretty_print = None # admin - config_data.server.admin = dialog.checkBoxAdmin.isChecked() + config_data.server.admin = get_enum_value_from_string( + ServerOptionalBoolsEnum, dialog.comboBoxAdmin.currentText() + ) + if config_data.server.admin == ServerOptionalBoolsEnum.NONE: + config_data.server.admin = None # cors - config_data.server.cors = dialog.checkBoxCors.isChecked() + config_data.server.cors = get_enum_value_from_string( + ServerOptionalBoolsEnum, dialog.comboBoxCors.currentText() + ) + if config_data.server.cors == ServerOptionalBoolsEnum.NONE: + config_data.server.cors = None # templates if is_valid_string(dialog.lineEditTemplatesPath.text()) or is_valid_string( @@ -90,20 +111,38 @@ def set_data_from_ui(self): # url config_data.server.url = dialog.lineEditUrl.text() - # language + # language single + config_data.server.language = get_enum_value_from_string( + Languages, dialog.comboBoxLangSingle.currentText() + ) + if config_data.server.language == Languages.NONE: + config_data.server.language = None + + # languages config_data.server.languages = [] - for i in range(dialog.listWidgetLang.count()): - item = dialog.listWidgetLang.item(i) - if item.isSelected(): - config_data.server.languages.append(item.text()) + languages_lists = unpack_listwidget_values_to_sublists( + dialog.listWidgetServerLangs + ) + for lang in languages_lists: + if is_valid_string(lang[0]): + config_data.server.languages.append(lang[0]) + if len(config_data.server.languages) == 0: + config_data.server.languages = None # limits - config_data.server.limits.default_items = dialog.spinBoxDefault.value() - config_data.server.limits.max_items = dialog.spinBoxMax.value() + default_items = dialog.spinBoxDefault.value() + max_items = dialog.spinBoxMax.value() - config_data.server.limits.on_exceed = get_enum_value_from_string( + on_exceed = get_enum_value_from_string( ServerOnExceedEnum, dialog.comboBoxExceed.currentText() ) + if on_exceed == ServerOnExceedEnum.NONE: + on_exceed = None + if default_items or max_items or on_exceed: + config_data.server.limits = ServerLimitsConfig() + config_data.server.limits.default_items = default_items + config_data.server.limits.max_items = max_items + config_data.server.limits.on_exceed = on_exceed # logging config_data.logging.level = get_enum_value_from_string( @@ -140,52 +179,75 @@ def set_data_from_ui(self): ) ) - config_data.metadata.identification.keywords_type = get_enum_value_from_string( + keywords_type = get_enum_value_from_string( MetadataKeywordTypeEnum, dialog.comboBoxMetadataIdKeywordsType.currentText() ) + config_data.metadata.identification.keywords_type = ( + keywords_type if keywords_type != MetadataKeywordTypeEnum.NONE else None + ) + config_data.metadata.identification.terms_of_service = ( - dialog.lineEditMetadataIdTerms.text() + self.valid_string_or_none(dialog.lineEditMetadataIdTerms) ) config_data.metadata.identification.url = dialog.lineEditMetadataIdUrl.text() # metadata license config_data.metadata.license.name = dialog.lineEditMetadataLicenseName.text() - config_data.metadata.license.url = dialog.lineEditMetadataLicenseUrl.text() + config_data.metadata.license.url = self.valid_string_or_none( + dialog.lineEditMetadataLicenseUrl + ) # metadata provider config_data.metadata.provider.name = dialog.lineEditMetadataProviderName.text() - config_data.metadata.provider.url = dialog.lineEditMetadataProviderUrl.text() + config_data.metadata.provider.url = self.valid_string_or_none( + dialog.lineEditMetadataProviderUrl + ) # metadata contact config_data.metadata.contact.name = dialog.lineEditMetadataContactName.text() - config_data.metadata.contact.position = ( - dialog.lineEditMetadataContactPosition.text() + config_data.metadata.contact.position = self.valid_string_or_none( + dialog.lineEditMetadataContactPosition ) - config_data.metadata.contact.address = ( - dialog.lineEditMetadataContactAddress.text() + config_data.metadata.contact.address = self.valid_string_or_none( + dialog.lineEditMetadataContactAddress ) config_data.metadata.contact.city = dialog.lineEditMetadataContactCity.text() - config_data.metadata.contact.stateorprovince = ( - dialog.lineEditMetadataContactState.text() + config_data.metadata.contact.stateorprovince = self.valid_string_or_none( + dialog.lineEditMetadataContactState + ) + config_data.metadata.contact.postalcode = self.valid_string_or_none( + dialog.lineEditMetadataContactPostal + ) + config_data.metadata.contact.country = self.valid_string_or_none( + dialog.lineEditMetadataContactCountry ) - config_data.metadata.contact.postalcode = ( - dialog.lineEditMetadataContactPostal.text() + config_data.metadata.contact.phone = self.valid_string_or_none( + dialog.lineEditMetadataContactPhone ) - config_data.metadata.contact.country = ( - dialog.lineEditMetadataContactCountry.text() + config_data.metadata.contact.fax = self.valid_string_or_none( + dialog.lineEditMetadataContactFax ) - config_data.metadata.contact.phone = dialog.lineEditMetadataContactPhone.text() - config_data.metadata.contact.fax = dialog.lineEditMetadataContactFax.text() - config_data.metadata.contact.email = dialog.lineEditMetadataContactEmail.text() - config_data.metadata.contact.url = dialog.lineEditMetadataContactUrl.text() - config_data.metadata.contact.hours = dialog.lineEditMetadataContactHours.text() - config_data.metadata.contact.instructions = ( - dialog.lineEditMetadataContactInstructions.text() + config_data.metadata.contact.email = self.valid_string_or_none( + dialog.lineEditMetadataContactEmail ) - config_data.metadata.contact.role = get_enum_value_from_string( + config_data.metadata.contact.url = self.valid_string_or_none( + dialog.lineEditMetadataContactUrl + ) + config_data.metadata.contact.hours = self.valid_string_or_none( + dialog.lineEditMetadataContactHours + ) + config_data.metadata.contact.instructions = self.valid_string_or_none( + dialog.lineEditMetadataContactInstructions + ) + role = get_enum_value_from_string( MetadataRoleEnum, dialog.comboBoxMetadataContactRole.currentText(), ) + config_data.metadata.contact.role = role if is_valid_string(role) else None + + def valid_string_or_none(self, line_edit): + text_value = line_edit.text() + return text_value if is_valid_string(text_value) else None def set_resource_data_from_ui(self): """Collect data from Resource UI and add to ConfigData.""" @@ -224,7 +286,7 @@ def set_resource_data_from_ui(self): dialog.lineEditResExtentsSpatialYMax, ] ] - # this loop is to not add empty decimals unnecessarily + # this loop is to not add empty decimals to int unnecessarily config_data.resources[res_name].extents.spatial.bbox = InlineList( bbox_from_list(raw_bbox_list) ) @@ -232,6 +294,8 @@ def set_resource_data_from_ui(self): # spatial crs config_data.resources[res_name].extents.spatial.crs = ( self.get_extents_crs_from_ui(dialog) + if is_valid_string(dialog.lineEditResExtentsSpatialCrs.text()) + else None ) # temporal: only initialize if any of the values are present, otherwise leave as default None @@ -254,11 +318,12 @@ def set_resource_data_from_ui(self): config_data.resources[res_name].extents.temporal.begin = temporal_begin config_data.resources[res_name].extents.temporal.end = temporal_end + trs = get_enum_value_from_string( + TrsAuthorities, + get_widget_text_value(dialog.comboBoxResExtentsTemporalTrs), + ) config_data.resources[res_name].extents.temporal.trs = ( - get_enum_value_from_string( - TrsAuthorities, - get_widget_text_value(dialog.comboBoxResExtentsTemporalTrs), - ) + trs if trs != TrsAuthorities.NONE else None ) # links @@ -275,32 +340,37 @@ def set_resource_data_from_ui(self): if is_valid_string(link[3]): new_link.title = link[3] if is_valid_string(link[4]): - new_link.hreflang = get_enum_value_from_string( - Languages, - link[4], - ) + new_link.hreflang = link[4] if is_valid_string(link[5]): new_link.length = int(link[5]) config_data.resources[res_name].links.append(new_link) + # linked-data + read_only_linked_data_lists: list[list[str]] = ( + unpack_listwidget_values_to_sublists(dialog.listWidgetResLinkedData, 1) + ) + if len(read_only_linked_data_lists) > 0: + new_linked_data = read_only_linked_data_lists[0][0] + config_data.resources[res_name].linked__data = json.loads(new_linked_data) + # providers config_data.resources[res_name].providers = [] # add editable providers from a widget - providers_data_lists: list[list] = unpack_listwidget_values_to_sublists( + providers_data_lists: list[list[str]] = unpack_listwidget_values_to_sublists( dialog.listWidgetResProvider ) for pr in providers_data_lists: provider_type = get_enum_value_from_string(ProviderTypes, pr[0]) new_pr = ProviderTemplate.init_provider_from_type(provider_type) - new_pr.assign_value_list_to_provider_data(pr) + new_pr.assign_value_list_to_provider_data_on_read(pr) config_data.resources[res_name].providers.append(new_pr) # add read-only providers from another widget - read_only_providers_data_lists: list[list] = ( + read_only_providers_data_lists: list[list[str]] = ( unpack_listwidget_values_to_sublists( dialog.listWidgetResReadOnlyProviders, 1 ) @@ -311,8 +381,14 @@ def set_resource_data_from_ui(self): # change resource key to a new alias new_alias = dialog.lineEditResAlias.text() - if res_name in config_data.resources: - config_data.resources[new_alias] = config_data.resources.pop(res_name) + + new_resources = {} + for k, v in config_data.resources.items(): + if k == res_name: + new_resources[new_alias] = v + else: + new_resources[k] = v + config_data.resources = new_resources def delete_selected_provider_type_and_name(self, list_widget): """Find and remove first matching resource provider with specified type and name.""" @@ -379,16 +455,16 @@ def get_invalid_resource_ui_fields(self) -> list[str]: ] ] bbox_from_list(raw_bbox_list) - except Exception as e: + except: invalid_fields.append("spatial extents (bbox)") - if not is_valid_string(dialog.lineEditResExtentsSpatialCrs.text()): - invalid_fields.append("spatial extents (crs)") - - if dialog.listWidgetResProvider.count() == 0: + if ( + dialog.listWidgetResProvider.count() == 0 + and dialog.listWidgetResReadOnlyProviders.count() == 0 + ): invalid_fields.append("providers") - # optional fields, but can cause crash if wrong format + # optional fields, but can cause crash if wrong format, so we need to warn about them already here if is_valid_string(dialog.lineEditResExtentsTemporalBegin.text()): try: datetime.strptime( diff --git a/ui_widgets/UiSetter.py b/ui_widgets/UiSetter.py index cd83daa..ca398d7 100644 --- a/ui_widgets/UiSetter.py +++ b/ui_widgets/UiSetter.py @@ -2,11 +2,13 @@ import json from typing import TYPE_CHECKING -from ..models.top_level import ResourceConfigTemplate +from ..models.top_level import ResourceConfigTemplate, ServerLimitsConfig from ..models.top_level.ResourceConfigTemplate import ( ResourceTypesEnum, ResourceVisibilityEnum, ) +from ..models.top_level.ServerConfig import ServerOnExceedEnum, ServerOptionalBoolsEnum +from ..models.top_level.MetadataConfig import MetadataKeywordTypeEnum, MetadataRoleEnum from ..models.top_level.providers.records import ( CrsAuthorities, Languages, @@ -26,23 +28,25 @@ fill_combo_box, pack_locales_data_into_list, pack_list_data_into_list_widget, - select_list_widget_items_by_texts, ) from .utils import get_widget_text_value, reset_widget from PyQt5.QtGui import QIntValidator from PyQt5.QtCore import ( - QRegularExpression, Qt, ) from PyQt5.QtWidgets import QMessageBox -from qgis.gui import QgsMapCanvas -from qgis.core import ( - QgsRasterLayer, - QgsCoordinateReferenceSystem, -) +# make imports optional for pytests +try: + from qgis.gui import QgsMapCanvas + from qgis.core import ( + QgsRasterLayer, + QgsCoordinateReferenceSystem, + ) +except: + pass if TYPE_CHECKING: # preserve type checking, but don't import in runtime to avoid circular import @@ -63,10 +67,43 @@ def set_ui_from_data(self): # bind self.dialog.lineEditHost.setText(config_data.server.bind.host) - self.dialog.spinBoxPort.setValue(config_data.server.bind.port) + self.dialog.lineEditPort.setText(str(config_data.server.bind.port)) # gzip - self.dialog.checkBoxGzip.setChecked(config_data.server.gzip) + set_combo_box_value_from_data( + combo_box=self.dialog.comboBoxGzip, + value=( + str(config_data.server.gzip.value) if config_data.server.gzip else None + ), + ) + + # pretty print + set_combo_box_value_from_data( + combo_box=self.dialog.comboBoxPretty, + value=( + str(config_data.server.pretty_print.value) + if config_data.server.pretty_print + else None + ), + ) + + # admin + set_combo_box_value_from_data( + combo_box=self.dialog.comboBoxAdmin, + value=( + str(config_data.server.admin.value) + if config_data.server.admin + else None + ), + ) + + # cors + set_combo_box_value_from_data( + combo_box=self.dialog.comboBoxCors, + value=( + str(config_data.server.cors.value) if config_data.server.cors else None + ), + ) # mimetype set_combo_box_value_from_data( @@ -80,15 +117,6 @@ def set_ui_from_data(self): value=config_data.server.encoding, ) - # pretty print - self.dialog.checkBoxPretty.setChecked(config_data.server.pretty_print) - - # admin - self.dialog.checkBoxAdmin.setChecked(config_data.server.admin) - - # cors - self.dialog.checkBoxCors.setChecked(config_data.server.cors) - # templates if config_data.server.templates: self.dialog.lineEditTemplatesPath.setText(config_data.server.templates.path) @@ -99,24 +127,81 @@ def set_ui_from_data(self): self.dialog.lineEditTemplatesPath.setText("") self.dialog.lineEditTemplatesStatic.setText("") + # manager (only for display, data is kept without changes) + config_data_server_manager = config_data.server.manager or {} + pack_list_data_into_list_widget( + ( + [str(json.dumps(config_data_server_manager))] + if len(config_data_server_manager) > 0 + else [] + ), + self.dialog.listWidgetServerManager, + ) + + # ogc schemas location + ogc_schemas_location = config_data.server.ogc_schemas_location or "" + self.dialog.lineEditServerOgcSchemasLocation.setText(ogc_schemas_location) + + # icon + icon = config_data.server.icon or "" + self.dialog.lineEditServerIcon.setText(icon) + + # logo + logo = config_data.server.logo or "" + self.dialog.lineEditServerLogo.setText(logo) + + # locale_dir + locale_dir = config_data.server.locale_dir or "" + self.dialog.lineEditServerLocaleDir.setText(locale_dir) + + # api_rules + config_data_server_api_rules = config_data.server.api_rules or {} + pack_list_data_into_list_widget( + ( + [str(json.dumps(config_data_server_api_rules))] + if len(config_data_server_api_rules) > 0 + else [] + ), + self.dialog.listWidgetApiRules, + ) + # map self.dialog.lineEditMapUrl.setText(config_data.server.map.url) self.dialog.lineEditAttribution.setText(config_data.server.map.attribution) self.dialog.lineEditUrl.setText(config_data.server.url) - # language - select_list_widget_items_by_texts( - list_widget=self.dialog.listWidgetLang, - texts_to_select=config_data.server.languages, + # language single + set_combo_box_value_from_data( + combo_box=self.dialog.comboBoxLangSingle, + value=config_data.server.language, ) + # languages + if config_data.server.languages is not None: + pack_list_data_into_list_widget( + [l for l in config_data.server.languages], + self.dialog.listWidgetServerLangs, + ) + # limits + if config_data.server.limits is None: + config_data.server.limits = ServerLimitsConfig() + self.dialog.spinBoxDefault.setValue(config_data.server.limits.default_items) self.dialog.spinBoxMax.setValue(config_data.server.limits.max_items) + max_distance_x = config_data.server.limits.max_distance_x or "" + self.dialog.lineEditServerLimitsMaxDistX.setText(str(max_distance_x)) + + max_distance_y = config_data.server.limits.max_distance_y or "" + self.dialog.lineEditServerLimitsMaxDistY.setText(str(max_distance_y)) + + max_distance_units = config_data.server.limits.max_distance_units or "" + self.dialog.lineEditServerLimitsMaxDistUnits.setText(str(max_distance_units)) + set_combo_box_value_from_data( - combo_box=self.dialog.comboBoxExceed, + combo_box=self.dialog.comboBoxExceed or ServerOnExceedEnum.NONE, value=config_data.server.limits.on_exceed, ) @@ -126,20 +211,27 @@ def set_ui_from_data(self): value=config_data.logging.level, ) - if config_data.logging.logfile: - self.dialog.lineEditLogfile.setText(config_data.logging.logfile) - else: - self.dialog.lineEditLogfile.setText("") + # logfile + logfile = config_data.logging.logfile or "" + self.dialog.lineEditLogfile.setText(logfile) - if config_data.logging.logformat: - self.dialog.lineEditLogformat.setText(config_data.logging.logformat) - else: - self.dialog.lineEditLogformat.setText("") + # logformat + logformat = config_data.logging.logformat or "" + self.dialog.lineEditLogformat.setText(logformat) - if config_data.logging.dateformat: - self.dialog.lineEditDateformat.setText(config_data.logging.dateformat) - else: - self.dialog.lineEditDateformat.setText("") + # dateformat + dateformat = config_data.logging.dateformat or "" + self.dialog.lineEditDateformat.setText(dateformat) + + config_data_logging_rotation = config_data.logging.rotation or {} + pack_list_data_into_list_widget( + ( + [str(json.dumps(config_data_logging_rotation))] + if len(config_data_logging_rotation) > 0 + else [] + ), + self.dialog.listWidgetLogRotation, + ) # metadata identification @@ -339,16 +431,39 @@ def set_resource_ui_from_data(self, res_data: ResourceConfigTemplate): combo_box=dialog.comboBoxResExtentsTemporalTrs, value=res_data.extents.temporal.trs, ) + else: + dialog.lineEditResExtentsTemporalBegin.setText("") + dialog.lineEditResExtentsTemporalEnd.setText("") # links + res_data_links = ( + res_data.links or [] + ) # make sure to set UI even if it's an empty value pack_list_data_into_list_widget( - [ - [l.type, l.rel, l.href, l.title, l.hreflang, l.length] - for l in res_data.links - ], + ( + [ + [l.type, l.rel, l.href, l.title, l.hreflang, l.length] + for l in res_data_links + ] + if len(res_data_links) > 0 + else [] + ), dialog.listWidgetResLinks, ) + # linked-data + res_data_linked__data = ( + res_data.linked__data or {} + ) # make sure to set UI even if it's an empty value + pack_list_data_into_list_widget( + ( + [str(json.dumps(res_data_linked__data))] + if len(res_data_linked__data) > 0 + else [] + ), + dialog.listWidgetResLinkedData, + ) + # providers self.set_providers_ui_from_data(res_data) @@ -384,16 +499,21 @@ def customize_ui_on_launch(self): config_data: ConfigData = dialog.config_data # add default values to the main UI - fill_combo_box(dialog.comboBoxExceed, config_data.server.limits.on_exceed) + fill_combo_box(dialog.comboBoxLangSingle, Languages.NONE) + fill_combo_box(dialog.comboBoxExceed, ServerOnExceedEnum.NONE) fill_combo_box(dialog.comboBoxLog, config_data.logging.level) fill_combo_box( dialog.comboBoxMetadataIdKeywordsType, - config_data.metadata.identification.keywords_type, + MetadataKeywordTypeEnum.NONE, ) fill_combo_box( dialog.comboBoxMetadataContactRole, - config_data.metadata.contact.role, + MetadataRoleEnum.NONE, ) + fill_combo_box(dialog.comboBoxGzip, ServerOptionalBoolsEnum.NONE) + fill_combo_box(dialog.comboBoxPretty, ServerOptionalBoolsEnum.NONE) + fill_combo_box(dialog.comboBoxAdmin, ServerOptionalBoolsEnum.NONE) + fill_combo_box(dialog.comboBoxCors, ServerOptionalBoolsEnum.NONE) # add default values to the Resource UI fill_combo_box( @@ -410,7 +530,7 @@ def customize_ui_on_launch(self): ) fill_combo_box( dialog.comboBoxResExtentsTemporalTrs, - TrsAuthorities.ISO8601, + TrsAuthorities.NONE, ) fill_combo_box( @@ -437,28 +557,45 @@ def customize_ui_on_launch(self): self.dialog.addResLinksLengthLineEdit.setValidator(QIntValidator()) def setup_map_widget(self): - dialog = self.dialog + try: # using qgis imports, so we should ignore for pytests + dialog = self.dialog - # Define base tile layer (OSM) - urlWithParams = "type=xyz&url=https://tile.openstreetmap.org/{z}/{x}/{y}.png" - dialog.bbox_base_layer = QgsRasterLayer(urlWithParams, "OpenStreetMap", "wms") - - # Create QgsMapCanvas with OSM layer - dialog.bbox_map_canvas = QgsMapCanvas() - crs = QgsCoordinateReferenceSystem("EPSG:4326") - dialog.bbox_map_canvas.setDestinationCrs(crs) - dialog.bbox_map_canvas.setCanvasColor(Qt.white) - dialog.bbox_map_canvas.setLayers([dialog.bbox_base_layer]) - dialog.bbox_map_canvas.zoomToFullExtent() - # self.canvas.setExtent(layer.extent(), True) - # self.canvas.refreshAllLayers() + # Define base tile layer (OSM) + urlWithParams = ( + "type=xyz&url=https://tile.openstreetmap.org/{z}/{x}/{y}.png" + ) + dialog.bbox_base_layer = QgsRasterLayer( + urlWithParams, "OpenStreetMap", "wms" + ) - # Add QgsMapCanvas as a widget to the Resource Tab - clear_layout(dialog.bboxMapPlaceholder) - dialog.bboxMapPlaceholder.addWidget(dialog.bbox_map_canvas) + # Create QgsMapCanvas with OSM layer + dialog.bbox_map_canvas = QgsMapCanvas() + crs = QgsCoordinateReferenceSystem("EPSG:4326") + dialog.bbox_map_canvas.setDestinationCrs(crs) + dialog.bbox_map_canvas.setCanvasColor(Qt.white) + dialog.bbox_map_canvas.setLayers([dialog.bbox_base_layer]) + dialog.bbox_map_canvas.zoomToFullExtent() + # self.canvas.setExtent(layer.extent(), True) + # self.canvas.refreshAllLayers() + + # Add QgsMapCanvas as a widget to the Resource Tab + clear_layout(dialog.bboxMapPlaceholder) + dialog.bboxMapPlaceholder.addWidget(dialog.bbox_map_canvas) + except NameError: + pass def preview_resource(self, model_index: "QModelIndex" = None): dialog = self.dialog + dialog.current_res_name = model_index.data() + + # do nothing, if resource is unsupported + if isinstance(dialog.config_data.resources[dialog.current_res_name], dict): + QMessageBox.warning( + self.dialog, + "Message", + f"Preview is not supported for the Resource type '{dialog.config_data.resources[dialog.current_res_name].get('type')}'.", + ) + return # if called as a generic preview, no selected collection if not model_index: @@ -476,8 +613,6 @@ def preview_resource(self, model_index: "QModelIndex" = None): dialog.groupBoxCollectionSelect.show() dialog.groupBoxCollectionPreview.show() - dialog.current_res_name = model_index.data() - # If title is a dictionary, use the first (default) value title = dialog.config_data.resources[dialog.current_res_name].title if isinstance(title, dict): @@ -513,15 +648,27 @@ def select_listcollection_item_by_text(self, target_text: str): dialog.listViewCollection.setCurrentIndex(index) break - def _lang_entry_exists_in_list_widget(self, list_widget, locale) -> bool: + def _lang_entry_exists_in_list_widget( + self, list_widget, locale, punctuation=True + ) -> bool: for i in range(list_widget.count()): - if list_widget.item(i).text().startswith(f"{locale}: "): - QMessageBox.warning( - self.dialog, - "Message", - f"Data entry in selected language already exists: {locale}", - ) - return True + if punctuation: + if list_widget.item(i).text().startswith(f"{locale}: "): + QMessageBox.warning( + self.dialog, + "Message", + f"Data entry in selected language already exists: {locale}", + ) + return True + else: + if list_widget.item(i).text().startswith(locale): + QMessageBox.warning( + self.dialog, + "Message", + f"Data entry in selected language already exists: {locale}", + ) + return True + return False def add_listwidget_element_from_lineedit( @@ -536,11 +683,11 @@ def add_listwidget_element_from_lineedit( """Take the content of LineEdit and add it as a new List entry.""" dialog = self.dialog - text = line_edit_widget.text().strip() - if text: + text = line_edit_widget.text().strip() if line_edit_widget else "" + if (line_edit_widget and text) or not line_edit_widget: text_to_print = text - if locale_combobox: + if locale_combobox and line_edit_widget: # get text with locale locale = locale_combobox.currentText() text_to_print = f"{locale}: {text}" @@ -552,6 +699,18 @@ def add_listwidget_element_from_lineedit( list_widget.addItem(text_to_print) line_edit_widget.clear() + elif ( + locale_combobox and not line_edit_widget + ): # if locale box is the only text to use: don't wrap in extra punctuation + locale = locale_combobox.currentText() + text_to_print = locale + + # check if repeated language entries are allowed + if allow_repeated_locale or not self._lang_entry_exists_in_list_widget( + list_widget, locale, False + ): + list_widget.addItem(text_to_print) + else: list_widget.addItem(text_to_print) line_edit_widget.clear() diff --git a/ui_widgets/WarningDialog.py b/ui_widgets/WarningDialog.py index 73a40ee..466688d 100644 --- a/ui_widgets/WarningDialog.py +++ b/ui_widgets/WarningDialog.py @@ -1,9 +1,26 @@ -from PyQt5.QtWidgets import QDialog, QVBoxLayout, QTextEdit, QPushButton +from datetime import datetime +import json +from PyQt5.QtWidgets import ( + QDialog, + QVBoxLayout, + QTextEdit, + QPushButton, + QDialogButtonBox, +) from PyQt5.QtCore import Qt +def default_serializer(obj): + """Convert unsupported objects to serializable types.""" + if isinstance(obj, datetime): + return obj.strftime("%Y-%m-%dT%H:%M:%SZ") + return str(obj) # fallback for anything else + + class ReadOnlyTextDialog(QDialog): - def __init__(self, parent=None, title="Message", text=""): + def __init__( + self, parent=None, title="Message", text="", add_true_false_btns=False + ): super().__init__(parent) self.setWindowTitle(title) self.setWindowFlag(Qt.WindowStaysOnTopHint) # optional: always on top @@ -14,11 +31,27 @@ def __init__(self, parent=None, title="Message", text=""): # Scrollable read-only text area text_edit = QTextEdit() text_edit.setReadOnly(True) - text_edit.setPlainText(text) text_edit.setMinimumSize(200, 200) # adjust size as needed + + if isinstance(text, dict): + formatted = json.dumps( + text, indent=4, ensure_ascii=False, default=default_serializer + ) + else: + formatted = str(text) + + text_edit.setPlainText(formatted) layout.addWidget(text_edit) # Close button - close_button = QPushButton("Close") - close_button.clicked.connect(self.accept) - layout.addWidget(close_button) + if not add_true_false_btns: + close_button = QPushButton("Close") + close_button.clicked.connect(self.accept) + layout.addWidget(close_button) + + else: + # OK / Cancel buttons + button_box = QDialogButtonBox(QDialogButtonBox.Ok | QDialogButtonBox.Cancel) + button_box.accepted.connect(self.accept) + button_box.rejected.connect(self.reject) + layout.addWidget(button_box) diff --git a/ui_widgets/data_from_ui_setter_utils.py b/ui_widgets/data_from_ui_setter_utils.py index 96eb8f2..9e37dd3 100644 --- a/ui_widgets/data_from_ui_setter_utils.py +++ b/ui_widgets/data_from_ui_setter_utils.py @@ -22,7 +22,7 @@ def unpack_locales_values_list_to_dict(list_widget, allow_list_per_locale: bool) def unpack_listwidget_values_to_sublists( list_widget, expected_members: int | None = None -) -> list[list]: +) -> list[list[str]]: all_sublists = [] for i in range(list_widget.count()): diff --git a/ui_widgets/providers/NewProviderWindow.py b/ui_widgets/providers/NewProviderWindow.py index 9241b35..e9acfbc 100644 --- a/ui_widgets/providers/NewProviderWindow.py +++ b/ui_widgets/providers/NewProviderWindow.py @@ -13,11 +13,16 @@ from PyQt5.QtCore import pyqtSignal, Qt from PyQt5.QtGui import QIntValidator +from ...models.top_level.providers import ( + ProviderPostgresql, + ProviderMvtProxy, + ProviderWmsFacade, +) + from ...models.top_level.providers.records import ProviderTypes -from .provider_features import create_feature_provider_window -from .provider_map import create_map_provider_window -from .provider_tile import create_tile_provider_window +from ...models.utils import cast_list_elements_to_expected_types, cast_element_to_type from .StringListWidget import StringListWidget +from .utils import add_widgets_to_grid_by_specs class NewProviderWindow(QDialog): @@ -50,18 +55,18 @@ def __init__( # fill the box depending on the provider type self.elements_with_values = {} if provider_type == ProviderTypes.FEATURE: - self.elements_with_values = create_feature_provider_window( - group_layout, data_list + self.elements_with_values = add_widgets_to_grid_by_specs( + ProviderPostgresql.ui_elements_grid(), group_layout, data_list ) elif provider_type == ProviderTypes.MAP: - self.elements_with_values = create_map_provider_window( - group_layout, data_list + self.elements_with_values = add_widgets_to_grid_by_specs( + ProviderWmsFacade.ui_elements_grid(), group_layout, data_list ) elif provider_type == ProviderTypes.TILE: - self.elements_with_values = create_tile_provider_window( - group_layout, data_list + self.elements_with_values = add_widgets_to_grid_by_specs( + ProviderMvtProxy.ui_elements_grid(), group_layout, data_list ) # Add buttons at the bottom @@ -86,29 +91,45 @@ def on_save_clicked(self): values = {} # Extract all QLineEdit values into a list for key, element in self.elements_with_values.items(): - values[key] = self.extract_value_from_ui(element) - + widget = element["widget"] + data_type = element["data_type"] + + ui_value: int | list | str | None = self.extract_value_from_ui(widget) + if ui_value is list: + values[key] = cast_list_elements_to_expected_types( + ui_value, data_type, key + ) + else: + try: + values[key] = cast_element_to_type(ui_value, data_type, key) + except ValueError as e: # if value is not matched + if ui_value == "": + ui_value = None + values[key] = cast_element_to_type(ui_value, data_type, key) + else: + raise e + # print(values) # emit values to the parent widget self.signal_provider_values.emit(self, values) # Close the window # self.close() - def extract_value_from_ui(self, element): + def extract_value_from_ui(self, widget) -> int | list | str | None: - if isinstance(element, QLineEdit): + if isinstance(widget, QLineEdit): - validator = element.validator() + validator = widget.validator() if isinstance(validator, QIntValidator): try: - return int(element.text()) + return int(widget.text()) except ValueError: # e.g. if the field is empty return None else: - return element.text() + return widget.text() - elif isinstance(element, QComboBox): - return element.currentText() + elif isinstance(widget, QComboBox): + return widget.currentText() - elif isinstance(element, StringListWidget): - return element.values_to_list() + elif isinstance(widget, StringListWidget): + return widget.values_to_list() diff --git a/ui_widgets/providers/provider_features.py b/ui_widgets/providers/provider_features.py deleted file mode 100644 index 88ed772..0000000 --- a/ui_widgets/providers/provider_features.py +++ /dev/null @@ -1,30 +0,0 @@ -from PyQt5.QtWidgets import QGridLayout, QLineEdit, QComboBox -from .utils import add_widgets_to_grid_by_specs - - -def create_feature_provider_window( - grid_layout: QGridLayout, data_list: list[str] | None = None -): - # label, data_type, special_widget_type, default, placeholder - rows = [ - ("name", str, QComboBox, "", ["PostgreSQL"]), - ("crs", list, None, "", ""), - ( - "storage_crs", - str, - None, - "", - "(optional) http://www.opengis.net/def/crs/OGC/1.3/CRS84", - ), - ("data.host", str, None, "", ""), - ("data.port", str, None, "", ""), - ("data.dbname", str, None, "", ""), - ("data.user", str, None, "", ""), - ("data.password", str, None, "", ""), - ("data.search_path", str, None, "", "e.g. 'osm, public'"), - ("id_field", str, None, "", ""), - ("table", str, None, "", ""), - ("geom_field", str, None, "", ""), - ] - - return add_widgets_to_grid_by_specs(rows, grid_layout, data_list) diff --git a/ui_widgets/providers/provider_map.py b/ui_widgets/providers/provider_map.py deleted file mode 100644 index 1eb4ba5..0000000 --- a/ui_widgets/providers/provider_map.py +++ /dev/null @@ -1,21 +0,0 @@ -from PyQt5.QtWidgets import QGridLayout, QComboBox -from .utils import add_widgets_to_grid_by_specs - - -def create_map_provider_window( - grid_layout: QGridLayout, data_list: list[str] | None = None -): - - # label, data_type, special_widget_type, default, placeholder - rows = [ - ("name", str, QComboBox, "", ["WMSFacade"]), - ("crs", list, None, "", ""), - ("data", str, None, "", ""), - ("options.layer", str, None, "", ""), - ("options.style", str, None, "", ""), - ("options.version", str, None, "", ""), - ("format.name", str, None, "", ""), - ("format.mimetype", str, None, "", ""), - ] - - return add_widgets_to_grid_by_specs(rows, grid_layout, data_list) diff --git a/ui_widgets/providers/provider_tile.py b/ui_widgets/providers/provider_tile.py deleted file mode 100644 index f13390a..0000000 --- a/ui_widgets/providers/provider_tile.py +++ /dev/null @@ -1,21 +0,0 @@ -from PyQt5.QtWidgets import QGridLayout, QComboBox -from .utils import add_widgets_to_grid_by_specs - - -def create_tile_provider_window( - grid_layout: QGridLayout, data_list: list[str] | None = None -): - - # label, data_type, special_widget_type, default, placeholder - rows = [ - ("name", str, QComboBox, "", ["MVT-proxy"]), - ("crs", list, None, "", ""), - ("data", str, None, "", ""), - ("options.zoom.min", int, None, "", ""), - ("options.zoom.max", int, None, "", ""), - ("options.schemes", list, None, "", ""), - ("format.name", str, None, "", ""), - ("format.mimetype", str, None, "", ""), - ] - - return add_widgets_to_grid_by_specs(rows, grid_layout, data_list) diff --git a/ui_widgets/providers/utils.py b/ui_widgets/providers/utils.py index 2f3f17a..6c5b7c7 100644 --- a/ui_widgets/providers/utils.py +++ b/ui_widgets/providers/utils.py @@ -16,8 +16,8 @@ def create_label_lineedit_pair( label_text: str, default_value="", placeholder: str = "", validation_callback=None ) -> QHBoxLayout: label = QLabel(label_text) - line_edit = QLineEdit(default_value) - line_edit.setPlaceholderText(placeholder) + line_edit = QLineEdit(str(default_value) if default_value is not None else "") + line_edit.setPlaceholderText(str(placeholder) if placeholder is not None else "") return {"label": label, "line_edit": line_edit} @@ -47,10 +47,10 @@ def add_widgets_to_grid_by_specs( all_data_widgets = {} for i, row_specs in enumerate(specs_list): - label, data_type, special_widget_type, default, placeholder = row_specs + label, data_type, default, special_widget_type, placeholder = row_specs # if regular widget (QLineEdit for str and int; QListWIdget for list) - if not special_widget_type: + if special_widget_type != "QComboBox": # set up defaults default_list_entry = "" @@ -61,36 +61,44 @@ def add_widgets_to_grid_by_specs( validation_callback = lambda url, parent: get_url_status(url, parent) # check data types and create corresponding widgets - if data_type is str or data_type is int: + if data_type is list or data_type == (list | None): + + # assign data_widget! + data_widget = create_list_widget( + label, default_list_entry, validation_callback + ) + group_layout.addWidget(data_widget.label, i, 0) + group_layout.addWidget(data_widget, i, 1) + + else: new_widgets = create_label_lineedit_pair( label, default, placeholder, validation_callback ) + # assign data_widget! + data_widget = new_widgets["line_edit"] group_layout.addWidget(new_widgets["label"], i, 0) group_layout.addWidget(new_widgets["line_edit"], i, 1) if data_type is int: new_widgets["line_edit"].setValidator(QIntValidator()) - elif data_type is list: - - data_widget = create_list_widget( - label, default_list_entry, validation_callback - ) - group_layout.addWidget(data_widget.label, i, 0) - group_layout.addWidget(data_widget, i, 1) - else: - if special_widget_type is QComboBox: - all_values: list = placeholder # case for dropdowns - label_widget, data_widget = create_label_dropdown_pair( - label, all_values - ) - group_layout.addWidget(label_widget, i, 0) - group_layout.addWidget(data_widget, i, 1) + all_values: list = placeholder # case for dropdowns + # assign data_widget! + label_widget, data_widget = create_label_dropdown_pair(label, all_values) + group_layout.addWidget(label_widget, i, 0) + group_layout.addWidget(data_widget, i, 1) + + # extra check: + if special_widget_type == "disabled": + data_widget.setEnabled(False) # add to list of data widgets and fill with data if available - all_data_widgets[label] = data_widget - if data_list: + original_label_value = label.replace("*", "") + all_data_widgets[original_label_value] = {} + all_data_widgets[original_label_value]["widget"] = data_widget + all_data_widgets[original_label_value]["data_type"] = data_type + if data_list: # e.g. for dropdown assign_value_to_field(data_widget, data_list[i]) return all_data_widgets diff --git a/ui_widgets/ui_setter_utils.py b/ui_widgets/ui_setter_utils.py index b62dcc2..3664351 100644 --- a/ui_widgets/ui_setter_utils.py +++ b/ui_widgets/ui_setter_utils.py @@ -1,15 +1,20 @@ from enum import Enum from ..models.top_level.utils import STRING_SEPARATOR, is_valid_string -from qgis.gui import QgsMapCanvas -from qgis.core import ( - QgsRasterLayer, - QgsVectorLayer, - QgsFeature, - QgsGeometry, - QgsRectangle, - QgsCoordinateReferenceSystem, - QgsFillSymbol, -) + +# make imports optional for pytests +try: + from qgis.gui import QgsMapCanvas + from qgis.core import ( + QgsRasterLayer, + QgsVectorLayer, + QgsFeature, + QgsGeometry, + QgsRectangle, + QgsCoordinateReferenceSystem, + QgsFillSymbol, + ) +except: + pass def fill_combo_box(combo_box, enum_class): @@ -17,7 +22,7 @@ def fill_combo_box(combo_box, enum_class): combo_box.clear() for item in type(enum_class): - combo_box.addItem(item.value) + combo_box.addItem(str(item.value) if item.value is not None else "") def clear_layout(layout): diff --git a/utils/data_diff.py b/utils/data_diff.py new file mode 100644 index 0000000..81f85ad --- /dev/null +++ b/utils/data_diff.py @@ -0,0 +1,79 @@ +from typing import Any + + +def diff_yaml_dict(obj1: dict, obj2: dict) -> dict: + """Returns all added, removed or changed elements between 2 dictionaries.""" + + diff_data = {"added": {}, "removed": {}, "changed": {}} + diff_obj(obj1, obj2, diff_data, "") + + # Exclude removed values that are None - not important + new_removed_dict = {} + for k, v in diff_data["removed"].items(): + if v is not None: + new_removed_dict[k] = v + diff_data["removed"] = new_removed_dict + + return diff_data + + +def diff_yaml_dict_remove_known_faulty_fields( + obj1: dict, obj2: dict, missing_props=[] +) -> dict: + """Returns all added, removed or changed elements between 2 dictionaries.""" + + diff_data = diff_yaml_dict(obj1, obj2) + + # run diff through several conditions + # 1. Exclude values that already triggered warning on opening: .all_missing_props + new_removed_dict = {} + for k, v in diff_data["removed"].items(): + if k not in missing_props: + new_removed_dict[k] = v + diff_data["removed"] = new_removed_dict + + # 3. Exclude changed values, originally warned about + new_changed_dict = {} + for k, v in diff_data["changed"].items(): + if k not in missing_props: + new_changed_dict[k] = v + diff_data["changed"] = new_changed_dict + + return diff_data + + +def diff_obj(obj1: Any, obj2: Any, diff: dict, path: str = "") -> dict: + """Returns all added, removed or changed elements between 2 objects. + Ignores diff in dict keys order. For lists, order is checked.""" + + if isinstance(obj1, dict) and isinstance(obj2, dict): + all_keys = set(obj1.keys()) | set(obj2.keys()) + for key in all_keys: + new_path = f"{path}.{key}" if path else key + if key not in obj1: + diff["added"][new_path] = obj2[key] + elif key not in obj2: + diff["removed"][new_path] = obj1[key] + else: + nested = diff_obj(obj1[key], obj2[key], diff, new_path) + for k in diff: + diff[k].update(nested[k]) + + elif isinstance(obj1, list) and isinstance(obj2, list): + max_len = max(len(obj1), len(obj2)) + for i in range(max_len): + new_path = f"{path}[{i}]" + if i >= len(obj1): + diff["added"][new_path] = obj2[i] + elif i >= len(obj2): + diff["removed"][new_path] = obj1[i] + else: + nested = diff_obj(obj1[i], obj2[i], diff, new_path) + for k in diff: + diff[k].update(nested[k]) + + else: + if obj1 != obj2: + diff["changed"][path] = {"old": obj1, "new": obj2} + + return diff