From 7ec3b8d0cf1b66dbc9784ddcf2390b07d73cd950 Mon Sep 17 00:00:00 2001 From: Ivor Bosloper Date: Fri, 11 Sep 2026 17:27:15 +0200 Subject: [PATCH 01/11] REST converters: page by id windows, and never cache what is not a page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Paging by `sortBy` + `attribute > last_id` asks the server to sort the whole layer for every page. On Cantabria's joined SIGPAC layers that costs about 100 seconds per request — days for one edition — where a range filter on the same indexed key answers in one or two. Galicia is 15.8 million recintos per edition, in pages of 1000. Paging by half-open id windows removes the sort: the key is unique, so a window of `page_size` ids cannot overflow a page, and gaps only produce empty windows, which are skipped. Pages cached by the old scheme are keyed by the previous page's last id; on a dense layer those coincide exactly with a window, so one is reused when its own ids prove it covers the window completely. Three more things this turned up, each invisible in the output: - **Layer ids repeat across services.** Every SIXPAC_ MapServer has its Recintos layer at id 2, so a cache keyed on the layer alone served one year's pages for another. The service is part of the key now. - **An error response was cached as if it were data.** Esri answers a failed query with 200 and a JSON error body; that body was written to the cache file and every later run read it back. So was a download that broke off halfway. Neither survives now. - **Joined layers qualify every field with its table name**, so "OBJECTID" matches nothing and the paging filter silently returns everything. The real key field is discovered from a one-row probe before paging starts. `rest_format`, the fixture-reading branch and the way `rest_params["where"]` is combined with the paging filter are unchanged; the test that pins them is updated for the new clause, which now reads `OBJECTID>0 AND OBJECTID<=1000 AND ()`. tests/test_converter_rest.py serves a small fake service of five features in pages of two, which is enough to hold every one of these: the window arithmetic, the cache naming, the two guards, the qualified key, and the reuse of a legacy page only when its ids cover the window. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01DVx9uQV2QPM8ecPAY3ZjXG --- CHANGELOG.md | 36 +++++ fiboa_cli/conversion/converter_rest.py | 149 +++++++++++++---- tests/test_converter_rest.py | 213 +++++++++++++++++++++++++ tests/test_converters.py | 21 ++- 4 files changed, 387 insertions(+), 32 deletions(-) create mode 100644 tests/test_converter_rest.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 6329d8e1..3e5a802d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -103,6 +103,42 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - JP: Uses campaign-specific determination dates and DuckDB conversion path. - LT: Updated to Europe-LAND v1.3 with 2025 coverage. - SK: Fixed edition selection, crop-name matching and block/id handling across campaigns. +- Declare the beautifulsoup4 dependency the ES-PV and ES-VC converters import +- ES-CL: the ITACyL server is https-only, the 2025 shapefiles sit in province subfolders, and C_REFREC is the identifier +- A test refuses a fixture above 5 MB, committed or merely lying in the fixture folder, because a failing convert test downloads the real source there +- ES-MD: find RECINTO.shp wherever the archive puts it +- REST converters: page by id windows instead of server-side sorting, key cached pages by service as well as layer, discover the qualified key field on joined layers, and never keep an error response or a broken download as a cached page +- Update vecorel-cli to v0.2.17: + - GeoJSON is read as UTF-8 as the format mandates, instead of the platform locale (cp1252 on Windows mangled umlauts) + - GeoJSON files with a byte order mark no longer fail to read + - Drop the per-converter UTF-8 workarounds in de_bw and de_he, now redundant +- Converter for Spain (whole), based on the FEGA 2025+ data +- Add Italy Tuscany (IT-1) basd on EuroCrops v2 +- Suuport multiple years for CZ +- Multiple years for DE_sh +- Multiple year support for HR +- Introduce FiboaBaseConverter.use_variant_as_determination for setting proper determination_date +- Update years for DK (2025, 2026) +- Update fr-converter to support 2021/2022 files +- Converter for Baden-Württemberg, Germany (GISELa LPIS reference parcels, 2018-2022) +- Converter for Lithuania KŽS reference parcels (lt_kzs), reading the geoportal.lt ArcGIS REST service +- Support Esri JSON and server-side filters in EsriRESTConverterMixin (rest_format, rest_params["where"]) +- Converter for Bavaria, Germany LPIS field blocks (de_by_block) +- Converter for Hesse, Germany LPIS reference parcels +- Converter for Saxony-Anhalt, Germany LPIS field blocks (de_st) +- Converter for Saarland, Germany LPIS field blocks (de_sl_block) +- Fix parcel sizes written in scientific notation being read 10,000x too large (de_sl_block parser) +- Repair the Saarland, Germany converter (de_sl), which could no longer read its source at all. + It now pages through the whole dataset, where the previous six hardcoded bounding boxes reached + only 20,300 of 54,038 parcels, so earlier output was incomplete. `metrics:area` is derived from + the geometry, because the service stopped publishing the declared size. +- Converter for South Tyrol, Italy (it_bz), reading the province's LAFIS utilised agricultural area +- Update vecorel-cli to v0.2.16: + - Converter output is sorted by Hilbert distance + - Commands exit with a non-zero exit code when they report a failure + - Collection-only properties are kept when merging collections + - Default GeoParquet compression is now zstd (level 15), configurable via `--compression_level` +- DE-SH: make the 2023, 2025 and 2026 editions convert — glob the GeoPackage inside the archive (2023 was written with user_version = 0, so the archive alone matches no driver), parse fachguelti as DD.MM.YYYY, and map the 2023 and upper-case 2025/2026 column spellings that silently dropped determination:datetime and metrics:area (their area is text with a decimal comma) ## [v0.21.0] - 2026-02-16 diff --git a/fiboa_cli/conversion/converter_rest.py b/fiboa_cli/conversion/converter_rest.py index be2f91f5..6807474a 100644 --- a/fiboa_cli/conversion/converter_rest.py +++ b/fiboa_cli/conversion/converter_rest.py @@ -1,4 +1,5 @@ import os +import re from urllib.parse import urlencode import geopandas as gpd @@ -25,7 +26,7 @@ def get_urls(self): return {"REST": self.rest_base_url} def download_files(self, uris, cache_folder=None): - # Read-data will just stream all pages of rest-service + # Read-data will just stream alle pages of rest-service if next(iter(uris), "").startswith("REST"): self.cache_folder = cache_folder return list(uris.values()) @@ -54,38 +55,132 @@ def get_data(self, paths, **kwargs): layer = self.rest_layer_filter(service_metadata["layers"]) page_size = service_metadata["maxRecordCount"] layer_url = f"{base_url}/{layer['id']}/query" - rest_params = dict(self.rest_params) - base_where = rest_params.pop("where", None) # combined with the paging filter below - get_dict = rest_params | { + # Joined layers qualify every field with the table name; discover the + # real key field before paging on it ("OBJECTID" alone fails there). + probe = requests.get( + layer_url, + { + "f": "json", + "where": "1=1", + "outFields": "*", + "resultRecordCount": 1, + "returnGeometry": "false", + }, + ).json() + attribute = self.rest_attribute + if probe.get("features"): + names = list(probe["features"][0]["attributes"].keys()) + attribute = next( + (n for n in names if n == self.rest_attribute), + next( + (n for n in names if n.endswith("." + self.rest_attribute)), self.rest_attribute + ), + ) + base_where = self.rest_params.get("where") + + # Page by half-open id windows instead of orderByFields + "id > last": + # server-side sorting costs ~100 s per request on joined layers, while a + # range filter on the indexed key answers in about a second. The key is + # unique, so a window of page_size ids cannot overflow a page; id gaps + # only produce empty windows, which are skipped. + min_id = self._rest_id_bound(layer_url, attribute, base_where, "ASC") + max_id = self._rest_id_bound(layer_url, attribute, base_where, "DESC") + + get_dict = self.rest_params | { "outFields": "*", "returnGeometry": "true", "f": self.rest_format, - "sortBy": self.rest_attribute, - "resultRecordCount": page_size, } - gdfs = [] - last_id = -1 - while True: - get_dict["where"] = f"{self.rest_attribute}>{last_id}" - if base_where: - get_dict["where"] += f" AND ({base_where})" - url = f"{layer_url}?{urlencode(get_dict)}" + # Layer ids repeat across services (every SIXPAC_ MapServer has its + # Recintos layer at id 2), so the service must be part of the cache key. + service = re.sub(r"\W+", "_", base_url.rstrip("/").split("/rest/services/")[-1]) + page = 0 + lo = min_id - 1 + while lo < max_id: + hi = lo + page_size + data = None if cache_fs is not None: - cache_file = os.path.join( - cache_folder, f"{self.id}_{layer['id']}_{last_id}.{self.rest_format}" + data = self._window_from_legacy_cache( + cache_fs, cache_folder, layer["id"], lo, hi, page_size ) - if not cache_fs.exists(cache_file): - with cache_fs.open(cache_file, mode="wb") as file: - stream_file(source_fs, url, file) - url = cache_file - - data = gpd.read_file(url) - print( - f"Read {len(data)} features, page {len(gdfs)} from [{data.iloc[0, 0]} ... {data.iloc[-1, 0]}]" - ) - last_id = data[self.rest_attribute].values[-1] + if data is None: + clause = f"{attribute}>{lo} AND {attribute}<={hi}" + get_dict["where"] = f"{clause} AND ({base_where})" if base_where else clause + url = f"{layer_url}?{urlencode(get_dict)}" + if cache_fs is not None: + cache_file = os.path.join( + cache_folder, + f"{self.id}_{service}_{layer['id']}_r{lo}.{self.rest_format}", + ) + if not cache_fs.exists(cache_file): + try: + with cache_fs.open(cache_file, mode="wb") as file: + stream_file(source_fs, url, file) + except Exception: + # A download that broke off must not survive as a cached page + if cache_fs.exists(cache_file): + cache_fs.rm(cache_file) + raise + url = cache_file + try: + data = gpd.read_file(url) + except Exception as e: + # An error response from the server must not survive as a cached page + if cache_fs is not None and cache_fs.exists(url): + cache_fs.rm(url) + raise RuntimeError( + f"Could not read ids ({lo} ... {hi}] of {layer_url}: {e}" + ) from e + + lo = hi + if len(data) == 0: + continue + print(f"Read {len(data)} features, page {page} from ids ({hi - page_size} ... {hi}]") + page += 1 yield data, base_url, base_url, layer["id"] - if not len(data) >= page_size: - break + def _rest_id_bound(self, layer_url, attribute, base_where, direction): + clause = f"{attribute}>-1" + response = requests.get( + layer_url, + { + "f": "json", + "where": f"{clause} AND ({base_where})" if base_where else clause, + "outFields": attribute, + "returnGeometry": "false", + "orderByFields": f"{attribute} {direction}", + "resultRecordCount": 1, + }, + ).json() + return int(next(iter(response["features"][0]["attributes"].values()))) + + def _window_from_legacy_cache(self, cache_fs, cache_folder, layer_id, lo, hi, page_size): + """Pages cached by the old sorted paging are keyed by the previous page's + last id. On dense layers they coincide exactly with an id window, so reuse + one when its ids prove it covers (lo, hi] completely.""" + for key in [-1, lo] if lo == 0 else [lo]: + path = os.path.join(cache_folder, f"{self.id}_{layer_id}_{key}.{self.rest_format}") + if not cache_fs.exists(path): + continue + try: + data = gpd.read_file(path) + except Exception: + continue + id_column = next( + ( + c + for c in data.columns + if c == self.rest_attribute or c.endswith("." + self.rest_attribute) + ), + None, + ) + if id_column is None or len(data) == 0: + continue + ids = data[id_column] + covers = (len(data) == page_size and ids.max() == hi) or ( + len(data) < page_size and ids.max() <= hi + ) + if ids.min() == lo + 1 and covers: + return data + return None diff --git a/tests/test_converter_rest.py b/tests/test_converter_rest.py new file mode 100644 index 00000000..6f632a59 --- /dev/null +++ b/tests/test_converter_rest.py @@ -0,0 +1,213 @@ +"""Tests for the Esri REST paging mixin. + +Every page the mixin fetches is a file in the cache, and the bugs it has had +were invisible in the output: pages of one service overwriting another's, +the converter's own `where` being dropped, an error page kept as if it held +data. These tests serve a small fake service so the paging can be watched. +""" + +import json +import os + +import pytest + +from fiboa_cli.conversion.converter_rest import EsriRESTConverterMixin +from fiboa_cli.conversion.fiboa_converter import FiboaBaseConverter + +BASE_URL = "https://example.test/arcgis/rest/services/SIXPAC_2024/MapServer" +SERVICE = "SIXPAC_2024_MapServer" +LAYER_ID = 2 +PAGE_SIZE = 2 +# the fake layer: five features with ids 1..5, so the last window holds one +FEATURE_IDS = [1, 2, 3, 4, 5] + + +class RESTConverter(EsriRESTConverterMixin, FiboaBaseConverter): + id = "test_rest" + rest_base_url = BASE_URL + columns = {"geometry": "geometry", "OBJECTID": "id"} + + +def _feature(oid, key="OBJECTID"): + return { + "type": "Feature", + "properties": {key: oid}, + "geometry": {"type": "Point", "coordinates": [oid, oid]}, + } + + +def _collection(oids, key="OBJECTID"): + return {"type": "FeatureCollection", "features": [_feature(o, key) for o in oids]} + + +class FakeService: + """Answers the three metadata calls and records every page request.""" + + def __init__(self, key="OBJECTID", ids=FEATURE_IDS): + self.key = key + self.ids = ids + self.pages = [] # the `where` of every page the mixin downloaded + + def get(self, url, params=None, **kwargs): + params = params or {} + + class Response: + def __init__(self, payload): + self._payload = payload + + def json(self): + return self._payload + + if params.get("f") == "pjson": + return Response( + {"layers": [{"id": LAYER_ID, "name": "Recintos"}], "maxRecordCount": PAGE_SIZE} + ) + if params.get("outFields") == "*": # the probe for the real key field + return Response({"features": [{"attributes": {self.key: self.ids[0]}}]}) + bound = max(self.ids) if params["orderByFields"].endswith("DESC") else min(self.ids) + return Response({"features": [{"attributes": {self.key: bound}}]}) + + def stream(self, _source_fs, url, file): + where = url.split("where=")[1].split("&")[0] + self.pages.append(where) + # the clause is ">lo AND <=hi", optionally followed by the + # converter's own filter + lo = int(where.split("%3E")[1].split("+")[0]) + hi = int(where.split("%3C%3D")[1].split("+")[0]) + oids = [o for o in self.ids if lo < o <= hi] + file.write(json.dumps(_collection(oids, self.key)).encode("utf-8")) + + +@pytest.fixture +def service(monkeypatch): + fake = FakeService() + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.requests.get", fake.get) + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.stream_file", fake.stream) + return fake + + +def _read(converter, cache, service=None): + converter.cache_folder = str(cache) + return list(converter.get_data([BASE_URL])) + + +def test_pages_by_id_window_and_caches_per_service(service, tmp_path): + converter = RESTConverter() + pages = _read(converter, tmp_path) + + assert [len(data) for data, *_ in pages] == [2, 2, 1] + assert all(rest == [BASE_URL, BASE_URL, LAYER_ID] for _, *rest in pages) + # the window is half-open, so no id is fetched twice and none is skipped + assert service.pages == [ + "OBJECTID%3E0+AND+OBJECTID%3C%3D2", + "OBJECTID%3E2+AND+OBJECTID%3C%3D4", + "OBJECTID%3E4+AND+OBJECTID%3C%3D6", + ] + # layer ids repeat across services (every SIXPAC_ has its Recintos at 2), + # so the service name has to be part of the file name + assert sorted(os.listdir(tmp_path)) == [ + f"test_rest_{SERVICE}_{LAYER_ID}_r{lo}.geojson" for lo in (0, 2, 4) + ] + + +def test_converter_where_is_kept(service, tmp_path): + converter = RESTConverter() + converter.rest_params = {"where": "USO_SIGPAC='TA'"} + _read(converter, tmp_path) + + # the window clause used to overwrite the converter's own filter + assert all(page.endswith("+AND+%28USO_SIGPAC%3D%27TA%27%29") for page in service.pages) + + +def test_qualified_key_field_is_discovered(monkeypatch, tmp_path): + """A joined layer qualifies every field with its table name.""" + fake = FakeService(key="RECINTOS.OBJECTID") + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.requests.get", fake.get) + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.stream_file", fake.stream) + + _read(RESTConverter(), tmp_path) + + assert all(page.startswith("RECINTOS.OBJECTID%3E") for page in fake.pages) + + +def test_error_response_is_not_kept_as_a_page(service, tmp_path, monkeypatch): + def error_page(_source_fs, url, file): + file.write(b'{"error":{"code":500,"message":"Internal error"}}') + + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.stream_file", error_page) + + with pytest.raises(RuntimeError, match=r"Could not read ids \(0 ... 2\]"): + _read(RESTConverter(), tmp_path) + assert os.listdir(tmp_path) == [] + + +def test_broken_download_is_not_kept_as_a_page(service, tmp_path, monkeypatch): + def broken(_source_fs, url, file): + file.write(b'{"type":"FeatureColl') + raise ConnectionError("connection reset") + + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.stream_file", broken) + + with pytest.raises(ConnectionError): + _read(RESTConverter(), tmp_path) + assert os.listdir(tmp_path) == [] + + +def test_legacy_page_is_reused_when_its_ids_cover_the_window(service, tmp_path): + """Pages cached by the old sorted paging are keyed by the previous page's + last id; a dense one covers exactly the window that replaced it.""" + legacy = tmp_path / f"test_rest_{LAYER_ID}_-1.geojson" + legacy.write_text(json.dumps(_collection([1, 2]))) + + pages = _read(RESTConverter(), tmp_path) + + assert [len(data) for data, *_ in pages] == [2, 2, 1] + assert service.pages == [ # the first window came from the legacy file + "OBJECTID%3E2+AND+OBJECTID%3C%3D4", + "OBJECTID%3E4+AND+OBJECTID%3C%3D6", + ] + + +def test_legacy_page_that_does_not_cover_the_window_is_ignored(service, tmp_path): + """The old key is the last id of the previous page, which on a layer with + gaps says nothing about which ids the file holds.""" + gappy = tmp_path / f"test_rest_{LAYER_ID}_-1.geojson" + gappy.write_text(json.dumps(_collection([1, 3]))) + unreadable = tmp_path / f"test_rest_{LAYER_ID}_2.geojson" + unreadable.write_text("not geojson at all") + + _read(RESTConverter(), tmp_path) + + assert service.pages == [ + "OBJECTID%3E0+AND+OBJECTID%3C%3D2", + "OBJECTID%3E2+AND+OBJECTID%3C%3D4", + "OBJECTID%3E4+AND+OBJECTID%3C%3D6", + ] + + +def test_empty_window_is_skipped(monkeypatch, tmp_path): + """An id gap wider than a page yields a window with nothing in it.""" + fake = FakeService(ids=[1, 6]) + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.requests.get", fake.get) + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.stream_file", fake.stream) + + pages = _read(RESTConverter(), tmp_path) + + assert [len(data) for data, *_ in pages] == [1, 1] + assert len(fake.pages) == 3 # the middle window was fetched, and held nothing + + +def test_get_urls_requires_a_base_url(): + class NoURL(EsriRESTConverterMixin, FiboaBaseConverter): + id = "no_url" + columns = {"geometry": "geometry", "id": "id"} + + assert RESTConverter().get_urls() == {"REST": BASE_URL} + with pytest.raises(AssertionError, match="rest_base_url"): + NoURL().get_urls() + + +def test_download_files_passes_the_rest_url_through(tmp_path): + converter = RESTConverter() + assert converter.download_files({"REST": BASE_URL}, str(tmp_path)) == [BASE_URL] + assert converter.cache_folder == str(tmp_path) diff --git a/tests/test_converters.py b/tests/test_converters.py index bbcd4d4f..685a9e74 100644 --- a/tests/test_converters.py +++ b/tests/test_converters.py @@ -55,13 +55,24 @@ def test_rest_query_params(monkeypatch, tmp_folder): converter.cache_folder = str(tmp_folder) class Response: + def __init__(self, payload): + self._payload = payload + def json(self): + return self._payload + + def fake_get(url, params=None): + params = params or {} + if params.get("f") == "pjson": # maxRecordCount above the page length below, so paging stops after one page - return {"layers": [{"id": 0}], "maxRecordCount": 1000} + return Response({"layers": [{"id": 0}], "maxRecordCount": 1000}) + if params.get("outFields") == "*": # probe for the real key field + return Response({"features": [{"attributes": {"OBJECTID": 1}}]}) + # the two id bounds the window paging starts from + bound = 1000 if params["orderByFields"].endswith("DESC") else 1 + return Response({"features": [{"attributes": {"OBJECTID": bound}}]}) - monkeypatch.setattr( - "fiboa_cli.conversion.converter_rest.requests.get", lambda url, params: Response() - ) + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.requests.get", fake_get) requested, read = [], [] monkeypatch.setattr( @@ -81,7 +92,7 @@ def fake_read_file(path, *args, **kwargs): query = parse_qs(urlparse(requested[0]).query) assert query["f"] == ["json"], "rest_format must drive the output format" assert query["outSR"] == ["4326"], "rest_params must survive into the query" - assert query["where"] == ["OBJECTID>-1 AND (GKODAS IN ('bl1','bl1b'))"], ( + assert query["where"] == ["OBJECTID>0 AND OBJECTID<=1000 AND (GKODAS IN ('bl1','bl1b'))"], ( "The paging filter must be combined with rest_params['where'], not replace it" ) assert read[0].endswith(".json"), ( From 2e4a1d26ce498f17a85d8ae6ac8e7549db476a90 Mon Sep 17 00:00:00 2001 From: Ivor Date: Fri, 11 Sep 2026 18:17:47 +0200 Subject: [PATCH 02/11] Update converter_rest.py Co-authored-by: Matthias Mohr (cherry picked from commit 090f4d72cd41a63309d98886fb1d771b658760f3) --- fiboa_cli/conversion/converter_rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fiboa_cli/conversion/converter_rest.py b/fiboa_cli/conversion/converter_rest.py index 6807474a..5b09a0a4 100644 --- a/fiboa_cli/conversion/converter_rest.py +++ b/fiboa_cli/conversion/converter_rest.py @@ -26,7 +26,7 @@ def get_urls(self): return {"REST": self.rest_base_url} def download_files(self, uris, cache_folder=None): - # Read-data will just stream alle pages of rest-service + # Read-data will just stream all pages of rest-service if next(iter(uris), "").startswith("REST"): self.cache_folder = cache_folder return list(uris.values()) From 629ae29743a637fd6e61c2f732b8ce71accac555 Mon Sep 17 00:00:00 2001 From: Ivor Bosloper Date: Sat, 12 Sep 2026 22:16:16 +0200 Subject: [PATCH 03/11] REST converters: strip a join's table prefixes, and survive a tired service Three things every REST converter needs, each of which es_ib or es_cb had a copy of: - a joined layer qualifies every field (SIGPAC_FOGAIBA.DN_OID), so a converter's `columns` match nothing; the prefixes are stripped on the way out of get_data, first table winning, which is the one with the geometry - an edition may live in a service of its own, so a variant whose value is a URL names the service to read it from - the id-bound query is the one sorted query left, and the Balearic proxy answers two in three with a 502; it is retried five times Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01DVx9uQV2QPM8ecPAY3ZjXG --- CHANGELOG.md | 1 + fiboa_cli/conversion/converter_rest.py | 78 +++++++++++++++++--------- tests/test_converter_rest.py | 70 +++++++++++++++++++++++ 3 files changed, 124 insertions(+), 25 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e5a802d..6144163a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -107,6 +107,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - ES-CL: the ITACyL server is https-only, the 2025 shapefiles sit in province subfolders, and C_REFREC is the identifier - A test refuses a fixture above 5 MB, committed or merely lying in the fixture folder, because a failing convert test downloads the real source there - ES-MD: find RECINTO.shp wherever the archive puts it +- REST converters: a variant may name its own service (es_ib keeps its yearly editions in a second one), the id-bound query is retried, and a joined layer's table prefixes are stripped for every converter - REST converters: page by id windows instead of server-side sorting, key cached pages by service as well as layer, discover the qualified key field on joined layers, and never keep an error response or a broken download as a cached page - Update vecorel-cli to v0.2.17: - GeoJSON is read as UTF-8 as the format mandates, instead of the platform locale (cp1252 on Windows mangled umlauts) diff --git a/fiboa_cli/conversion/converter_rest.py b/fiboa_cli/conversion/converter_rest.py index 5b09a0a4..23846e4e 100644 --- a/fiboa_cli/conversion/converter_rest.py +++ b/fiboa_cli/conversion/converter_rest.py @@ -1,5 +1,6 @@ import os import re +import time from urllib.parse import urlencode import geopandas as gpd @@ -18,12 +19,16 @@ def rest_layer_filter(self, layers): return next(iter(layers)) def get_urls(self): - assert self.rest_base_url, ( - "Either define {c}.rest_base_url or override {c}.get_urls()".format( - c=self.__class__.__name__ - ) + # An edition may live in a service of its own: es_ib keeps the current + # snapshot in one and the yearly ones in another, so a variant whose + # value is a URL names the service to read it from. + url = self.variants.get(self.variant or next(iter(self.variants), "")) + if not isinstance(url, str) or not url.startswith("http"): + url = self.rest_base_url + assert url, "Either define {c}.rest_base_url or override {c}.get_urls()".format( + c=self.__class__.__name__ ) - return {"REST": self.rest_base_url} + return {"REST": url} def download_files(self, uris, cache_folder=None): # Read-data will just stream all pages of rest-service @@ -34,6 +39,24 @@ def download_files(self, uris, cache_folder=None): # This happens when input_file param is used return super().download_files(uris, cache_folder) + @staticmethod + def _unqualify(gdf): + """Drop the table prefix a joined layer puts on every field name. + + A join answers with SIGPAC_FOGAIBA.DN_OID rather than DN_OID, so a + converter's `columns` match nothing. The first table wins, which is the + one carrying the geometry. + """ + if not any("." in c for c in gdf.columns): + return gdf + renames = {} + for column in gdf.columns: + name = column.rsplit(".", 1)[-1] + if name not in gdf.columns and name not in renames.values(): + renames[column] = name + gdf = gdf.rename(columns=renames) + return gdf.loc[:, ~gdf.columns.duplicated()] + def get_data(self, paths, **kwargs): if not (isinstance(paths[0], str) and paths[0].startswith("http")): # This happens when the input_file param is used. Pages are read with the same @@ -44,7 +67,7 @@ def get_data(self, paths, **kwargs): # map from their own attribute. Reading a fixture must match a real run. for path, uri in paths: self.info(f"Reading {path} into GeoDataFrame") - yield gpd.read_file(path), path, uri, None + yield self._unqualify(gpd.read_file(path)), path, uri, None return base_url = paths[0] # loop over paths to support more than 1 source @@ -78,11 +101,9 @@ def get_data(self, paths, **kwargs): ) base_where = self.rest_params.get("where") - # Page by half-open id windows instead of orderByFields + "id > last": - # server-side sorting costs ~100 s per request on joined layers, while a - # range filter on the indexed key answers in about a second. The key is - # unique, so a window of page_size ids cannot overflow a page; id gaps - # only produce empty windows, which are skipped. + # Page by half-open id windows rather than orderByFields + "id > last": + # server-side sorting costs ~100 s per request on joined layers. The key + # is unique, so a window of page_size ids cannot overflow a page. min_id = self._rest_id_bound(layer_url, attribute, base_where, "ASC") max_id = self._rest_id_bound(layer_url, attribute, base_where, "DESC") @@ -138,22 +159,29 @@ def get_data(self, paths, **kwargs): continue print(f"Read {len(data)} features, page {page} from ids ({hi - page_size} ... {hi}]") page += 1 - yield data, base_url, base_url, layer["id"] + yield self._unqualify(data), base_url, base_url, layer["id"] - def _rest_id_bound(self, layer_url, attribute, base_where, direction): + def _rest_id_bound(self, layer_url, attribute, base_where, direction, attempts=5): clause = f"{attribute}>-1" - response = requests.get( - layer_url, - { - "f": "json", - "where": f"{clause} AND ({base_where})" if base_where else clause, - "outFields": attribute, - "returnGeometry": "false", - "orderByFields": f"{attribute} {direction}", - "resultRecordCount": 1, - }, - ).json() - return int(next(iter(response["features"][0]["attributes"].values()))) + params = { + "f": "json", + "where": f"{clause} AND ({base_where})" if base_where else clause, + "outFields": attribute, + "returnGeometry": "false", + "orderByFields": f"{attribute} {direction}", + "resultRecordCount": 1, + } + # This is the one sorted query left, and it is the one a tired server + # gives up on: the Balearic proxy answers two in three with a 502. The + # pages themselves are range queries and do not need this. + for attempt in range(attempts): + try: + response = requests.get(layer_url, params).json() + return int(next(iter(response["features"][0]["attributes"].values()))) + except Exception: + if attempt == attempts - 1: + raise + time.sleep(2**attempt) def _window_from_legacy_cache(self, cache_fs, cache_folder, layer_id, lo, hi, page_size): """Pages cached by the old sorted paging are keyed by the previous page's diff --git a/tests/test_converter_rest.py b/tests/test_converter_rest.py index 6f632a59..7b272b72 100644 --- a/tests/test_converter_rest.py +++ b/tests/test_converter_rest.py @@ -9,7 +9,9 @@ import json import os +import geopandas as gpd import pytest +from shapely.geometry import Point from fiboa_cli.conversion.converter_rest import EsriRESTConverterMixin from fiboa_cli.conversion.fiboa_converter import FiboaBaseConverter @@ -130,6 +132,30 @@ def test_qualified_key_field_is_discovered(monkeypatch, tmp_path): assert all(page.startswith("RECINTOS.OBJECTID%3E") for page in fake.pages) +def test_qualified_fields_lose_their_table_prefix(monkeypatch, tmp_path): + """A joined layer qualifies every field, so `columns` would match nothing.""" + fake = FakeService(key="RECINTOS.OBJECTID") + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.requests.get", fake.get) + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.stream_file", fake.stream) + + pages = _read(RESTConverter(), tmp_path) + + assert all("OBJECTID" in data.columns for data, *_ in pages) + assert not any("." in column for data, *_ in pages for column in data.columns) + + +def test_an_unqualified_field_wins_over_a_qualified_one(): + """The geometry table leads, so its plain name is not overwritten.""" + gdf = gpd.GeoDataFrame( + {"OBJECTID": [1], "ATTR.OBJECTID": [9], "ATTR.USO": ["TA"]}, + geometry=[Point(0, 0)], + ) + out = EsriRESTConverterMixin._unqualify(gdf) + + assert out["OBJECTID"].tolist() == [1] + assert out["USO"].tolist() == ["TA"] + + def test_error_response_is_not_kept_as_a_page(service, tmp_path, monkeypatch): def error_page(_source_fs, url, file): file.write(b'{"error":{"code":500,"message":"Internal error"}}') @@ -207,6 +233,50 @@ class NoURL(EsriRESTConverterMixin, FiboaBaseConverter): NoURL().get_urls() +def test_a_variant_may_name_its_own_service(): + """An edition can live in a service of its own (es_ib's historic layers).""" + other = "https://example.test/arcgis/rest/services/HISTORIC/MapServer" + + class TwoServices(RESTConverter): + variants = {"2026": BASE_URL, "2024": other} + + assert TwoServices().get_urls() == {"REST": BASE_URL} # the first variant + converter = TwoServices() + converter.variant = "2024" + assert converter.get_urls() == {"REST": other} + + +def test_a_variant_that_is_not_a_url_leaves_the_base_url_alone(): + class Years(RESTConverter): + variants = {"2024": "2024"} + + converter = Years() + converter.variant = "2024" + assert converter.get_urls() == {"REST": BASE_URL} + + +def test_id_bound_is_retried(monkeypatch): + """The one sorted query left is the one a tired server gives up on.""" + + class Answer: + def json(self): + return {"features": [{"attributes": {"OBJECTID": 7}}]} + + answers = [RuntimeError("502"), Answer()] + + def get(url, params=None, **kwargs): + answer = answers.pop(0) + if isinstance(answer, Exception): + raise answer + return answer + + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.requests.get", get) + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.time.sleep", lambda _s: None) + + assert RESTConverter()._rest_id_bound("url", "OBJECTID", None, "ASC") == 7 + assert answers == [] + + def test_download_files_passes_the_rest_url_through(tmp_path): converter = RESTConverter() assert converter.download_files({"REST": BASE_URL}, str(tmp_path)) == [BASE_URL] From a5af7d0c1b1f7da0a65797e4a71e8305e3417ae1 Mon Sep 17 00:00:00 2001 From: Ivor Bosloper Date: Fri, 11 Sep 2026 21:33:39 +0200 Subject: [PATCH 04/11] ES-CB: editions 2010-2025, and Cantabria's actual licence MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The converter published one edition under a licence Cantabria does not use. It claimed CC-BY-NC-4.0, justified by comments pointing at caib.es — the Balearic Islands, a copy-paste from the es_ib converter. Cantabria licenses its cartography under Decreto 87/2013 (modified by Decreto 102/2018), which defines two licences of its own, both free of charge: a non-commercial one and a commercial one, the latter needed only for reselling the data. So both the Creative Commons label and the NC restriction were wrong. The attribution is now the wording the licence prescribes, verbatim in Spanish, and the province is named as the provider — the field was empty, so the collection had no producer at all. On the data: the service serves SIGPAC layers from 2010, and the 2025 layers appeared while this was being worked on. Editions 2010-2014 are joined layers whose fields arrive table-qualified (SIGPAC_2014_RECFE_ETRS89.PROVINCIA), so the prefixes are stripped, first occurrence winning because the geometry table leads. Each edition's determination date comes from its variant year, where it used to be an empty string that broke the STAC temporal extent. Sixteen editions are built and published, ~600k filtered fields each. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01DVx9uQV2QPM8ecPAY3ZjXG --- CHANGELOG.md | 1 + fiboa_cli/datasets/es_cb.py | 22 ++++++++++++++-------- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6144163a..9aa5d460 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -109,6 +109,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - ES-MD: find RECINTO.shp wherever the archive puts it - REST converters: a variant may name its own service (es_ib keeps its yearly editions in a second one), the id-bound query is retried, and a joined layer's table prefixes are stripped for every converter - REST converters: page by id windows instead of server-side sorting, key cached pages by service as well as layer, discover the qualified key field on joined layers, and never keep an error response or a broken download as a cached page +- ES-CB: editions 2010-2025, Cantabria's own licence instead of CC-BY-NC, and the province named as provider - Update vecorel-cli to v0.2.17: - GeoJSON is read as UTF-8 as the format mandates, instead of the platform locale (cp1252 on Windows mangled umlauts) - GeoJSON files with a byte order mark no longer fail to read diff --git a/fiboa_cli/datasets/es_cb.py b/fiboa_cli/datasets/es_cb.py index 87cdf27f..cf988a34 100644 --- a/fiboa_cli/datasets/es_cb.py +++ b/fiboa_cli/datasets/es_cb.py @@ -9,14 +9,16 @@ class ESCBConverter(EsriRESTConverterMixin, ESBaseConverter): short_name = "Spain Cantabria" title = "Spain Cantabria Crop fields" description = "SIGPAC Crop fields of Spain - Cantabria" - # https://www.caib.es/sites/M170613081930629/f/463418 - # see https://intranet.caib.es/opendatacataleg/dataset/sigpac-2024/resource/3a0bc2e0-3f37-45b7-a7d4-1e8c7cf09bc8 - # "Our licenses allow the reproduction or redistribution of the licensed digital information to third parties. In such cases, it is essential that when redistributing or transferring the data to said third parties, they clearly and explicitly accept the conditions of our non-commercial use license." - license = "CC-BY-NC-4.0" # http://www.opendefinition.org/licenses/cc-by + # Not Creative Commons: Decreto 87/2013 (modified by 102/2018) defines two + # licences of its own, both free of charge, the commercial one needed only + # for reselling. The service names no licence, only the copyright holder. + # https://www.territoriodecantabria.es/cartografia-sig/descargas-y-politica-de-licencias/preguntas-frecuentes + license = "Licencia de uso de datos del Gobierno de Cantabria (Decreto 87/2013) " + # The wording the licence requires for original data, verbatim. attribution = ( - "©Government of Cantabria. Free information available at https://mapas.cantabria.es" + "© Gobierno de Cantabria. Información gratuita disponible en https://mapas.cantabria.es" ) - provider = "" + provider = "Gobierno de Cantabria " columns = { "DN_OID": "id", "geometry": "geometry", @@ -35,16 +37,20 @@ class ESCBConverter(EsriRESTConverterMixin, ESBaseConverter): } } - variants = {str(year): str(year) for year in range(2024, 2010 - 1, -1)} + variants = {str(year): str(year) for year in range(2025, 2010 - 1, -1)} use_code_attribute = "USO_SIGPAC" + use_variant_as_determination = True # "https://geoservicios.cantabria.es/inspire/rest/services/SIGPAC/MapServer?f=json" # "https://geoservicios.cantabria.es/inspire/rest/services/SIGPAC/MapServer/63/query?f=json&where=1%3D1&spatialRel=esriSpatialRelIntersects&geometry=%7B%22xmin%22%3A407913.2828037373%2C%22ymin%22%3A4804384.359524686%2C%22xmax%22%3A411054.4224193499%2C%22ymax%22%3A4805366.49482229%2C%22spatialReference%22%3A%7B%22wkid%22%3A25830%2C%22latestWkid%22%3A25830%7D%7D&geometryType=esriGeometryEnvelope&inSR=25830&outFields=OBJECTID%2CPROVINCIA%2CMUNICIPIO%2CAGREGADO%2CZONA%2CPOLIGONO%2CPARCELA%2CRECINTO%2CUSO_SIGPAC%2CSHAPE_Area&orderByFields=OBJECTID%20ASC&outSR=25830" + # 2010-2014 are joined layers, whose fields arrive table-qualified + # (SIGPAC_2014_ATRRE.USO_SIGPAC); the REST mixin strips the prefixes. rest_base_url = "https://geoservicios.cantabria.es/inspire/rest/services/SIGPAC/MapServer" # rest_params = {"where": "USO_SIGPAC NOT IN ('AG','CA','ED','FO','IM','IS','IV','TH','ZC','ZU','ZV','MT')"} def rest_layer_filter(self, layers): - self.column_additions["determination:datetime"] = "" + if not self.variant: + self.variant = next(iter(self.variants)) regex = re.compile("Recintos SIGPAC " + self.variant) return next(layer for layer in layers if regex.match(layer["name"])) From 4e3393aeec7a70dc003ad94308c118bcf754bf25 Mon Sep 17 00:00:00 2001 From: Ivor Bosloper Date: Fri, 11 Sep 2026 21:56:45 +0200 Subject: [PATCH 05/11] ES-IB: editions 2022-2026, from the two services that now hold them MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The yearly layers moved out of GOIB_SIGPAC_IB into GOIB_SIGPAC_HISTORIC_IB, which keeps 2022-2025; what is left in the first service is one current-state layer, ahead of the historic newest (maig against gener 2026). Each variant names the service it comes from. The years before 2022 are withdrawn. Both services join their parcels to the municipality and land-use tables, so their fields arrive table-qualified; the mixin strips that. The snapshot month they carry becomes determination:datetime through column_migrations — the current service writes "maig 2026", the historic ones "Febrer2024.0". `provider` also pointed at Navarra, a copy-paste between the Spanish converters. The converter had no test. It has one page of each service now, 100 features as the service answers them, so the qualified names and both spellings of the snapshot month are covered. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01DVx9uQV2QPM8ecPAY3ZjXG --- CHANGELOG.md | 1 + fiboa_cli/datasets/es_ib.py | 52 ++++++++++++++----- .../convert/es_ib/es_ib_2024.geojson | 1 + .../convert/es_ib/es_ib_2026.geojson | 1 + tests/test_convert.py | 6 +++ 5 files changed, 49 insertions(+), 12 deletions(-) create mode 100644 tests/data-files/convert/es_ib/es_ib_2024.geojson create mode 100644 tests/data-files/convert/es_ib/es_ib_2026.geojson diff --git a/CHANGELOG.md b/CHANGELOG.md index 9aa5d460..9dfbed21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -110,6 +110,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - REST converters: a variant may name its own service (es_ib keeps its yearly editions in a second one), the id-bound query is retried, and a joined layer's table prefixes are stripped for every converter - REST converters: page by id windows instead of server-side sorting, key cached pages by service as well as layer, discover the qualified key field on joined layers, and never keep an error response or a broken download as a cached page - ES-CB: editions 2010-2025, Cantabria's own licence instead of CC-BY-NC, and the province named as provider +- ES-IB: editions 2022-2026 (the yearly layers moved to the GOIB_SIGPAC_HISTORIC_IB service), the provider is the Balearic government, not Navarra's, and the joined field names are handled by the REST mixin - Update vecorel-cli to v0.2.17: - GeoJSON is read as UTF-8 as the format mandates, instead of the platform locale (cp1252 on Windows mangled umlauts) - GeoJSON files with a byte order mark no longer fail to read diff --git a/fiboa_cli/datasets/es_ib.py b/fiboa_cli/datasets/es_ib.py index 1062b0c3..98197166 100644 --- a/fiboa_cli/datasets/es_ib.py +++ b/fiboa_cli/datasets/es_ib.py @@ -5,6 +5,23 @@ from fiboa_cli.conversion.converter_rest import EsriRESTConverterMixin from fiboa_cli.datasets.es_base import ESBaseConverter +# The current snapshot lives in one service and the yearly ones in another. +CURRENT = "https://ideib.caib.es/geoserveis/rest/services/public/GOIB_SIGPAC_IB/MapServer" +HISTORIC = "https://ideib.caib.es/geoserveis/rest/services/public/GOIB_SIGPAC_HISTORIC_IB/MapServer" + +CATALAN_MONTHS = ( + "gener febrer març abril maig juny juliol agost setembre octubre novembre desembre".split() +) + + +def snapshot_date(catxe): + """The month the snapshot was taken: 'maig 2026' and 'Febrer2024.0' alike.""" + match = re.match(r"(\D+?)\s*(\d{4})", str(catxe).strip().lower()) + if not match or match.group(1) not in CATALAN_MONTHS: + return pd.NaT + month, year = match.groups() + return pd.Timestamp(year=int(year), month=CATALAN_MONTHS.index(month) + 1, day=1, tz="UTC") + class ESIBConverter(EsriRESTConverterMixin, ESBaseConverter): id = "es_ib" @@ -15,21 +32,19 @@ class ESIBConverter(EsriRESTConverterMixin, ESBaseConverter): # see https://intranet.caib.es/opendatacataleg/dataset/sigpac-2024/resource/3a0bc2e0-3f37-45b7-a7d4-1e8c7cf09bc8 license = "CC-BY-4.0" # http://www.opendefinition.org/licenses/cc-by attribution = "Govern de les Illes Balears" - provider = "Govern de les Illes Balears " + provider = "Govern de les Illes Balears " columns = { "DN_OID": "id", "geometry": "geometry", - "PROVINCIA": "admin_province_code", "MUNICIPIO": "admin_municipality_code", "DN_SURFACE": "metrics:area", "USO_SIGPAC": "crop:code", "crop:name": "crop:name", "crop:name_en": "crop:name_en", - "ANYS": "determination:datetime", - } - column_migrations = { - "ANYS": lambda col: pd.to_datetime(col, format="%Y"), + "Catxe": "determination:datetime", } + column_migrations = {"Catxe": lambda col: pd.to_datetime(col.map(snapshot_date), utc=True)} + column_additions = ESBaseConverter.column_additions | {"admin_province_code": "07"} area_is_in_ha = False missing_schemas = { "properties": { @@ -37,16 +52,29 @@ class ESIBConverter(EsriRESTConverterMixin, ESBaseConverter): "admin_municipality_code": {"type": "string"}, } } - - # See https://ideib.caib.es/geoserveis/rest/services/public/GOIB_SIGPAC_IB/MapServer/ for current years - variants = {str(year): str(year) for year in range(2024, 2010 - 1, -1)} use_code_attribute = "USO_SIGPAC" - rest_base_url = "https://ideib.caib.es/geoserveis/rest/services/public/GOIB_SIGPAC_IB/MapServer" + # The current service holds one layer, "Recintes SIGPAC màxima actualitat", + # which is ahead of the historic service's newest (maig against gener 2026). + # The historic service starts at 2022; the layers before it are withdrawn. + variants = { + "2026": CURRENT, + "2025": HISTORIC, + "2024": HISTORIC, + "2023": HISTORIC, + "2022": HISTORIC, + } + rest_base_url = CURRENT + # Both services join their parcels to the municipality and land-use tables, + # so their fields arrive table-qualified; the REST mixin strips the prefixes. rest_params = { "where": "USO_SIGPAC NOT IN ('AG','CA','ED','FO','IM','IS','IV','TH','ZC','ZU','ZV','MT')" } def rest_layer_filter(self, layers): - regex = re.compile("SIGPAC .* " + self.variant) - return next(layer for layer in layers if regex.match(layer["name"])) + if not self.variant: + self.variant = next(iter(self.variants)) + if self.variants[self.variant] == CURRENT: + return next(layer for layer in layers if "SIGPAC" in layer["name"].upper()) + # "Recintes SIGPAC Illes Balears Febrer 2024", and a group layer above them + return next(layer for layer in layers if layer["name"].strip().endswith(self.variant)) diff --git a/tests/data-files/convert/es_ib/es_ib_2024.geojson b/tests/data-files/convert/es_ib/es_ib_2024.geojson new file mode 100644 index 00000000..c53ab84f --- /dev/null +++ b/tests/data-files/convert/es_ib/es_ib_2024.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"EPSG:25831"}},"features":[{"type":"Feature","id":20268944,"geometry":{"type":"Polygon","coordinates":[[[522800.79090000037,4382151.6231999993],[522807.63599999994,4382154.0342999995],[522804.11330000032,4382159.8750999998],[522804.31340000033,4382160.3781000003],[522798.2751000002,4382157.7554000001],[522800.79090000037,4382151.6231999993]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268944,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":595837576,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":46.06041372717317,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":27.830917244070434,"COD_Municipis.NOM":"Manacor","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":33,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":6,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":536,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":51,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":68,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268945,"geometry":{"type":"Polygon","coordinates":[[[521076.38659999985,4381185.5183000006],[521081.21009999979,4381187.9688000008],[521078.09590000007,4381194.8443],[521073.02759999968,4381192.3931000009],[521076.38659999985,4381185.5183000006]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268945,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":595841429,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":41.936231008750546,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":26.239602820826093,"COD_Municipis.NOM":"Manacor","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":33,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":7,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":287,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":4,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":139,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":26,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268946,"geometry":{"type":"Polygon","coordinates":[[[531011.75019999966,4378764.0884000007],[531083.19269999955,4378941.6392999999],[531083.53500000015,4378942.4593000002],[531072.52020000014,4378947.2522999998],[531061.51360000018,4378951.7754999995],[531050.73849999998,4378956.0670999996],[531007.60419999994,4378849.4239000008],[531022.94639999978,4378842.9551999997],[531018.0131000001,4378832.4326000009],[531003.27670000028,4378838.6524999999],[530995.51250000019,4378819.4484000001],[531010.56390000042,4378813.6483999994],[530994.09350000042,4378771.3013000004],[531011.75019999966,4378764.0884000007]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268946,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1010587324,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":5930.2372570854322,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":488.44278316519467,"COD_Municipis.NOM":"Manacor","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":33,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":14,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":68,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":4,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":16,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":69,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268947,"geometry":{"type":"Polygon","coordinates":[[[528617.69089999981,4379130.0490000006],[528622.83059999999,4379134.3380999994],[528619.32490000036,4379137.9438000005],[528615.1297000004,4379135.2862999998],[528617.69089999981,4379130.0490000006]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268947,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":595846656,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":31.173027138907717,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":22.519280817308456,"COD_Municipis.NOM":"Manacor","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":33,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":15,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":50,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":76,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":8,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268948,"geometry":{"type":"Polygon","coordinates":[[[517912.44820000045,4372765.9724000003],[517917.36199999973,4372766.3838],[517918.50650000013,4372770.0609000009],[517917.5895999996,4372770.7937000003],[517914.97740000021,4372772.3132000007],[517913.69159999955,4372773.5940000005],[517913.13989999983,4372775.3416000009],[517915.29540000018,4372775.0209999997],[517919.43039999995,4372772.5375999995],[517920.48099999968,4372773.1819000002],[517922.77749999985,4372774.2383999992],[517926.31269999966,4372772.4513000008],[517927.89900000021,4372775.1992000006],[517903.89940000046,4372782.3248999994],[517902.90199999977,4372780.4806999993],[517903.12820000015,4372776.2113000005],[517906.0262000002,4372772.6272999998],[517907.26549999975,4372769.6440999992],[517911.30020000041,4372766.9372000005],[517912.44820000045,4372765.9724000003]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268948,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":595855859,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":191.83744588390641,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":80.127331905004098,"COD_Municipis.NOM":"Manacor","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":33,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":23,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":446,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":4,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":291,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":0,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"46","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268949,"geometry":{"type":"Polygon","coordinates":[[[515767.30300000031,4376908.9068999998],[515777.09059999976,4376909.2433000002],[515777.97140000015,4376911.7381999996],[515779.65539999958,4376912.4113999996],[515782.02280000038,4376913.4954000004],[515781.81730000023,4376918.8998000007],[515779.65890000015,4376921.2581999991],[515777.63179999962,4376922.8076000009],[515776.28060000017,4376931.9956999999],[515773.04200000037,4376934.2215999998],[515765.14159999974,4376933.8798999991],[515763.24830000009,4376933.4109000005],[515763.11649999954,4376930.9176000003],[515762.43709999975,4376928.5533000007],[515761.89979999978,4376927.1289000008],[515761.56460000016,4376925.5095000006],[515760.75140000042,4376925.1730000004],[515761.5597000001,4376913.8347999994],[515763.78699999955,4376913.0208000001],[515766.49170000013,4376911.1285999995],[515767.30300000031,4376908.9068999998]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268949,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":595862401,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":401.60366821177371,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":79.505613846213038,"COD_Municipis.NOM":"Manacor","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":33,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":24,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":463,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":41,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":8,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268950,"geometry":{"type":"Polygon","coordinates":[[[516866.86199999973,4380086.5488000009],[516879.88760000002,4380102.2523999996],[516860.07249999978,4380116.2836000007],[516847.32770000026,4380100.5527999997],[516861.00600000005,4380091.0756000001],[516866.86199999973,4380086.5488000009]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268950,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":595882140,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":486.64074286360085,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":88.970677622851895,"COD_Municipis.NOM":"Manacor","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":33,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":26,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":332,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":69,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":45,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268951,"geometry":{"type":"Polygon","coordinates":[[[515662.54389999993,4381929.3717999998],[515664.38109999988,4381932.0919000003],[515687.73950000014,4381966.7358999997],[515685.09240000043,4381969.4282000009],[515676.08440000005,4381967.6238000002],[515662.08059999999,4381973.0743000004],[515644.10919999983,4381940.4879000001],[515662.54389999993,4381929.3717999998]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268951,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":595886122,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":948.47986047081156,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":131.79560547617763,"COD_Municipis.NOM":"Manacor","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":33,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":27,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":235,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":50,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":61,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268952,"geometry":{"type":"Polygon","coordinates":[[[514544.37799999956,4381026.8267000001],[514600.20139999967,4381066.0875000004],[514567.9282999998,4381108.7529000007],[514511.55030000024,4381069.6960000005],[514544.37799999956,4381026.8267000001]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268952,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":595885207,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":3673.9166043934224,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":244.32367237018167,"COD_Municipis.NOM":"Manacor","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":33,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":27,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":883,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":30,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":100,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":20,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"221","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268953,"geometry":{"type":"Polygon","coordinates":[[[521161.30979999993,4377180.3104999997],[521193.22929999977,4377206.9572000001],[521178.29879999999,4377220.1350999996],[521149.41909999959,4377193.3014000002],[521153.03199999966,4377189.0507999994],[521161.30979999993,4377180.3104999997]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268953,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":595890933,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":758.16777310480643,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":118.5328139588224,"COD_Municipis.NOM":"Manacor","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":33,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":29,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":837,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":160,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":42,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268954,"geometry":{"type":"Polygon","coordinates":[[[517172.44969999976,4376421.7632999998],[517200.00760000013,4376422.1225000005],[517199.64960000012,4376434.0569000002],[517199.79480000027,4376433.5642000008],[517200.49940000009,4376437.3797999993],[517173.86309999973,4376437.1714999992],[517171.03679999989,4376435.193],[517172.44969999976,4376421.7632999998]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268954,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":595900362,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":430.36445709801637,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":87.484775647427369,"COD_Municipis.NOM":"Manacor","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":33,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":34,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":349,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":23,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":1,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268955,"geometry":{"type":"Polygon","coordinates":[[[497667.60520000011,4379174.6367000006],[497667.92239999957,4379176.1436000001],[497669.95249999966,4379174.8035000004],[497678.15890000015,4379168.5777000003],[497683.17640000023,4379164.9482000005],[497686.8925999999,4379167.7844999991],[497686.36000000034,4379168.3986000009],[497669.2050999999,4379179.4456999991],[497671.27259999979,4379182.8311000001],[497659.84109999985,4379190.9649],[497654.56180000026,4379185.7291000001],[497653.89199999999,4379185.4130000006],[497641.38779999968,4379193.6773000006],[497652.50239999965,4379185.6552000009],[497667.60520000011,4379174.6367000006]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268955,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051711365,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":219.32736636646138,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":119.92088510702739,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":1,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":61,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":45,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":59,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"195,199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268956,"geometry":{"type":"Polygon","coordinates":[[[497738.18130000029,4379147.909],[497723.58069999982,4379134.7581999991],[497741.66760000028,4379128.1681999993],[497742.07120000012,4379129.4239000008],[497742.15039999969,4379129.3958999999],[497742.84260000009,4379132.5212999992],[497739.55979999993,4379134.3083999995],[497746.58239999972,4379142.5391000006],[497738.18130000029,4379147.909]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268956,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051711374,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":218.83468435216201,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":68.032079478539657,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":1,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":66,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":59,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":100,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":77,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268957,"geometry":{"type":"Polygon","coordinates":[[[498322.58889999986,4378872.4499999993],[498314.4160000002,4378871.1772000007],[498317.67530000024,4378859.4088000003],[498328.96609999985,4378860.9973000009],[498322.58889999986,4378872.4499999993]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268957,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051711522,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":119.88496106004462,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":44.993276808942163,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":1,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":105,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":32,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":55,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268958,"geometry":{"type":"Polygon","coordinates":[[[498243.01900000032,4379328.1041999999],[498243.17729999963,4379327.9180999994],[498242.46430000011,4379326.9415000007],[498242.41380000021,4379326.2995999996],[498239.78479999956,4379322.2815000005],[498239.51809999999,4379320.7745999992],[498240,4379318.6348000001],[498242.33249999955,4379317.0808000006],[498245.28490000032,4379318.9593000002],[498246.16380000021,4379321.0150000006],[498247.37380000018,4379322.5495999996],[498247.64020000026,4379322.7914000005],[498247.96439999994,4379323.3029999994],[498248.30269999988,4379323.0797000006],[498250.50590000022,4379323.0885000005],[498250.50590000022,4379322.7907999996],[498250.98770000041,4379320.2697000001],[498253.32010000013,4379318.2598999999],[498254.65930000041,4379318.0176999997],[498256.21470000036,4379318.9570000004],[498258.49010000005,4379319.8959999997],[498259.08079999965,4379321.2354000006],[498258.4907999998,4379322.9192999993],[498258.49110000022,4379324.2869000006],[498258.16729999986,4379325.2265000008],[498258.64269999973,4379325.7566],[498261.17750000022,4379327.6631000005],[498257.45669999998,4379334.8267999999],[498252.47369999997,4379332.6975999996],[498253.38019999955,4379329.5717999991],[498255.95820000023,4379331.0689000003],[498257.26070000045,4379327.6824999992],[498256.98680000007,4379326.6220999993],[498256.25219999999,4379325.8315999992],[498253.89039999992,4379324.8925000001],[498250.32629999984,4379324.8467999995],[498247.00019999966,4379326.3171999995],[498244.55999999959,4379329.1830000002],[498243.01900000032,4379328.1041999999]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268958,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051717585,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":154.11307227437953,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":86.6823928484703,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":1,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":12,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":126,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":42,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268959,"geometry":{"type":"Polygon","coordinates":[[[498165.60680000018,4377408.0921999998],[498167.3925999999,4377406.9569000006],[498168.96949999966,4377405.5053000003],[498172.27450000029,4377402.6765999999],[498175.63729999959,4377400.6107000001],[498177.96339999977,4377400.2380999997],[498181.00989999995,4377400.6931999996],[498183.12040000036,4377401.9857999999],[498206.59210000001,4377435.5348000005],[498197.19519999996,4377442.3834000006],[498192.51489999983,4377446.1706000008],[498192.32050000038,4377446.3846000005],[498165.60680000018,4377408.0921999998]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268959,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051712885,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":822.07750131342459,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":126.03896029798129,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":2,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":505,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":35,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":99,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268960,"geometry":{"type":"Polygon","coordinates":[[[497294.51180000044,4379036.9461000003],[497317.21160000004,4379069.2368999999],[497323.27730000019,4379077.8583000004],[497288.70969999954,4379101.8796999995],[497277.64389999956,4379084.5713999998],[497261.06020000018,4379060.6788999997],[497294.51180000044,4379036.9461000003]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268960,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051711773,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":2058.4229418221139,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":182.74948068730123,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":2,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":24,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":46,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":94,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"116","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268961,"geometry":{"type":"Polygon","coordinates":[[[499270.74280000012,4377036.7529000007],[499269.29499999993,4377035.2553000003],[499267.0120000001,4377036.2881000005],[499260.01979999989,4377048.9771999996],[499256.71470000036,4377055.9171999991],[499257.32710000034,4377058.9962000009],[499240.32180000003,4377050.6254999992],[499257.51140000019,4377028.2236000001],[499271.52049999963,4377034.8366],[499270.74280000012,4377036.7529000007]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268961,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051712963,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":410.55763922094297,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":94.653527249251511,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":2,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":563,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":14,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":88,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268962,"geometry":{"type":"Polygon","coordinates":[[[498825.28479999956,4377052.8118999992],[498791.25129999965,4377080.9382000007],[498790.7106999997,4377077.6359000001],[498790.5521999998,4377077.5241999999],[498788.92410000041,4377075.2454000004],[498787.19519999996,4377072.7061000001],[498785.1643000003,4377073.2272999994],[498778.17449999973,4377050.6139000002],[498797.02699999977,4377031.2993000001],[498825.28479999956,4377052.8118999992]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268962,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051713038,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1203.8807235306156,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":141.83530416180818,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":2,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":608,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":4,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":19,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":5,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268963,"geometry":{"type":"Polygon","coordinates":[[[497319.45349999983,4378267.5778000001],[497326.58710000012,4378278.8999000005],[497242.38329999987,4378322.6795000006],[497238.16050000023,4378311.8277000003],[497313.41380000021,4378270.1093000006],[497314.9693,4378272.8879000004],[497318.81859999988,4378270.7875999995],[497317.4693,4378268.5683999993],[497319.45349999983,4378267.5778000001]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268963,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051712160,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1185.0875877388576,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":218.35924530467148,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":2,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":136,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":61,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":78,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"117,199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":7,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268964,"geometry":{"type":"Polygon","coordinates":[[[497353.91490000021,4378362.4312999994],[497373.20390000008,4378397.5215000007],[497372.96999999974,4378397.6383999996],[497343.76219999976,4378412.2413999997],[497343.25030000042,4378411.6966999993],[497335.40940000024,4378415.1059000008],[497320.29590000026,4378422.3786999993],[497321.01779999956,4378423.6164999995],[497320.70849999972,4378423.7712999992],[497309.64250000007,4378429.3005999997],[497296.96239999961,4378410.9604000002],[497288.12949999981,4378398.1909999996],[497283.09339999966,4378390.7785999998],[497280.73739999998,4378387.3189000003],[497353.91490000021,4378362.4312999994]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268964,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051713109,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":3289.4699601571633,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":241.44232155485554,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":2,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":667,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":67,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":90,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"74,75","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268965,"geometry":{"type":"Polygon","coordinates":[[[497781.7463999996,4378511.7535999995],[497780.04760000017,4378514.0331999995],[497776.03830000013,4378519.3925000001],[497774.73539999966,4378521.1324000005],[497767.87170000002,4378516.6132999994],[497774.24139999971,4378506.2392999995],[497781.7463999996,4378511.7535999995]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268965,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051712284,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":104.54718916458565,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":41.413976618913047,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":2,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":168,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":14,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":32,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268966,"geometry":{"type":"Polygon","coordinates":[[[498600.69379999954,4376472.5578000005],[498595.61670000013,4376450.3285000008],[498599.74799999967,4376449.9356999993],[498600.94079999998,4376453.5135999992],[498606.38949999958,4376471.7083999999],[498600.69379999954,4376472.5578000005]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268966,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1265612531,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":112.84507653810184,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":55.474932897508729,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":3,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":263,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":47,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":51,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"AG","COD_USOS_SIGPAC.Descripción":"CORRIENTES Y SUPERFICIES DE AGUA","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"74","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":1,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268967,"geometry":{"type":"Polygon","coordinates":[[[499089.46669999976,4376103.5504999999],[499068.74500000011,4376118.3624000009],[499067.12390000001,4376114.8648000006],[499073.33229999989,4376108.4919000007],[499085.79989999998,4376100.2113000005],[499090.3518000003,4376095.9317000005],[499094.45010000002,4376093.2056000009],[499099.34800000023,4376091.2144000009],[499101.48790000007,4376095.7072000001],[499095.16390000004,4376099.4660999998],[499089.46669999976,4376103.5504999999]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268967,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051713595,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":203.72781422667026,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":88.99057397247519,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":3,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":215,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":173,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":2,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268968,"geometry":{"type":"Polygon","coordinates":[[[499307.28890000004,4376334.9198000003],[499240.31469999999,4376389.7841999996],[499229.81879999954,4376377.5801999997],[499224.2648,4376372.0457000006],[499222.79509999976,4376369.1154999994],[499223.20569999982,4376368.7433000002],[499223.47190000024,4376365.8501999993],[499224.55209999997,4376363.2640000004],[499229.57189999986,4376358.2402999997],[499246.20220000017,4376344.3314999994],[499251.58229999989,4376340.6008000001],[499254.44890000019,4376338.4516000003],[499256.60259999987,4376338.0978999995],[499261.1185999997,4376335.8741999995],[499265.92250000034,4376330.9993999992],[499271.15859999973,4376326.3289999999],[499273.4561999999,4376324.8311000001],[499273.56410000008,4376324.4658000004],[499277.11870000046,4376321.8465999998],[499282.42839999963,4376321.4673999995],[499305.18429999985,4376331.7075999994],[499307.28890000004,4376334.9198000003]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268968,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1242534236,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":2463.9001835506783,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":221.69986658178476,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":3,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":199,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":50,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":93,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268969,"geometry":{"type":"Polygon","coordinates":[[[496998.35639999993,4379283.8198000006],[497002.27890000027,4379279.9206000008],[497009.40259999968,4379287.0156999994],[497004.83930000011,4379290.9710000008],[496998.35639999993,4379283.8198000006]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268969,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051714063,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":56.941543580779978,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":31.276383889619694,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":4,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":67,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":45,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":5,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"ED","COD_USOS_SIGPAC.Descripción":"EDIFICACIONES","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268970,"geometry":{"type":"Polygon","coordinates":[[[496537.72809999995,4380684.5869999994],[496625.49480000045,4380746.8763999995],[496614.82519999985,4380760.8998000007],[496531.01900000032,4380700.9624000005],[496536.54889999982,4380687.6945999991],[496537.72809999995,4380684.5869999994]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268970,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051714371,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1834.1690789060408,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":245.9767359034563,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":4,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":296,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":9,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":98,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268971,"geometry":{"type":"Polygon","coordinates":[[[497883.6643000003,4379832.7124000005],[497889.07569999993,4379822.9991999995],[497893.99120000005,4379816.1140000001],[497896.11830000021,4379827.9926999994],[497894.49409999978,4379838.4399999995],[497892.17690000031,4379842.1523000002],[497884.43599999975,4379837.6331999991],[497883.6643000003,4379832.7124000005]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268971,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051714487,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":189.49344003497941,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":60.539613163134774,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":5,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":28,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":5,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":87,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":19,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268972,"geometry":{"type":"Polygon","coordinates":[[[497853.67289999966,4379866.3397000004],[497859.01250000019,4379857.4356999993],[497864.81639999989,4379861.0714999996],[497859.40469999984,4379869.7800999992],[497853.67289999966,4379866.3397000004]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268972,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051714486,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":69.812957798102786,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":34.169143707105789,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":5,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":28,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":4,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":38,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":0,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"ED","COD_USOS_SIGPAC.Descripción":"EDIFICACIONES","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268973,"geometry":{"type":"Polygon","coordinates":[[[497909.80179999955,4379896.3815000001],[497907.36909999978,4379898.7821999993],[497904.61280000024,4379903.1735999994],[497896.72070000041,4379897.9103999995],[497898.49799999967,4379894.1611000001],[497896.5680999998,4379892.9149999991],[497894.84680000041,4379890.7665999997],[497896.89080000017,4379888.0219000001],[497906.88549999986,4379894.4937999994],[497909.80179999955,4379896.3815000001]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268973,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051714546,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":103.9795382102446,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":46.091368782752397,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":5,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":58,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":164,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":6,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268974,"geometry":{"type":"Polygon","coordinates":[[[497889.07890000008,4379913.3267000001],[497885.63269999996,4379921.6068999991],[497880.87330000009,4379919.7940999996],[497882.00270000007,4379916.2310000006],[497879.23780000024,4379915.3944000006],[497880.96389999986,4379909.1148000006],[497889.07890000008,4379913.3267000001]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268974,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051714544,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":69.88430408616199,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":36.343590944464125,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":5,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":57,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":143,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":37,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"ED","COD_USOS_SIGPAC.Descripción":"EDIFICACIONES","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268975,"geometry":{"type":"Polygon","coordinates":[[[498070.04739999957,4380317.6071000006],[498065.93659999967,4380317.3662],[498061.09889999963,4380317.4883999992],[498035.35300000012,4380282.9449000005],[498041.57909999974,4380278.3386000004],[498051.77660000045,4380291.7597000003],[498056.78149999958,4380297.7215],[498070.04739999957,4380317.6071000006]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268975,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051714666,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":359.40627477728373,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":108.32865890554925,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":5,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":139,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":27,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":32,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268976,"geometry":{"type":"Polygon","coordinates":[[[498269.87359999958,4380153.3911000006],[498264.95839999989,4380161.7737000007],[498252.83930000011,4380150.0272000004],[498255.06309999991,4380146.6686000004],[498259.64989999961,4380150.1467000004],[498260.79409999959,4380148.0720000006],[498269.87359999958,4380153.3911000006]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268976,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051714768,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":114.13207761124657,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":49.271611836745095,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":5,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":209,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":4,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":87,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":24,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"ED","COD_USOS_SIGPAC.Descripción":"EDIFICACIONES","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268977,"geometry":{"type":"Polygon","coordinates":[[[495748.82459999993,4381525.5187999997],[495758.74700000044,4381518.0620000008],[495763.83380000014,4381527.1570999995],[495753.98249999993,4381532.9113999996],[495748.82459999993,4381525.5187999997]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268977,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051714821,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":115.34148683501138,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":43.255825076813458,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":6,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":1,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":4,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":24,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":24,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"ED","COD_USOS_SIGPAC.Descripción":"EDIFICACIONES","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268978,"geometry":{"type":"Polygon","coordinates":[[[496461.24370000046,4381001.9306000005],[496449.44340000022,4381013.4989],[496388.17800000031,4380954.7623999994],[496399.41089999955,4380945.9943000004],[496401.67750000022,4380944.0862000007],[496404.52249999996,4380947.4897000007],[496407.44680000003,4380950.9860999994],[496461.24370000046,4381001.9306000005]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268978,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051714863,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1369.9038999903478,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":201.69533969975984,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":6,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":31,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":8,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":100,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268979,"geometry":{"type":"Polygon","coordinates":[[[497217.75079999957,4380707.5025999993],[497216.70040000044,4380709.2333000004],[497213.40500000026,4380713.6995999999],[497165.09839999955,4380686.8973999992],[497163.95849999972,4380680.2465000004],[497163.16629999969,4380679.3443999998],[497164.68530000001,4380679.5299999993],[497165.16019999981,4380678.8413999993],[497164.79260000028,4380677.5019000005],[497163.71219999995,4380676.0603999998],[497163.7117999997,4380674.8604000006],[497164.68310000002,4380673.5297999997],[497167.78490000032,4380671.1938000005],[497168.51889999956,4380670.4027999993],[497210.95739999972,4380693.9326000009],[497219.90739999991,4380699.2690999992],[497219.31039999984,4380700.5344999991],[497219.38239999954,4380700.5716999993],[497216.12349999975,4380706.4428000003],[497217.75079999957,4380707.5025999993]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268979,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051715093,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":953.67401291439819,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":153.2164319515401,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":6,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":179,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":14,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":94,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268980,"geometry":{"type":"Polygon","coordinates":[[[498234.70940000005,4380209.9127999991],[498235.27240000013,4380210.3951999992],[498233.24260000046,4380212.4049999993],[498285.64300000016,4380263.3158999998],[498274.11280000024,4380276.0349000003],[498221.92769999988,4380222.0635000002],[498234.70940000005,4380209.9127999991]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268980,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051715355,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1192.1753809000456,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":186.53500240003029,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":7,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":10,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":14,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":95,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268981,"geometry":{"type":"Polygon","coordinates":[[[497995.63669999968,4380592.6455000006],[497993.88839999959,4380624.4419999998],[497988.20129999984,4380624.4433999993],[497967.05099999998,4380624.2440000009],[497967.29260000028,4380612.4111000001],[497968.61890000012,4380591.4615000002],[497995.63669999968,4380592.6455000006]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268981,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051715487,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":876.52405430216231,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":118.55368480498785,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":7,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":77,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":74,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":1,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268982,"geometry":{"type":"Polygon","coordinates":[[[497799.43609999958,4381781.1468000002],[497770.50700000022,4381879.9185000006],[497765.25239999965,4381878.7105999999],[497759.24179999996,4381876.7028999999],[497762.16739999969,4381863.1857999992],[497766.42360000033,4381845.6680999994],[497770.58669999987,4381830.0203000009],[497782.39439999964,4381790.7329999991],[497784.14890000038,4381784.3695999999],[497785.30700000003,4381781.6623],[497786.81089999992,4381780.1548999995],[497793.28890000004,4381780.1624999996],[497799.43609999958,4381781.1468000002]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268982,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051715872,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1368.4322859180145,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":228.1009227566295,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":7,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":267,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":71,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":84,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268983,"geometry":{"type":"Polygon","coordinates":[[[497925.0800999999,4380698.4145999998],[497926.05169999972,4380697.8468999993],[497926.55520000029,4380695.9583000001],[497939.40519999992,4380696.6712999996],[497941.08810000028,4380690.5592],[497962.51999999955,4380694.5537999999],[497962.07149999961,4380713.7822999991],[497929.75399999972,4380705.5019000005],[497925.0800999999,4380698.4145999998]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268983,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051715497,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":543.6343552764065,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":105.17521312787741,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":7,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":81,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":86,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":0,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268984,"geometry":{"type":"Polygon","coordinates":[[[498061.01750000007,4381571.4967],[498080.53519999981,4381528.5706999991],[498085.22169999965,4381530.6162],[498081.29349999968,4381538.5986000001],[498096.66260000039,4381544.5206000004],[498073.20239999983,4381596.3033000007],[498061.76389999967,4381592.2036000006],[498068.50420000032,4381574.8995999992],[498061.01750000007,4381571.4967]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268984,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051715655,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1096.8248252820897,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":173.42990103391156,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":7,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":180,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":97,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":47,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FS","COD_USOS_SIGPAC.Descripción":"FRUTAL DE CASCARA","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268985,"geometry":{"type":"Polygon","coordinates":[[[498195.3208999997,4381651.4572000001],[498196.45749999955,4381648.6568999998],[498199.48739999998,4381646.5352999996],[498200.99880000018,4381646.1535999998],[498204.18730000034,4381645.0923999995],[498205.17300000042,4381643.3526000008],[498206.30319999997,4381643.8826000001],[498207.21779999975,4381646.0033],[498209.11099999957,4381646.6912999991],[498212.74610000011,4381647.0625999998],[498215.55360000022,4381648.6620000005],[498216.91449999996,4381650.9315000009],[498216.54069999978,4381653.0525000002],[498214.26680000033,4381656.3089000005],[498210.09279999975,4381659.4912],[498207.06269999966,4381660.7105],[498204.18360000011,4381660.9343999997],[498201.3833999997,4381659.4931000005],[498199.10850000009,4381658.0516999997],[498197.21520000044,4381656.9916999992],[498195.84729999956,4381655.5502000004],[498195.3208999997,4381651.4572000001]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268985,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051715819,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":248.12788576500554,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":60.397930511417385,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":7,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":239,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":102,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":27,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":12,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268986,"geometry":{"type":"Polygon","coordinates":[[[497710.87569999974,4382167.1055999994],[497711.77680000011,4382165.6678999998],[497747.15000000037,4382183.3605000004],[497759.68950000033,4382188.9662999995],[497806.18319999985,4382209.7630000003],[497835.71760000009,4382222.6389000006],[497836.30099999998,4382224.0806000009],[497837.28619999997,4382228.0443999991],[497832.21439999994,4382223.1908],[497815.3964999998,4382216.4085000008],[497791.46329999994,4382206.3964000009],[497763.64910000004,4382193.4776000008],[497744.5672000004,4382184.1115000006],[497729.04289999977,4382176.3602000009],[497718.37009999994,4382172.8076000009],[497710.87569999974,4382167.1055999994]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268986,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1255441982,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":334.05314860695285,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":284.81411082468509,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":8,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":224,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":128,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":50,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"74","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":1,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268987,"geometry":{"type":"Polygon","coordinates":[[[497754.49189999979,4382484.0945999995],[497754.10539999977,4382484.1642000005],[497703.75260000024,4382493.2363000009],[497690.81500000041,4382478.2909999993],[497748.33079999965,4382468.1686000004],[497757.8284,4382472.1976999994],[497757.18149999995,4382475.7502999995],[497754.49189999979,4382484.0945999995]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268987,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051716920,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":992.76554799800374,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":152.41801873025423,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":8,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":204,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":126,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":98,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"192","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":7,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268988,"geometry":{"type":"Polygon","coordinates":[[[497599.14759999979,4382531.8661000002],[497598.94519999996,4382531.5836999994],[497593.62799999956,4382536.1249000002],[497596.7023,4382540.0961000007],[497587.39159999974,4382547.5873000007],[497584.25250000041,4382543.9137999993],[497588.5625,4382540.2101000007],[497584.61689999979,4382535.0670999996],[497599.10049999971,4382521.1928000003],[497601.37229999993,4382512.8291999996],[497601.31469999999,4382512.7547999993],[497601.45120000001,4382512.2710999995],[497609.90899999999,4382522.7138],[497599.14759999979,4382531.8661000002]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268988,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051716932,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":286.99026658007949,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":98.194301855128231,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":8,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":208,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":73,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":84,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"74","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268989,"geometry":{"type":"Polygon","coordinates":[[[498120.13860000018,4382508.4309],[498117.01669999957,4382484.6638999991],[498124.20239999983,4382466.5318999998],[498125.84949999955,4382462.2523999996],[498126.22410000023,4382463.7127999999],[498126.87999999989,4382467.5079999994],[498127.54289999977,4382470.9777000006],[498127.54389999993,4382475.1079999991],[498127.37920000032,4382478.9034000002],[498128.20069999993,4382483.1916000005],[498130.02309999987,4382489.6284999996],[498146.20430000033,4382529.8204999994],[498130.60099999979,4382529.8241000008],[498120.13860000018,4382508.4309]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268989,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051717233,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":824.69521723160392,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":158.68232860889134,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":8,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":277,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":5,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":184,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":15,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268990,"geometry":{"type":"Polygon","coordinates":[[[498433.98269999959,4382507.5405000001],[498439.19199999981,4382536.6614999995],[498436.98959999997,4382536.1874000002],[498434.61780000012,4382535.6221999992],[498432.78579999972,4382523.9299999997],[498435.61770000029,4382523.5014999993],[498432.69990000036,4382507.8190000001],[498433.98269999959,4382507.5405000001]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268990,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1266895401,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":73.479514294004076,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":66.237580609157661,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":8,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":289,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":4,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":205,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":31,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"74","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268991,"geometry":{"type":"Polygon","coordinates":[[[495644.70129999984,4382788.6580999997],[495630.66739999969,4382802.4338000007],[495602.93059999961,4382842.4506000001],[495596.71679999959,4382824.7142999992],[495608.64529999997,4382804.1676000003],[495605.49670000002,4382810.7833999991],[495608.42679999955,4382812.3072999995],[495609.7209999999,4382810.2786999997],[495618.73489999957,4382815.9572000001],[495622.40909999982,4382809.5271000005],[495620.45779999997,4382807.9189999998],[495621.32070000004,4382806.6252999995],[495615.74120000005,4382803.4191999994],[495614.33880000003,4382805.2433000002],[495608.64529999997,4382804.1676000003],[495611.95270000026,4382798.3236999996],[495644.70129999984,4382788.6580999997]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268991,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051041761,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":687.09380563847253,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":201.47555436107123,"COD_Municipis.NOM":"Algaida","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":4,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":22,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":183,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":195,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":31,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268992,"geometry":{"type":"Polygon","coordinates":[[[496611.18090000004,4382884.7098999992],[496609.61170000024,4382883.7895999998],[496605.84310000017,4382889.6238000002],[496605.96480000019,4382888.1634],[496604.0131000001,4382884.8804000001],[496605.83739999961,4382876.3679000009],[496616.18450000044,4382855.2562000006],[496618.31350000016,4382852.2692000009],[496618.31190000009,4382848.5668000001],[496627.83249999955,4382846.8324999996],[496611.18090000004,4382884.7098999992]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268992,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051717165,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":315.6545680161758,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":104.6899745942501,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":8,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":255,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":6,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":340,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":41,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268993,"geometry":{"type":"Polygon","coordinates":[[[496881.2061999999,4383227.4024],[496882.9271999998,4383229.8716000002],[496866.13169999979,4383249.3367999997],[496847.30510000046,4383228.5330999997],[496862.75860000029,4383212.3219000008],[496880.96449999977,4383227.6823999994],[496881.2061999999,4383227.4024]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268993,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1255440405,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":662.40816215555719,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":103.36371164529531,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":8,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":105,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":5,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":16,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":45,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FS","COD_USOS_SIGPAC.Descripción":"FRUTAL DE CASCARA","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"74,75,199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268994,"geometry":{"type":"Polygon","coordinates":[[[497528.90160000045,4382873.5808000006],[497534.67190000042,4382868.9277999997],[497533.29849999957,4382872.7050000001],[497532.74519999977,4382875.3099000007],[497532.74590000045,4382877.8123000003],[497533.13580000028,4382881.6168000009],[497535.02440000046,4382891.7000999991],[497534.27099999972,4382898.6864],[497532.2564000003,4382900.6776999999],[497531.60879999958,4382900.6128000002],[497531.28450000007,4382899.3757000007],[497530.79430000018,4382896.8083999995],[497530.79800000042,4382885.2919999994],[497528.90160000045,4382873.5808000006]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268994,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051716674,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":100.78660440820538,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":68.463319624481286,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":8,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":145,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":188,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":1,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268995,"geometry":{"type":"Polygon","coordinates":[[[499094.92760000005,4380445.1557999998],[499092.69620000012,4380447.8352000006],[499087.36849999987,4380444.6449999996],[499073.33040000033,4380444.8976000007],[499072.38750000019,4380446.3768000007],[499071.13509999961,4380447.8281999994],[499067.87380000018,4380446.7215999998],[499067.1754999999,4380446.8611999992],[499065.13800000027,4380445.8288000003],[499062.65419999976,4380444.5638999995],[499065.08719999995,4380442.2660000008],[499067.31180000026,4380443.1029000003],[499071.69529999979,4380436.7766999993],[499074.96329999994,4380433.6506999992],[499075.17190000042,4380432.3297000006],[499061.40620000008,4380422.7310000006],[499061.4637000002,4380422.3030999992],[499070.64319999982,4380428.5720000006],[499094.04200000037,4380444.5513000004],[499094.92760000005,4380445.1557999998]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268995,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051717419,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":225.50434785061549,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":113.65156832916004,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":9,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":25,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":4,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":160,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":28,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268996,"geometry":{"type":"Polygon","coordinates":[[[499258.84570000041,4381240.8245000001],[499274.20079999976,4381253.4282000009],[499283.87600000016,4381261.3717999998],[499238.78259999957,4381299.8695999999],[499216.33320000023,4381319.0254999995],[499167.76410000026,4381360.4822000004],[499165.27300000004,4381355.1053999998],[499156.50380000006,4381338.3710999992],[499153.65979999956,4381332.2037000004],[499207.89350000024,4381285.0998],[499258.84570000041,4381240.8245000001]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268996,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051717567,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":4565.1924941595098,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":355.98797007005027,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":9,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":83,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":167,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":0,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268997,"geometry":{"type":"Polygon","coordinates":[[[499276.78679999989,4381516.0925999992],[499284.82789999992,4381526.6779999994],[499283.27329999954,4381528.5479000006],[499277.90319999959,4381523.5343999993],[499273.40469999984,4381527.2184999995],[499279.53789999988,4381533.5529999994],[499274.63719999976,4381545.5998999998],[499273.94620000012,4381546.5488000009],[499270.25339999981,4381543.591],[499245.29499999993,4381511.4346999992],[499245.45330000017,4381510.7091000006],[499245.04899999965,4381497.5275999997],[499248.01439999975,4381495.6390000004],[499250.67050000001,4381495.0248000007],[499253.22559999954,4381493.6942999996],[499254.65070000011,4381491.6478000004],[499261.39599999972,4381499.9263000004],[499263.85099999979,4381505.9075000007],[499274.68499999959,4381515.6184],[499276.78679999989,4381516.0925999992]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268997,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051718464,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":936.12988203022519,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":156.71449562833234,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":9,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":497,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":148,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":58,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268998,"geometry":{"type":"Polygon","coordinates":[[[499696.46480000019,4381423.7717000004],[499696.16970000044,4381424.8880000003],[499613.08880000003,4381417.9417000003],[499567.75480000023,4381413.7109999992],[499567.58179999981,4381408.0086000003],[499696.46480000019,4381423.7717000004]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268998,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051717653,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":457.72736691817369,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":265.60471879328639,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":9,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":107,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":155,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":54,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20268999,"geometry":{"type":"Polygon","coordinates":[[[499591.70660000015,4381493.0034999996],[499566.31170000043,4381488.6045999993],[499566.36909999978,4381485.4882999994],[499566.77159999963,4381473.2091000006],[499572.68840000033,4381474.1855999995],[499574.19330000039,4381482.2879000008],[499574.33739999961,4381486.0833000001],[499575.68360000011,4381488.7716000006],[499580.90220000036,4381490.1109999996],[499589.84949999955,4381492.0548],[499591.70660000015,4381493.0034999996]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20268999,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051717659,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":131.86827758111042,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":78.847197249541622,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":9,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":109,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":320,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":13,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269000,"geometry":{"type":"Polygon","coordinates":[[[499609.18340000045,4381489.8214999996],[499609.24100000039,4381492.5749999993],[499579.41210000031,4381488.0273000002],[499578.08700000029,4381475.0784000009],[499603.69799999986,4381479.3005999997],[499609.01740000024,4381482.0633000005],[499609.18340000045,4381489.8214999996]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269000,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051717660,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":376.04927210796006,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":85.65488016480009,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":9,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":109,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":191,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":0,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"194,199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269001,"geometry":{"type":"Polygon","coordinates":[[[499638.1409,4381484.9832000006],[499637.73060000036,4381485.2716000006],[499634.59960000031,4381488.2484000009],[499630.87110000011,4381489.9694999997],[499626.91949999984,4381493.0952000003],[499623.93230000045,4381494.1371999998],[499619.31109999958,4381494.1373999994],[499613.49509999994,4381492.5747999996],[499609.18340000045,4381489.8214999996],[499609.01740000024,4381482.0633000005],[499603.69799999986,4381479.3005999997],[499638.1409,4381484.9832000006]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269001,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051717658,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":265.61176413298386,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":81.55235293724985,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":9,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":109,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":278,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":2,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269002,"geometry":{"type":"Polygon","coordinates":[[[499735.8842000002,4381044.6272999998],[499730.32010000013,4381054.3206999991],[499729.04600000009,4381056.3208000008],[499719.58100000024,4381050.7687999997],[499718.42090000026,4381050.0883000009],[499725.70540000033,4381039.0181000009],[499735.8842000002,4381044.6272999998]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269002,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051720858,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":160.81297180901655,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":50.74025805949465,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":9,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":100,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":107,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":8,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269003,"geometry":{"type":"Polygon","coordinates":[[[500080.72950000037,4381014.9879000001],[500077.20210000034,4381019.6110999994],[500043.82959999982,4381005.6477000006],[500045.6436999999,4381003.3035000004],[500076.81350000016,4381013.4434999991],[500080.72950000037,4381014.9879000001]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269003,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051725244,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":157.70884826849488,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":81.942589794481762,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":9,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":91,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":39,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":81,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FS","COD_USOS_SIGPAC.Descripción":"FRUTAL DE CASCARA","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269004,"geometry":{"type":"Polygon","coordinates":[[[500857.30920000002,4381849.3654999994],[500897.66480000038,4381811.3047000002],[500978.48539999966,4381894.5713],[500949.76250000019,4381924.3631999996],[500888.2078999998,4381861.2762000002],[500877.65469999984,4381871.7865999993],[500857.30920000002,4381849.3654999994]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269004,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1122133643,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":5289.5932717937476,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":346.20777961117642,"COD_Municipis.NOM":"Sant Joan","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":49,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":2,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":255,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":4,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":69,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":96,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"74","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":131,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269005,"geometry":{"type":"Polygon","coordinates":[[[499133.02249999996,4380770.9516000003],[499130.32199999969,4380771.5436000004],[499128.2472000001,4380770.9188000001],[499127.19330000039,4380769.3729999997],[499126.96270000003,4380766.7091000006],[499128.67520000041,4380764.6699999999],[499131.6063000001,4380764.3410999998],[499133.6481999997,4380765.1305],[499134.66920000035,4380767.5642000008],[499134.66920000035,4380769.0111999996],[499133.02249999996,4380770.9516000003]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269005,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1265614224,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":43.559575570218321,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":23.908786196893725,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":9,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":70,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":33,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":7,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"74","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269006,"geometry":{"type":"Polygon","coordinates":[[[498814.71310000028,4381837.6162],[498821.34169999976,4381834.0058999993],[498826.48809999973,4381834.4703000002],[498831.15940000024,4381834.0044999998],[498835.83779999986,4381832.9713000003],[498840.50870000012,4381830.0776000004],[498843.56740000006,4381827.5003999993],[498839.0354000004,4381845.9476999994],[498833.47860000003,4381844.1251999997],[498815.42569999956,4381837.8858000003],[498814.71310000028,4381837.6162]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269006,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051718585,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":218.37399460598084,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":76.401656486686235,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":9,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":560,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":221,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":24,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"195,199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269007,"geometry":{"type":"Polygon","coordinates":[[[500495.02880000044,4379115.8456999995],[500502.94930000044,4379114.3949999996],[500503.07919999957,4379110.3484000005],[500509.10580000002,4379112.0232999995],[500509.10560000036,4379114.1721999999],[500519.44539999962,4379114.0890999995],[500519.22929999977,4379114.5727999993],[500519.14209999982,4379125.4382000007],[500503.95650000032,4379125.5300999992],[500503.51750000007,4379122.7579999994],[500495.46740000043,4379123.7714000009],[500495.02880000044,4379115.8456999995]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269007,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719482,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":263.51840570447234,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":76.284383699239569,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":380,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":4,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":91,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":10,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269008,"geometry":{"type":"Polygon","coordinates":[[[500484.59719999973,4379088.7002000008],[500500.08540000021,4379086.8499999996],[500500.66060000006,4379099.8269999996],[500485.4748999998,4379100.4493000004],[500484.59719999973,4379088.7002000008]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269008,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719483,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":190.51021303935715,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":55.568428176144131,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":380,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":5,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":45,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":7,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"ED","COD_USOS_SIGPAC.Descripción":"EDIFICACIONES","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269009,"geometry":{"type":"Polygon","coordinates":[[[500559.10030000005,4378986.5266999993],[500566.50329999998,4378974.9735000003],[500574.64670000039,4378979.8206999991],[500565.43620000035,4378993.4016999993],[500557.4944000002,4378989.0382000003],[500559.10030000005,4378986.5266999993]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269009,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719481,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":153.1452240026839,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":51.650687881395257,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":380,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":71,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":2,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269010,"geometry":{"type":"Polygon","coordinates":[[[500566.00299999956,4379020.7046000008],[500575.90490000043,4379004.4260000009],[500582.5075000003,4379007.5056999996],[500573.13109999988,4379024.2307999991],[500566.00299999956,4379020.7046000008]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269010,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719484,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":145.12918505060929,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":53.465948168318448,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":380,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":6,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":179,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":0,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269011,"geometry":{"type":"Polygon","coordinates":[[[500540.84700000007,4379280.9685999993],[500541.61029999983,4379279.1919],[500542.87760000024,4379278.3827],[500544.15199999977,4379278.7642000001],[500546.57120000012,4379280.2526999991],[500549.66729999986,4379280.9693],[500550.72559999954,4379282.0764000006],[500554.33239999972,4379288.0116000008],[500554.33210000023,4379292.8861999996],[500553.14389999956,4379295.1744999997],[500551.23570000008,4379296.0673999991],[500546.69969999976,4379294.9601000007],[500544.57569999993,4379293.2667999994],[500543.30150000006,4379291.4061999992],[500543.30179999955,4379287.3317000009],[500543.51800000016,4379284.9595999997],[500543.38850000035,4379283.6385999992],[500541.69649999961,4379282.6710000001],[500540.84700000007,4379280.9685999993]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269011,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719529,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":151.44434920904428,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":50.098623018012489,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":393,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":8,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":200,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":28,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269012,"geometry":{"type":"Polygon","coordinates":[[[500530.66249999963,4379426.7477000002],[500534.06879999954,4379418.9897000007],[500542.11079999991,4379423.6693999991],[500539.1512000002,4379430.0320999995],[500530.66249999963,4379426.7477000002]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269012,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719539,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":71.031453986045832,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":33.896761764956892,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":396,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":136,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":38,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"ED","COD_USOS_SIGPAC.Descripción":"EDIFICACIONES","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269013,"geometry":{"type":"Polygon","coordinates":[[[500734.78089999966,4379247.9334999993],[500747.15039999969,4379253.5906000007],[500755.56670000032,4379261.5731000006],[500756.19199999981,4379271.5825999994],[500723.87129999977,4379260.5000999998],[500719.36400000006,4379260.6298999991],[500719.2703999998,4379260.7322000004],[500715.59329999983,4379259.4116999991],[500713.69749999978,4379258.7224000003],[500714.6481999997,4379256.2106999997],[500721.57529999968,4379251.3648000006],[500726.02520000003,4379249.9699000008],[500729.74060000014,4379249.2910999991],[500734.78089999966,4379247.9334999993]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269013,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719500,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":509.76809559528277,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":104.77016528884116,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":382,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":129,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":36,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"PS","COD_USOS_SIGPAC.Descripción":"PASTIZAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269014,"geometry":{"type":"Polygon","coordinates":[[[500739.6595999999,4379206.6679999996],[500742.62710000016,4379196.5007000007],[500750.0521999998,4379180.2498000003],[500751.08179999981,4379181.2360999994],[500749.94199999981,4379202.4828999992],[500750.89199999999,4379207.3574999999],[500751.38790000044,4379216.6414999999],[500747.00970000029,4379220.2969000004],[500744.72699999996,4379221.8222000003],[500740.61589999963,4379220.4171999991],[500739.6595999999,4379206.6679999996]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269014,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719501,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":310.24782936137086,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":92.000988380008906,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":382,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":4,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":105,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":21,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269015,"geometry":{"type":"Polygon","coordinates":[[[500807.34289999958,4379134.5712000001],[500836.5036000004,4379141.4582000002],[500836.82760000043,4379141.5513000004],[500843.01719999965,4379165.3386000004],[500849.17119999975,4379185.0233999994],[500851.02029999997,4379197.1169000007],[500850.41550000012,4379196.9586999994],[500824.90560000017,4379190.2115000002],[500809.89639999997,4379159.1301000006],[500807.34289999958,4379134.5712000001]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269015,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719583,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1602.5694925669318,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":173.95702010878898,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":414,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":367,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":15,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269016,"geometry":{"type":"Polygon","coordinates":[[[499483.60800000001,4380400.5750999991],[499511.76889999956,4380368.7682000007],[499516.45569999982,4380372.3681000005],[499525.05819999985,4380364.5349000003],[499534.9143000003,4380372.9997000005],[499531.00540000014,4380377.5395],[499496.59580000024,4380410.4537000004],[499483.60800000001,4380400.5750999991]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269016,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721079,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":917.20679751557998,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":142.94369096472451,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":926,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":5,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":61,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":97,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269017,"geometry":{"type":"Polygon","coordinates":[[[501112.22819999978,4379130.3032000009],[501117.3853000002,4379118.8618000001],[501155.86880000029,4379135.5284000002],[501160.21679999959,4379142.0873000007],[501157.40780000016,4379147.1009999998],[501112.22819999978,4379130.3032000009]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269017,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719629,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":531.73556293944034,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":116.30484512735502,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":441,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":18,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":100,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":69,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"CI","COD_USOS_SIGPAC.Descripción":"CITRICOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"74","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":131,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269018,"geometry":{"type":"Polygon","coordinates":[[[502417.04540000018,4379908.3795999996],[502361.6409,4379965.5170000009],[502343.92769999988,4379949.5297999997],[502346.51329999976,4379946.2653999999],[502348.97719999962,4379941.1404999997],[502391.76429999992,4379895.7853999995],[502417.04540000018,4379908.3795999996]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269018,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721187,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1991.8809039071068,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":203.89725989202927,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":992,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":31,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":89,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FS","COD_USOS_SIGPAC.Descripción":"FRUTAL DE CASCARA","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269019,"geometry":{"type":"Polygon","coordinates":[[[502393.11639999971,4380105.6599000003],[502344.5410000002,4380154.6505999994],[502339.96289999969,4380152.3048999999],[502393.81639999989,4380100.3670000006],[502436.02570000011,4380058.9003999997],[502438.28589999955,4380060.1010999996],[502393.11639999971,4380105.6599000003]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269019,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051720733,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":469.25442524925637,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":274.8370878180412,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":821,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":31,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":79,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269020,"geometry":{"type":"Polygon","coordinates":[[[501333.10429999977,4380523.7452000007],[501343.22460000031,4380532.5380000006],[501302.54389999993,4380526.4934999999],[501270.64269999973,4380496.6269000005],[501285.02259999979,4380477.1777999997],[501321.48680000007,4380513.6499000005],[501324.6827999996,4380516.432],[501322.50769999996,4380521.9013999999],[501332.4057,4380525.773],[501333.10429999977,4380523.7452000007]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269020,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719917,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1380.6581208400103,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":196.89180372263391,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":571,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":92,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":31,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269021,"geometry":{"type":"Polygon","coordinates":[[[501993.83000000007,4380535.4522999991],[501997.20679999981,4380533.7786999997],[502004.59250000026,4380535.6875999998],[502012.35950000025,4380538.5921],[502014.68340000045,4380543.9975000005],[502014.40130000003,4380548.9185000006],[501993.83000000007,4380535.4522999991]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269021,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051720488,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":123.06522885913537,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":55.089167626170266,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":757,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":255,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":0,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269022,"geometry":{"type":"Polygon","coordinates":[[[502168.28509999998,4380557.9188000001],[502155.73680000007,4380584.3530999999],[502065.99010000005,4380520.5316000003],[502089.11679999996,4380482.0067999996],[502168.28509999998,4380557.9188000001]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269022,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051720477,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":3989.3830563188867,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":294.00278118365304,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":753,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":91,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":60,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269023,"geometry":{"type":"Polygon","coordinates":[[[499466.75449999981,4379534.3610999994],[499475.46669999976,4379539.1886999998],[499482.77479999978,4379543.2441000007],[499482.64520000014,4379543.4859999996],[499453.67659999989,4379598.4004999995],[499448.85400000028,4379607.5252999999],[499432.52799999993,4379601.2939999998],[499435.42069999967,4379595.6370000001],[499466.75449999981,4379534.3610999994]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269023,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721068,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1318.7853590823688,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":183.65131226823311,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":921,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":15,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":99,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269024,"geometry":{"type":"Polygon","coordinates":[[[499987.01979999989,4379901.0449999999],[499944.21079999954,4379902.8589999992],[499944.14599999972,4379902.6077999994],[499966.86079999991,4379899.2402999997],[499974.31240000017,4379898.1333000008],[499985.89670000039,4379896.4123],[499987.01979999989,4379901.0449999999]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269024,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051718952,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":105.55599419313126,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":90.081616333145945,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":127,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":31,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":59,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269025,"geometry":{"type":"Polygon","coordinates":[[[500373.73000000045,4379557.6710000001],[500377.73309999984,4379558.0804999992],[500398.23849999998,4379560.1560999993],[500394.6381000001,4379568.2304999996],[500402.29849999957,4379573.5332999993],[500412.32079999987,4379575.1060000006],[500414.09179999959,4379576.6782000009],[500416.18649999984,4379585.7482999992],[500361.53280000016,4379581.6988999993],[500373.73000000045,4379557.6710000001]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269025,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719216,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":920.67763264879693,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":146.36359804991284,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":277,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":351,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":1,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269026,"geometry":{"type":"Polygon","coordinates":[[[500484.59009999968,4379522.8581000008],[500485.54059999995,4379520.9883999992],[500498.75169999991,4379532.9616],[500506.03789999988,4379536.4506000001],[500504.29509999976,4379541.7715000007],[500496.99450000003,4379539.2407000009],[500493.22180000041,4379538.2171999998],[500495.36050000042,4379533.4079],[500484.59009999968,4379522.8581000008]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269026,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719220,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":106.3233183746738,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":65.580238211614656,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":279,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":128,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":8,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269027,"geometry":{"type":"Polygon","coordinates":[[[500482.40099999961,4379743.8396000005],[500532.1643000003,4379767.0807000007],[500526.19429999962,4379786.4388999995],[500473.08320000023,4379763.8578999992],[500482.40099999961,4379743.8396000005]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269027,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719263,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1187.8377899856637,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":154.97350641586667,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":297,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":88,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":0,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269028,"geometry":{"type":"Polygon","coordinates":[[[500775.71300000045,4380088.3463000003],[500780.23510000017,4380080.6721999999],[500788.38460000046,4380082.9334999993],[500797.44120000023,4380086.0879999995],[500821.88850000035,4380104.5934999995],[500815.55190000031,4380115.4209000003],[500775.71300000045,4380088.3463000003]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269028,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1168725637,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":610.98704509789832,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":118.32998306442019,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":332,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":4,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":43,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":68,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"192,212","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":147,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269029,"geometry":{"type":"Polygon","coordinates":[[[500517.20299999975,4380177.8329000007],[500512.50150000025,4380181.1162999999],[500508.37679999974,4380174.4367999993],[500511.58779999986,4380171.8975000009],[500517.20299999975,4380177.8329000007]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269029,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719302,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":39.13216042875743,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":25.849332824581374,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":310,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":6,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":98,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":67,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"ED","COD_USOS_SIGPAC.Descripción":"EDIFICACIONES","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269030,"geometry":{"type":"Polygon","coordinates":[[[500518.22950000037,4380219.7314999998],[500526.84069999959,4380207.5923999995],[500540.1445000004,4380217.0261000004],[500530.46769999992,4380229.1744999997],[500518.22950000037,4380219.7314999998]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269030,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051719301,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":241.39193423482902,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":62.181472508440237,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":10,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":310,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":5,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":170,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":1,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"ED","COD_USOS_SIGPAC.Descripción":"EDIFICACIONES","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269031,"geometry":{"type":"Polygon","coordinates":[[[500535.88489999995,4377620.2937000003],[500576.5214999998,4377566.8912000004],[500586.59640000015,4377572.6037000008],[500592.6464999998,4377565.4878000002],[500603.72989999969,4377568.1677999999],[500605.60950000025,4377568.5121999998],[500562.41569999978,4377627.8213999998],[500560.06790000014,4377627.2164999992],[500535.88489999995,4377620.2937000003]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269031,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721767,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1739.5146737143273,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":202.29099620319244,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":11,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":174,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":18,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":98,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269032,"geometry":{"type":"Polygon","coordinates":[[[501328.41569999978,4376985.3030999992],[501305.26240000036,4377013.9693],[501301.70469999965,4377012.2849000003],[501301.91359999962,4377011.9966000002],[501325.09649999999,4376979.0884000007],[501325.81689999998,4376978.0559999999],[501326.35720000044,4376978.1769999992],[501328.3518000003,4376980.5403000005],[501328.35130000021,4376983.1820999999],[501328.41569999978,4376985.3030999992]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269032,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051722066,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":208.51645140086546,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":91.064031654692101,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":11,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":286,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":6,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":125,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":0,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"194,199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269033,"geometry":{"type":"Polygon","coordinates":[[[501330.61029999983,4376997.6385999992],[501327.57890000008,4376993.3216999993],[501325.73529999983,4376992.2237],[501314.98680000007,4377006.8267000001],[501306.90369999968,4377018.6765999999],[501297.25800000038,4377028.7868000008],[501290.64510000031,4377035.4926999994],[501288.52770000044,4377034.8410999998],[501277.88769999985,4377048.1140000001],[501276.90099999961,4377047.5276999995],[501289.91160000023,4377029.0459000003],[501301.70469999965,4377012.2849000003],[501305.26240000036,4377013.9693],[501328.41569999978,4376985.3030999992],[501334.00480000023,4376984.8669000007],[501336.57639999967,4376983.2115000002],[501337.22510000039,4376980.5511000007],[501340.71129999962,4376979.2679999992],[501344.84549999982,4376979.2687999997],[501349.44070000015,4376978.6184],[501354.03639999963,4376975.4099000003],[501351.27809999976,4376973.9395000003],[501353.11589999963,4376967.4188000001],[501352.65589999966,4376962.2652000003],[501355.86919999961,4376956.6656999998],[501358.62799999956,4376955.1963999998],[501361.38640000019,4376955.6526999995],[501364.13740000036,4376957.7649000008],[501366.62200000044,4376958.8723000009],[501370.75609999988,4376959.2358999997],[501374.42960000038,4376957.1249000002],[501378.10259999987,4376958.5954],[501381.96970000025,4376961.5635000002],[501370.75999999978,4376977.1710999999],[501369.18960000016,4376978.4359000009],[501362.94409999996,4376984.6860000007],[501357.25299999956,4376991.3921000008],[501352.83710000012,4376996.0797000006],[501347.32689999975,4376998.2833999991],[501343.65350000001,4376998.9245999996],[501338.41750000045,4376998.2818999998],[501335.38590000011,4376995.4346999992],[501332.62750000041,4376994.7924000006],[501330.61029999983,4376997.6385999992]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269033,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051722063,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1339.1484318186911,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":318.62279443273491,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":11,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":286,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":157,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":3,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269034,"geometry":{"type":"Polygon","coordinates":[[[501053.42300000042,4377387.0057999995],[501032.74490000028,4377395.7843999993],[501032.14719999954,4377395.6355000008],[501031.00930000003,4377395.2353000008],[501030.13069999963,4377395.2352000009],[501029.62660000008,4377394.6768999994],[501029.24500000011,4377393.7094000001],[501029.62689999957,4377392.5281000007],[501030.06639999989,4377391.5048999991],[501029.77840000018,4377390.4723000005],[501028.35979999974,4377389.2348999996],[501025.56549999956,4377388.6763000004],[501024.62200000044,4377389.0296],[501023.5055999998,4377389.9132000003],[501022.91490000021,4377390.6758999992],[501022.12260000035,4377390.8246999998],[501021.30159999989,4377390.8245999999],[501021.15070000011,4377388.3222000003],[501022.12339999992,4377385.4944000002],[501027.56909999996,4377378.2577999998],[501029.62909999955,4377376.4068999998],[501035.21750000026,4377378.4635000005],[501044.55080000032,4377382.8835000005],[501050.17520000041,4377385.3586999997],[501053.42300000042,4377387.0057999995]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269034,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721797,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":318.00622936648972,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":83.531569851498105,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":11,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":195,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":42,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":59,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"PS","COD_USOS_SIGPAC.Descripción":"PASTIZAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269035,"geometry":{"type":"Polygon","coordinates":[[[501134.13150000013,4377605.9145],[501100.19739999995,4377650.6358000003],[501100.24789999984,4377649.7148000002],[501099.72240000032,4377647.9845000003],[501099.25420000032,4377648.5984000005],[501098.82949999999,4377647.1379000004],[501094.49450000003,4377644.2905999999],[501090.28899999987,4377642.3738000002],[501090.28940000013,4377639.4713000003],[501088.12909999955,4377637.8617000002],[501089.02269999962,4377633.9267999995],[501091.50059999991,4377630.1597000007],[501100.59140000027,4377615.6212000009],[501110.36620000005,4377602.4410999995],[501109.43730000034,4377601.6967999991],[501106.70729999989,4377604.9243000001],[501113.12530000042,4377596.6645999998],[501134.13150000013,4377605.9145]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269035,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721821,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1060.4134311663038,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":157.49713592914512,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":11,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":202,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":23,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":93,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269036,"geometry":{"type":"Polygon","coordinates":[[[501099.32139999978,4377877.9142000005],[501096.96690000035,4377875.7836000007],[501095.98759999964,4377874.7229999993],[501091.83930000011,4377876.3037999999],[501089.95920000039,4377879.6245000008],[501088.30260000005,4377881.0568000004],[501086.94180000015,4377879.0938000008],[501088.82930000033,4377875.0288999993],[501088.44859999977,4377867.6425999999],[501088.67980000004,4377862.3682000004],[501101.48709999956,4377842.7697000001],[501114.44479999971,4377829.1341999993],[501119.94749999978,4377823.8605000004],[501121.98620000016,4377819.5629999992],[501122.73570000008,4377816.2514999993],[501124.24129999988,4377812.7073999997],[501127.63379999995,4377809.1636999995],[501129.36959999986,4377807.5825999994],[501131.24930000026,4377807.4340000004],[501133.66179999989,4377807.5832000002],[501135.92289999966,4377808.4857999999],[501137.42800000031,4377809.6954999994],[501137.65809999965,4377811.6490000002],[501136.67819999997,4377814.8210000005],[501135.92150000017,4377818.5046999995],[501133.65969999973,4377821.3695],[501130.27469999995,4377823.4805999994],[501126.88190000039,4377828.7546999995],[501122.58930000011,4377832.2982000001],[501119.34759999998,4377838.8560000006],[501115.19890000019,4377842.3995999992],[501110.15020000003,4377845.1802999992],[501107.13939999975,4377848.7241999991],[501104.50310000032,4377852.9471000005],[501104.12090000045,4377855.6633000001],[501101.8666000003,4377857.7653999999],[501099.00019999966,4377858.6021999996],[501097.49509999994,4377858.602],[501092.97200000007,4377862.1362999994],[501094.47649999987,4377866.5831000004],[501096.21160000004,4377869.3740999997],[501097.86780000012,4377870.2765999995],[501100.88520000037,4377871.3376000002],[501099.60290000029,4377874.1932999995],[501100.35869999975,4377876.6864],[501099.32139999978,4377877.9142000005]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269036,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721715,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":736.2400474620008,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":205.53153712596315,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":11,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":146,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":231,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":22,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269037,"geometry":{"type":"Polygon","coordinates":[[[501211.7910000002,4377640.4295000006],[501225.04040000029,4377646.3482000008],[501180.22869999986,4377707.3094999995],[501170.0504999999,4377721.1500000004],[501168.85580000002,4377716.1450999994],[501171.62980000023,4377707.4476999994],[501170.70839999989,4377705.0382000003],[501164.34970000014,4377702.8138999995],[501165.45909999963,4377700.8419000003],[501170.52269999962,4377695.1589000002],[501170.32149999961,4377692.4425000008],[501211.7910000002,4377640.4295000006]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269037,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721834,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":1275.5623282814283,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":210.06092863627902,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":11,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":207,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":1,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":107,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":33,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269038,"geometry":{"type":"Polygon","coordinates":[[[501170.0504999999,4377721.1500000004],[501150.55159999989,4377747.6776999999],[501150.3356999997,4377746.8311000001],[501150.63879999984,4377742.0776000004],[501150.45920000039,4377739.3054000009],[501150.45959999971,4377736.5890999995],[501149.71829999983,4377733.6865999997],[501148.60259999987,4377730.1608000007],[501147.24909999967,4377726.8954000007],[501145.51389999967,4377724.2346999999],[501145.49239999987,4377723.5741000008],[501170.32149999961,4377692.4425000008],[501170.52269999962,4377695.1589000002],[501165.45909999963,4377700.8419000003],[501164.34970000014,4377702.8138999995],[501170.70839999989,4377705.0382000003],[501171.62980000023,4377707.4476999994],[501168.85580000002,4377716.1450999994],[501170.0504999999,4377721.1500000004]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269038,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721836,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":594.24438377493846,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":134.12935316173596,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":11,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":207,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":192,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":2,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269039,"geometry":{"type":"Polygon","coordinates":[[[501254.64329999965,4377753.4433999993],[501223.33029999956,4377798.9737999998],[501222.98500000034,4377797.1690999996],[501222.26559999958,4377792.5921],[501222.0856999997,4377791.4664999992],[501222.53280000016,4377788.0247000009],[501226.79000000004,4377781.6904000007],[501229.7723000003,4377776.3606000002],[501232.48780000024,4377773.0120999999],[501235.38350000046,4377769.5706999991],[501237.91179999989,4377766.4082999993],[501237.91249999963,4377762.1569999997],[501237.64680000022,4377757.0870999992],[501237.64030000009,4377753.4684999995],[501237.46079999954,4377750.3055000007],[501239.00210000016,4377748.7616000008],[501242.43690000009,4377750.9389999993],[501246.95870000031,4377756.4561000001],[501249.22690000013,4377758.5308999997],[501254.64329999965,4377753.4433999993]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269039,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721860,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":388.22670847720713,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":132.93874895742843,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":11,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":213,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":157,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":28,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269040,"geometry":{"type":"Polygon","coordinates":[[[501206.37459999975,4377953.3367999997],[501201.64309999999,4377953.9035],[501191.5736999996,4377965.409],[501177.70760000031,4377986.2350999992],[501173.22840000037,4377986.1135000009],[501168.56159999967,4377987.5453999992],[501163.99409999978,4377998.9681000002],[501162.72670000046,4377998.3817999996],[501145.34370000008,4377990.3324999996],[501201.0438000001,4377918.6375999991],[501200.42459999956,4377917.9956],[501229.75509999972,4377881.5346000008],[501229.84869999997,4377881.8044000007],[501231.59869999997,4377882],[501232.41980000027,4377880.9675999992],[501245.6035000002,4377894.7745999992],[501243.42779999971,4377899.6860000007],[501230.24619999994,4377917.2190000005],[501226.63729999959,4377923.0044999998],[501228.87660000008,4377924.8189000003],[501206.37459999975,4377953.3367999997]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269040,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721693,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":3083.8474211835946,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":321.55732637907704,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":11,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":139,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":192,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":61,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269041,"geometry":{"type":"Polygon","coordinates":[[[501231.49129999988,4377921.5077],[501228.87660000008,4377924.8189000003],[501226.63729999959,4377923.0044999998],[501230.24619999994,4377917.2190000005],[501243.42779999971,4377899.6860000007],[501245.6035000002,4377894.7745999992],[501232.41980000027,4377880.9675999992],[501231.59869999997,4377882],[501229.84869999997,4377881.8044000007],[501229.75509999972,4377881.5346000008],[501239.62320000026,4377869.2754999995],[501241.58920000028,4377869.4990999997],[501236.71279999986,4377875.6007000003],[501248.59279999975,4377890.9796999991],[501267.24110000022,4377869.2800999992],[501266.31269999966,4377865.6053999998],[501269.54640000034,4377864.7409000006],[501275.28579999972,4377866.0255999994],[501238.63669999968,4377912.4575999994],[501231.49129999988,4377921.5077]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269041,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721694,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":473.86800938593234,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":220.95793001647428,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":11,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":139,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":3,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":200,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":9,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269042,"geometry":{"type":"Polygon","coordinates":[[[501223.33029999956,4377798.9737999998],[501212.95760000031,4377814.0701000001],[501210.77579999994,4377812.1813999992],[501209.60219999962,4377810.5532000009],[501209.41550000012,4377807.2973999996],[501212.13100000005,4377804.1349999998],[501214.12609999999,4377802.6841000002],[501216.38790000044,4377799.5216000006],[501218.19600000046,4377796.5358000007],[501219.82419999968,4377792.7313000001],[501222.26559999958,4377792.5921],[501222.98500000034,4377797.1690999996],[501223.33029999956,4377798.9737999998]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269042,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721864,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":121.04276519172994,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":53.538543529572152,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":11,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":213,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":7,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":94,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":73,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":"199","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}},{"type":"Feature","id":20269043,"geometry":{"type":"Polygon","coordinates":[[[501212.95760000031,4377814.0701000001],[501205.63190000039,4377824.7203000002],[501197.43709999975,4377821.1282000002],[501196.22090000007,4377815.193],[501193.47030000016,4377812.8112000003],[501187.20540000033,4377809.8055000007],[501184.07309999969,4377807.1723999996],[501180.94099999964,4377803.4136999995],[501180.31489999965,4377800.4088000003],[501183.4478000002,4377799.0326000005],[501189.71250000037,4377804.0383000001],[501194.09769999981,4377807.1739000008],[501198.47589999996,4377809.5560999997],[501199.98139999993,4377807.5470000003],[501199.98190000001,4377804.0399999991],[501203.48900000006,4377805.1660999991],[501206.24670000002,4377808.0504000001],[501209.60219999962,4377810.5532000009],[501210.77579999994,4377812.1813999992],[501212.95760000031,4377814.0701000001]]]},"properties":{"SIGPAC_HISTORIC_FOGAIBA.OBJECTID":20269043,"SIGPAC_HISTORIC_FOGAIBA.DN_OID":1051721859,"SIGPAC_HISTORIC_FOGAIBA.DN_SURFACE":315.36869261228861,"SIGPAC_HISTORIC_FOGAIBA.DN_PERIMET":95.160288237005787,"COD_Municipis.NOM":"Montuïri","SIGPAC_HISTORIC_FOGAIBA.MUNICIPIO":38,"SIGPAC_HISTORIC_FOGAIBA.POLIGONO":11,"SIGPAC_HISTORIC_FOGAIBA.PARCELA":213,"SIGPAC_HISTORIC_FOGAIBA.RECINTO":2,"SIGPAC_HISTORIC_FOGAIBA.PENDIENTE_":186,"SIGPAC_HISTORIC_FOGAIBA.COEF_REGAD":0,"SIGPAC_HISTORIC_FOGAIBA.COEF_ADMIS":3,"SIGPAC_HISTORIC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_HISTORIC_FOGAIBA.INCIDENCIA":" ","SIGPAC_HISTORIC_FOGAIBA.MOTIVO_MOD":0,"SIGPAC_HISTORIC_FOGAIBA.Catxe":"Febrer2024.0"}}]} \ No newline at end of file diff --git a/tests/data-files/convert/es_ib/es_ib_2026.geojson b/tests/data-files/convert/es_ib/es_ib_2026.geojson new file mode 100644 index 00000000..05d22d16 --- /dev/null +++ b/tests/data-files/convert/es_ib/es_ib_2026.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"EPSG:25831"}},"features":[{"type":"Feature","id":7855608,"geometry":{"type":"Polygon","coordinates":[[[361750.21300000045,4306847.5714999996],[361751.95299999975,4306847.6309999991],[361754.05300000031,4306848.1409000009],[361756.81300000008,4306849.4309],[361760.40299999993,4306851.4810000006],[361764.80300000031,4306854.0711000003],[361769.42289999966,4306856.7504999992],[361773.71300000045,4306859.2105],[361778.07309999969,4306861.8606000002],[361783.02300000004,4306865.1805000007],[361788.7929999996,4306869.1099999994],[361789.87299999967,4306869.8200000003],[361795.41299999971,4306873.4399999995],[361802.50299999956,4306877.9195000008],[361809.64300000016,4306882.3395000007],[361816.80300000031,4306886.7489999998],[361824.01290000044,4306891.2090000007],[361831.12299999967,4306895.6585000008],[361838.03299999982,4306900.0484999996],[361844.89300000016,4306904.5285],[361851.80300000031,4306909.1879999992],[361858.52300000004,4306913.7379999999],[361864.77300000004,4306917.8474000003],[361870.57299999986,4306921.6274999995],[361876.00299999956,4306925.2368999999],[361881.0429999996,4306928.7070000004],[361885.64300000016,4306932.0070999991],[361889.66299999971,4306934.9865000006],[361902.13100000005,4306942.4839999992],[361927.98249999993,4306956.9355999995],[361928.26400000043,4306956.4674999993],[361957.2929999996,4306972.8399999999],[361927.1584999999,4307005.6394999996],[361876.73450000025,4307065.4209000003],[361876.48589999974,4307067.8455999997],[361846.3825000003,4307100.6119999997],[361845.29090000037,4307101.1335000005],[361844.12839999981,4307101.4684999995],[361843.16050000023,4307101.5954],[361842.92700000014,4307101.6071000006],[361841.71910000034,4307101.5454999991],[361840.53749999963,4307101.2860000003],[361839.41490000021,4307100.8350000009],[361838.38200000022,4307100.2056000009],[361837.93900000025,4307099.8554999996],[361826.08800000045,4307086.1034999993],[361780.00250000041,4307027.6057999991],[361777.42920000013,4307024.3392999992],[361777.52979999967,4307024.3128999993],[361777.58330000006,4307024.2237999998],[361767.15730000008,4307009.6490000002],[361761.20920000039,4307000.0571999997],[361752.52589999977,4306989.5548],[361750.23660000041,4306980.8761999998],[361740.63439999986,4306963.9787000008],[361717.77049999963,4306928.8243000004],[361708.62249999959,4306914.2079000007],[361704.51180000044,4306903.2443000004],[361704.37839999981,4306901.1685000006],[361706.52300000004,4306898.2603999991],[361711.21300000045,4306891.9304000009],[361715.51300000027,4306886.0610000007],[361719.14290000033,4306880.9810000006],[361722.06300000008,4306876.841],[361724.39300000016,4306873.6109999996],[361726.85300000012,4306870.5810000002],[361730.05300000031,4306867.0209999997],[361733.77300000004,4306862.7909999993],[361737.59300000034,4306858.091],[361741.14300000016,4306853.7215],[361744.1129999999,4306850.4515000004],[361746.51300000027,4306848.4715],[361748.48300000001,4306847.6914000008],[361750.21300000045,4306847.5714999996]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855608,"SIGPAC_FOGAIBA.DN_OID":1241848313,"SIGPAC_FOGAIBA.DN_SURFACE":30653.923914435749,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":33,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":33,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"PR","COD_USOS_SIGPAC.Descripción":"PASTO ARBUSTIVO","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":12,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200033R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855609,"geometry":{"type":"Polygon","coordinates":[[[361780.08829999994,4306786.9420999996],[361787.64159999974,4306793.9057999998],[361819.99689999968,4306816.9628999997],[361828.71490000002,4306822.6283],[361831.99320000038,4306824.7586000003],[361859.90770000033,4306844.2671000008],[361863.52120000031,4306846.6842],[361865.61950000003,4306848.0877],[361866.1875,4306848.4678000007],[361866.34109999985,4306848.5703999996],[361866.43780000042,4306848.6350999996],[361866.66420000046,4306848.7865999993],[361892.66940000001,4306866.1820999999],[361908.86060000025,4306876.3015000001],[361912.88719999976,4306878.8181999996],[361936.28380000032,4306893.4409999996],[361919.41440000013,4306921.8331000004],[361906.16779999994,4306915.4644000009],[361901.69259999972,4306924.4379999992],[361898.83029999956,4306922.5059999991],[361893.62980000023,4306929.0823999997],[361905.49320000038,4306935.5654000007],[361904.3228000002,4306936.4140000008],[361903.57809999958,4306936.5756999999],[361898.29409999959,4306934.4214999992],[361897.9486999996,4306934.2807],[361897.24089999963,4306933.9922000002],[361897.19139999989,4306933.9718999993],[361897.12330000009,4306933.9442999996],[361897.03699999955,4306933.9089000002],[361896.22520000022,4306933.5780999996],[361894.05399999954,4306932.6929000001],[361886.42100000009,4306928.4634000007],[361881.7686999999,4306925.6851000004],[361875.5393000003,4306921.2403999995],[361824.12789999973,4306885.3655999992],[361814.57629999984,4306878.7498000003],[361792.30539999995,4306863.3239999991],[361788.21150000021,4306860.6915000007],[361766.66420000046,4306846.2605000008],[361758.03000000026,4306841.7936000004],[361758.03469999973,4306841.6944999993],[361758.10639999993,4306841.6261],[361758.56259999983,4306841.8078000005],[361759.35560000036,4306842.2499000002],[361763.3777999999,4306836.9035999998],[361754.40919999965,4306830.4817999993],[361751.34200000018,4306834.3038999997],[361750.61589999963,4306836.0286999997],[361756.52529999986,4306840.8286000006],[361756.50659999996,4306840.9157999996],[361756.43420000002,4306840.9680000003],[361755.97829999961,4306840.7322000004],[361749.37559999991,4306839.4115999993],[361743.65020000003,4306840.0194000006],[361735.83029999956,4306835.8630999997],[361729.52269999962,4306832.5107000005],[361726.76559999958,4306831.0065000001],[361723.92709999997,4306829.0222999994],[361723.85340000037,4306828.9707999993],[361725.08359999955,4306827.4000000004],[361725.13889999967,4306827.4757000003],[361725.1902999999,4306827.4101999998],[361741.17580000032,4306836.3333999999],[361779.12750000041,4306788.1681999993],[361780.08829999994,4306786.9420999996]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855609,"SIGPAC_FOGAIBA.DN_OID":1370681379,"SIGPAC_FOGAIBA.DN_SURFACE":10304.568067400045,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":199,"SIGPAC_FOGAIBA.RECINTO":6,"SIGPAC_FOGAIBA.PENDIENTE_":31,"SIGPAC_FOGAIBA.COEF_REGAD":100,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"199,231","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200199R0006","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855610,"geometry":{"type":"Polygon","coordinates":[[[361749.37559999991,4306839.4115999993],[361755.97829999961,4306840.7322000004],[361756.43420000002,4306840.9680000003],[361756.56929999962,4306841.0379000008],[361756.69209999964,4306841.1015000008],[361756.74170000013,4306841.1271000002],[361756.80590000004,4306841.1602999996],[361756.85500000045,4306841.1856999993],[361756.93829999957,4306841.2288000006],[361756.97989999969,4306841.2502999995],[361757.04330000002,4306841.2830999997],[361757.36369999964,4306841.4487999994],[361758.03000000026,4306841.7936000004],[361766.66420000046,4306846.2605000008],[361788.21150000021,4306860.6915000007],[361792.30539999995,4306863.3239999991],[361814.57629999984,4306878.7498000003],[361824.12789999973,4306885.3655999992],[361875.5393000003,4306921.2403999995],[361881.7686999999,4306925.6851000004],[361886.42100000009,4306928.4634000007],[361894.05399999954,4306932.6929000001],[361896.22520000022,4306933.5780999996],[361897.03699999955,4306933.9089000002],[361897.12330000009,4306933.9442999996],[361897.19139999989,4306933.9718999993],[361897.24089999963,4306933.9922000002],[361897.9486999996,4306934.2807],[361898.29409999959,4306934.4214999992],[361903.57809999958,4306936.5756999999],[361904.30109999981,4306936.8703000005],[361908.9609000003,4306939.4251000006],[361909.00370000023,4306939.4484000001],[361911.16480000038,4306940.6333000008],[361913.39209999982,4306941.8827],[361915.84250000026,4306943.2574000005],[361916.59999999963,4306943.6823999994],[361916.65699999966,4306943.7142999992],[361916.71949999966,4306943.7493999992],[361916.7901999997,4306943.7892000005],[361917.29480000027,4306944.0722000003],[361931.34449999966,4306951.9539000001],[361947.42499999981,4306960.8015999999],[361961.32650000043,4306968.4499999993],[361957.81359999999,4306972.2740000002],[361957.2929999996,4306972.8399999999],[361928.26400000043,4306956.4674999993],[361927.98249999993,4306956.9355999995],[361902.13100000005,4306942.4839999992],[361889.66299999971,4306934.9865000006],[361885.64300000016,4306932.0070999991],[361881.0429999996,4306928.7070000004],[361876.00299999956,4306925.2368999999],[361870.57299999986,4306921.6274999995],[361864.77300000004,4306917.8474000003],[361858.52300000004,4306913.7379999999],[361851.80300000031,4306909.1879999992],[361844.89300000016,4306904.5285],[361838.03299999982,4306900.0484999996],[361831.12299999967,4306895.6585000008],[361824.01290000044,4306891.2090000007],[361816.80300000031,4306886.7489999998],[361809.64300000016,4306882.3395000007],[361802.50299999956,4306877.9195000008],[361795.41299999971,4306873.4399999995],[361789.87299999967,4306869.8200000003],[361788.7929999996,4306869.1099999994],[361783.02300000004,4306865.1805000007],[361778.07309999969,4306861.8606000002],[361773.71300000045,4306859.2105],[361769.42289999966,4306856.7504999992],[361764.80300000031,4306854.0711000003],[361760.40299999993,4306851.4810000006],[361756.81300000008,4306849.4309],[361754.05300000031,4306848.1409000009],[361751.95299999975,4306847.6309999991],[361750.21300000045,4306847.5714999996],[361748.48300000001,4306847.6914000008],[361746.51300000027,4306848.4715],[361744.1129999999,4306850.4515000004],[361741.14300000016,4306853.7215],[361737.59300000034,4306858.091],[361733.77300000004,4306862.7909999993],[361730.05300000031,4306867.0209999997],[361726.85300000012,4306870.5810000002],[361724.39300000016,4306873.6109999996],[361722.06300000008,4306876.841],[361719.14290000033,4306880.9810000006],[361715.51300000027,4306886.0610000007],[361711.21300000045,4306891.9304000009],[361706.52300000004,4306898.2603999991],[361704.37839999981,4306901.1685000006],[361701.69249999989,4306904.8104999997],[361697.99610000011,4306909.8892999999],[361694.86679999996,4306904.6042999998],[361707.38269999996,4306888.7994999997],[361710.61799999978,4306885.2339999992],[361715.62789999973,4306877.5550999995],[361716.47929999977,4306876.25],[361716.57620000001,4306876.1015000008],[361718.09520000033,4306873.7730999999],[361720.25079999957,4306870.4693999998],[361722.62260000035,4306866.8337999992],[361733.79339999985,4306849.7116999999],[361743.46630000044,4306840.0388999991],[361743.65020000003,4306840.0194000006],[361749.37559999991,4306839.4115999993]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855610,"SIGPAC_FOGAIBA.DN_OID":1370681356,"SIGPAC_FOGAIBA.DN_SURFACE":1832.5387594244285,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":9003,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":64,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"CA","COD_USOS_SIGPAC.Descripción":"VIALES","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00209003R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855611,"geometry":{"type":"Polygon","coordinates":[[[361530.42920000013,4307043.1170000006],[361559.6409,4307059.9163000006],[361550.74189999979,4307071.3955000006],[361547.44809999969,4307071.3972999994],[361544.31049999967,4307078.2447999995],[361544.07079999987,4307078.6771000009],[361543.99409999978,4307078.8644999992],[361546.53249999974,4307080.1600000001],[361562.33229999989,4307090.2314999998],[361536.62719999999,4307075.1736999992],[361535.86349999998,4307074.7128999997],[361518.74260000046,4307064.3795999996],[361530.42920000013,4307043.1170000006]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855611,"SIGPAC_FOGAIBA.DN_OID":1241848258,"SIGPAC_FOGAIBA.DN_SURFACE":771.91860874841404,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":156,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":30,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,12,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200156R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855612,"geometry":{"type":"Polygon","coordinates":[[[361492.55449999962,4307048.6011999995],[361518.74260000046,4307064.3795999996],[361518.25289999973,4307065.2712999992],[361518.05260000005,4307065.6126000006],[361501.41179999989,4307092.2183999997],[361499.19159999955,4307095.8182999995],[361484.50150000025,4307119.3300000001],[361484.17250000034,4307119.8565999996],[361483.52300000004,4307119.4411999993],[361483.39020000026,4307119.3562000003],[361467.87330000009,4307109.4278999995],[361460.07529999968,4307104.0431999993],[361461.13800000027,4307102.0333999991],[361464.13219999988,4307102.3625000007],[361468.12280000001,4307102.2926000003],[361470.52400000021,4307100.7244000006],[361471.79279999994,4307098.8598999996],[361473.85690000001,4307095.9020000007],[361475.78560000006,4307093.9328000005],[361476.52410000004,4307091.6679999996],[361476.52400000021,4307089.1743000001],[361474.62420000043,4307086.9743000008],[361471.95519999973,4307084.8717],[361470.55740000028,4307083.9377999995],[361472.9748999998,4307079.1499000005],[361499.54839999974,4307094.8099000007],[361506.07160000037,4307082.8133000005],[361479.96360000037,4307067.5822999999],[361480.94489999954,4307065.4567000009],[361482.22190000024,4307063.4997000005],[361492.55449999962,4307048.6011999995]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855612,"SIGPAC_FOGAIBA.DN_OID":1241848261,"SIGPAC_FOGAIBA.DN_SURFACE":1424.4638775349201,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":39,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":26,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"199,117","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200039R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855613,"geometry":{"type":"Polygon","coordinates":[[[361559.6409,4307059.9163000006],[361569.3713999996,4307065.5121999998],[361570.25590000022,4307066.0207000002],[361570.40830000024,4307067.2307999991],[361571.14020000026,4307073.0373999998],[361571.36799999978,4307074.8457999993],[361571.52520000003,4307076.0921],[361571.59140000027,4307076.6175999995],[361571.59860000014,4307076.6746999994],[361571.62569999974,4307076.8900000006],[361571.66870000027,4307077.2311000004],[361571.71609999985,4307077.6070000008],[361571.98460000008,4307079.7372999992],[361573.59559999965,4307092.5194000006],[361574.05769999977,4307096.1872000005],[361574.09219999984,4307096.4602000006],[361574.15990000032,4307096.9978999998],[361574.17640000023,4307097.1294999998],[361574.21999999974,4307097.4748],[361574.26520000026,4307097.8340000007],[361572.70139999967,4307096.8369999994],[361562.38929999992,4307090.2649000008],[361562.33229999989,4307090.2314999998],[361546.53249999974,4307080.1600000001],[361543.99409999978,4307078.8644999992],[361544.07079999987,4307078.6771000009],[361544.31049999967,4307078.2447999995],[361547.44809999969,4307071.3972999994],[361550.74189999979,4307071.3955000006],[361559.6409,4307059.9163000006]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855613,"SIGPAC_FOGAIBA.DN_OID":1241848312,"SIGPAC_FOGAIBA.DN_SURFACE":594.0475531328085,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":156,"SIGPAC_FOGAIBA.RECINTO":3,"SIGPAC_FOGAIBA.PENDIENTE_":40,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200156R0003","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855614,"geometry":{"type":"Polygon","coordinates":[[[365723.66540000029,4308327.2800999992],[365724.68310000002,4308327.4467999991],[365724.93140000012,4308327.5061000008],[365726.19730000012,4308327.9311999995],[365727.38559999969,4308328.5405000001],[365728.46949999966,4308329.3204999994],[365729.42480000015,4308330.2534999996],[365730.23010000028,4308331.3189000003],[365730.43219999969,4308331.6480999999],[365746.64169999957,4308461.3101000004],[365746.69400000013,4308465.8904999997],[365743.9299999997,4308473.5066999998],[365744.01090000011,4308473.6685000006],[365718.66399999987,4308492.3210000005],[365716.58910000045,4308493.8475000001],[365716.40749999974,4308493.9812000003],[365715.99430000037,4308494.2852999996],[365715.73859999981,4308494.4735000003],[365715.25250000041,4308495.4940000009],[365699.12999999989,4308485.7700999994],[365665.80250000022,4308465.3365000002],[365661.73000000045,4308462.8399999999],[365653.52010000031,4308486.1500000004],[365655.57249999978,4308487.3420000002],[365649.8125,4308499.7320000008],[365648.87189999968,4308501.7420000006],[365647.96200000029,4308503.7019999996],[365646.25200000033,4308507.3816],[365645.5120000001,4308507.0814999994],[365643.4020999996,4308506.2214000002],[365630.57249999978,4308500.9719999991],[365617.43250000011,4308495.602],[365608.79050000012,4308492.0730000008],[365608.32249999978,4308491.8819999993],[365608.10120000038,4308491.7915000003],[365604.97250000015,4308490.5119000003],[365603.18250000011,4308489.7818999998],[365603.27249999996,4308489.5419999994],[365603.89250000007,4308488.6919999998],[365605.21250000037,4308486.8920000009],[365606.76250000019,4308484.7719999999],[365651.55300000031,4308423.5734999999],[365637.76300000027,4308421.0835999995],[365649.10400000028,4308331.1456000004],[365649.19000000041,4308330.4620999992],[365649.29440000001,4308330.4074000008],[365650.32199999969,4308330.0855],[365651.39159999974,4308329.9590000007],[365651.76900000032,4308329.9625000004],[365690.1129999999,4308329.8809999991],[365706.82899999991,4308329.284],[365708.88999999966,4308329.1199999992],[365723.66540000029,4308327.2800999992]],[[365706.73400000017,4308332.9155000001],[365703.3339999998,4308333.6154999994],[365704.4040000001,4308339.0154999997],[365707.80399999954,4308338.2555],[365707.60400000028,4308337.2554000001],[365706.73400000017,4308332.9155000001]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855614,"SIGPAC_FOGAIBA.DN_OID":1746640673,"SIGPAC_FOGAIBA.DN_SURFACE":16051.199160341179,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":1,"SIGPAC_FOGAIBA.PARCELA":64008,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":24,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"ZU","COD_USOS_SIGPAC.Descripción":"ZONA URBANA","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00164008R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855615,"geometry":{"type":"Polygon","coordinates":[[[361664.23450000025,4306880.6585000008],[361669.97599999979,4306887.9464999996],[361670.14709999971,4306888.0756000001],[361676.35450000037,4306892.6511000004],[361685.35080000013,4306897.9011000004],[361686.54279999994,4306898.6521000005],[361690.45449999999,4306901.1163999997],[361694.86679999996,4306904.6042999998],[361697.99610000011,4306909.8892999999],[361698.58000000007,4306914.3703000005],[361719.25700000022,4306943.1810999997],[361727.12299999967,4306954.8949999996],[361733.98589999974,4306964.9245999996],[361740.84900000039,4306974.9539999999],[361752.30030000024,4306992.1394999996],[361752.34999999963,4306992.2139999997],[361754.42850000039,4306995.1436999999],[361777.42920000013,4307024.3392999992],[361780.00250000041,4307027.6057999991],[361826.08800000045,4307086.1034999993],[361837.93900000025,4307099.8554999996],[361846.6325000003,4307110.1679999996],[361842.29600000009,4307114.8798999991],[361836.10850000009,4307121.6034999993],[361842.11000000034,4307130.0755000003],[361866.37239999976,4307164.3223999999],[361867.1679999996,4307165.4453999996],[361887.21700000018,4307193.7459999993],[361887.54050000012,4307194.2028999999],[361914.44749999978,4307232.1834999993],[361915.62299999967,4307233.8424999993],[361917.91199999955,4307240.6418999992],[361919.62299999967,4307242.7239999995],[361920,4307243.1834999993],[361920.59049999993,4307243.9031000007],[361921.16399999987,4307244.602],[361922.64499999955,4307246.4045000002],[361922.73390000034,4307246.6290000007],[361923.94900000002,4307249.4060999993],[361924.47059999965,4307250.4700000007],[361925.48749999981,4307252.1824999992],[361926.67100000009,4307253.7835000008],[361928.00949999969,4307255.2579999994],[361929.25150000025,4307256.3949999996],[361929.48900000006,4307256.591],[361931.09449999966,4307257.7689999994],[361932.81049999967,4307258.7799999993],[361934.88549999986,4307260.1950000003],[361935.27649999969,4307260.4920000006],[361942.09800000023,4307265.2135000005],[361945.88999999966,4307268.5700000003],[361950.81799999997,4307272.932],[361954.16150000039,4307275.8913000003],[361959.32600000035,4307280.4620999992],[361960.10300000012,4307281.1500000004],[361960.88999999966,4307281.8460000008],[361961.68800000008,4307282.5518999994],[361962.50100000016,4307283.2719999999],[361963.3320000004,4307284.0079999994],[361963.58629999962,4307284.2334000003],[361964.19600000046,4307284.7734999992],[361964.54899999965,4307285.0855],[361965.25100000016,4307285.7070000004],[361965.98900000006,4307286.3605000004],[361966.69000000041,4307286.9804999996],[361966.88300000038,4307286.7620000001],[361967.08880000003,4307286.5298999995],[361967.2089999998,4307286.3945000004],[361967.87799999956,4307285.6384999994],[361968.12640000042,4307285.8135000002],[361969.01999999955,4307286.4440000001],[361969.64549999963,4307286.8852999993],[361972.33000000007,4307288.7788999993],[361972.99899999984,4307289.2511],[361973.30999999959,4307289.4700000007],[361973.80700000003,4307289.7630000003],[361973.96300000045,4307289.8544999994],[361974.3097000001,4307290.0583999995],[361974.70000000019,4307290.2880000006],[361975.0131000001,4307290.4726],[361975.62000000011,4307290.8300000001],[361976.51900000032,4307291.3588999994],[361976.63329999987,4307291.4262000006],[361977.36400000006,4307291.8559000008],[361977.70999999996,4307292.0599000007],[361978.11290000007,4307292.3000000007],[361978.65000000037,4307292.6199999992],[361979.5700000003,4307293.2300000004],[361980.05399999954,4307293.5779999997],[361980.45999999996,4307293.8699999992],[361981.15899999999,4307294.4085000008],[361981.33000000007,4307294.5401000008],[361982.16999999993,4307295.2504999992],[361982.20100000035,4307295.2785],[361982.99000000022,4307295.9803999998],[361983.17690000031,4307296.1655000001],[361983.76999999955,4307296.75],[361984.53000000026,4307297.5499000009],[361984.72200000007,4307297.7709999997],[361985.25,4307298.3798999991],[361985.75299999956,4307299],[361985.94000000041,4307299.2300000004],[361986.59999999963,4307300.1099999994],[361986.9040000001,4307300.4110000003],[361987.63129999954,4307301.1301000006],[361988.15299999993,4307301.6459999997],[361989.40610000025,4307302.8849999998],[361990.30999999959,4307303.7799999993],[361994.31749999989,4307306.7404999994],[361983.01099999994,4307330.7795000002],[361970.55399999954,4307320.1645999998],[361969.79710000008,4307319.5195000004],[361968.77199999988,4307318.8849999998],[361967.65649999958,4307318.4288999997],[361967.32100000046,4307318.3533999994],[361966.4804999996,4307318.1641000006],[361966.23350000009,4307318.1500000004],[361965.27699999977,4307318.0965],[361964.07899999991,4307318.2291000001],[361962.91949999984,4307318.5580000002],[361961.83000000007,4307319.0739999991],[361960.84100000001,4307319.7635999992],[361960.39549999963,4307320.1645],[361959.97950000037,4307320.6065999996],[361959.2695000004,4307321.5804999992],[361958.73039999977,4307322.6583999991],[361958.37650000025,4307323.8110000007],[361959.75600000005,4307326.9155000001],[361960.67920000013,4307328.9931000005],[361960.96569999959,4307329.6379000004],[361962.28000000026,4307332.5960000008],[361963.65950000007,4307335.7005000003],[361967.15000000037,4307342.9649999999],[361969.82899999991,4307349.1844999995],[361970.38549999986,4307350.4759999998],[361972.30150000006,4307354.9244999997],[361975.50250000041,4307362.3560000006],[361983.69249999989,4307380.7890000008],[361987.46349999961,4307390.6669999994],[361988.72559999954,4307393.9735000003],[361989.54550000001,4307396.1219999995],[361989.80350000039,4307396.7974999994],[361996.33999999985,4307413.9234999996],[361998.06500000041,4307418.7290000003],[361998.70199999958,4307421.0249000005],[361999.47549999971,4307423.3530000001],[362000.12949999981,4307424.9622000009],[362004.01099999994,4307434.5130000003],[362006.09200000018,4307440.0380000006],[362008.83650000021,4307448.8454999998],[362018.47410000023,4307485.3074999992],[362028.95110000018,4307530.3060999997],[362030.31450000033,4307534.9985000007],[362032.48900000006,4307541.6984999999],[362035.4589999998,4307551.8783999998],[362041.11849999987,4307577.4175000004],[362041.69849999994,4307580.2074999996],[362053.66349999979,4307634.4260000009],[362062.54800000042,4307674.6854999997],[362062.65299999993,4307675.1615999993],[362066.8049999997,4307693.9750999995],[362072.20100000035,4307714.9845000003],[362074.59949999955,4307724.3214999996],[362078.35749999993,4307738.9519999996],[362079.2209999999,4307742.3135000002],[362080.0036000004,4307745.3599999994],[362085.93609999958,4307768.4570000004],[362086.42150000017,4307770.3465],[362086.58249999955,4307770.9729999993],[362088.47049999982,4307778.3250999991],[362088.84100000001,4307779.7670000009],[362093.7695000004,4307798.9554999992],[362104.08999999985,4307839.1327],[362104.33430000022,4307840.0837999992],[362105.3535000002,4307844.0515999999],[362105.56599999964,4307844.8790000007],[362106.51640000008,4307846.7954999991],[362107.64300000016,4307848.6150000002],[362108.93400000036,4307850.3214999996],[362110.21050000004,4307851.7310000006],[362110.37849999964,4307851.9000000004],[362111.96449999977,4307853.3359999992],[362113.67750000022,4307854.6180000007],[362115.03299999982,4307855.4474999998],[362115.50299999956,4307855.7349999994],[362117.42449999973,4307856.6764000002],[362117.63929999992,4307856.7674000002],[362120.20529999956,4307857.6531000007],[362120.61050000042,4307857.7928999998],[362123.49089999963,4307859.0775000006],[362125.27450000029,4307860.0319999997],[362126.24839999992,4307860.6088999994],[362128.86199999973,4307862.3740999997],[362131.31190000009,4307864.3606000002],[362133.57899999991,4307866.5528999995],[362134.32100000046,4307867.3599999994],[362135.33600000013,4307868.3719999995],[362137.24500000011,4307870.0314000007],[362139.29150000028,4307871.5175000001],[362141.45949999988,4307872.8199000005],[362143.73300000001,4307873.9280999992],[362144.28050000034,4307874.1484999992],[362145.18410000019,4307874.5123999994],[362145.44049999956,4307874.5999999996],[362147.21100000013,4307875.0825999994],[362149.02300000004,4307875.3690000009],[362150.85599999968,4307875.4570000004],[362151.40149999969,4307876.0669999998],[362152.14850000013,4307878.1495999992],[362152.31230000034,4307878.6060000006],[362152.33100000024,4307878.6579999998],[362154.03589999955,4307883.4104999993],[362154.04949999973,4307883.4489999991],[362154.82189999986,4307885.6018000003],[362154.12999999989,4307885.9933000002],[362154.02500000037,4307886.0527999997],[362152.41299999971,4307886.9649999999],[362151.20170000009,4307887.7118999995],[362151.12200000044,4307887.7667999994],[362151.04540000018,4307887.8193999995],[362151.00899999961,4307887.8446999993],[362150.26040000003,4307888.3600999992],[362150.21860000025,4307888.3888000008],[362150.17740000039,4307888.4176000003],[362149.21789999958,4307889.2725000009],[362149.04260000028,4307889.4465999994],[362148.99610000011,4307889.4927999992],[362148.95419999957,4307889.5344999991],[362148.42609999981,4307890.0594999995],[362147.84960000031,4307890.9414000008],[362147.50040000025,4307891.6381000001],[362147.45480000041,4307891.7290000003],[362147.40940000024,4307891.8194999993],[362147.38389999978,4307891.8704000004],[362147.34310000017,4307891.9517999999],[362146.92210000008,4307893.1673000008],[362146.8925999999,4307893.2828000002],[362146.47020000033,4307894.9377999995],[362146.38680000044,4307895.3582000006],[362146.37110000011,4307895.4373000003],[362146.30719999969,4307895.7595000006],[362146.1046000002,4307896.7772000004],[362145.9813000001,4307897.6559999995],[362145.97400000039,4307897.7082000002],[362145.75739999954,4307899.2526999991],[362145.99789999984,4307901.1691999994],[362146.13480000012,4307902.2585000005],[362146.15560000017,4307902.4243000001],[362146.16199999955,4307902.4750999995],[362146.17300000042,4307902.5623000003],[362146.18310000002,4307902.6432000007],[362146.73039999977,4307906.9979999997],[362146.95260000043,4307908.7695000004],[362147.70959999971,4307914.7967000008],[362147.71630000044,4307914.8485000003],[362147.72470000014,4307914.9158999994],[362147.73709999956,4307915.0149000008],[362147.94510000013,4307916.6707000006],[362148.49749999959,4307918.0401000008],[362149.17599999998,4307919.7207999993],[362150.38630000036,4307922.7180000003],[362150.4104000004,4307922.7777999993],[362150.42929999996,4307922.8244000003],[362150.46530000027,4307922.9137999993],[362150.49120000005,4307922.9779000003],[362151.96679999959,4307926.6331999991],[362152.4140999997,4307927.8680000007],[362152.45040000044,4307927.9680000003],[362152.47300000023,4307928.0307],[362152.64039999992,4307928.4926999994],[362152.79739999957,4307928.9604000002],[362152.81879999954,4307929.0243999995],[362152.85520000011,4307929.1324000005],[362152.88839999959,4307929.2314999998],[362152.92190000042,4307929.3314999994],[362152.93969999999,4307929.3846000005],[362153.41019999981,4307930.7869000006],[362153.77529999986,4307932.1100999992],[362154.73489999957,4307935.5884000007],[362155.97200000007,4307939.2408000007],[362156.09499999974,4307939.6041999999],[362156.22269999981,4307939.9811000004],[362156.24199999962,4307940.0379000008],[362156.26360000018,4307940.1017000005],[362156.2949000001,4307940.1940000001],[362156.31579999998,4307940.2555],[362156.33349999972,4307940.3081999999],[362156.3646999998,4307940.4002999999],[362156.60039999988,4307941.0960000008],[362156.68310000002,4307941.3419000003],[362156.6995000001,4307941.3904999997],[362156.73849999998,4307941.5059999991],[362156.82579999976,4307941.7656999994],[362157.47860000003,4307943.3182999995],[362157.54619999975,4307943.4791999999],[362157.58700000029,4307943.5761999991],[362157.61730000004,4307943.6482999995],[362157.6484000003,4307943.7224000003],[362157.70909999963,4307943.8664999995],[362158.5867999997,4307945.9540999997],[362159.65500000026,4307948.4940000009],[362160.34069999959,4307950.2639000006],[362163.5279000001,4307958.4880999997],[362164.63100000005,4307961.3344000001],[362164.68510000035,4307961.4737],[362164.70999999996,4307961.5380000006],[362164.7472000001,4307961.6339999996],[362164.78000000026,4307961.7184999995],[362164.8032999998,4307961.7787999995],[362164.83579999954,4307961.8627000004],[362164.87339999992,4307961.9597999994],[362164.89109999966,4307962.0055],[362165.55300000031,4307963.7130999994],[362166.28210000042,4307965.5945999995],[362167.09850000031,4307967.9372000005],[362167.11919999961,4307967.9967999998],[362167.17800000031,4307968.1656999998],[362167.21410000045,4307968.2689999994],[362167.23610000033,4307968.3319000006],[362167.31290000025,4307968.5525000002],[362167.35589999985,4307968.6755999997],[362167.50169999991,4307969.0941000003],[362167.56460000016,4307969.2743999995],[362167.6484000003,4307969.5147999991],[362169.76620000042,4307975.5916000009],[362170.34229999967,4307977.2455000002],[362170.29399999976,4307977.2600999996],[362170.31190000009,4307977.3173999991],[362170.37550000008,4307977.5201999992],[362172.57039999962,4307984.5304000005],[362175.94730000012,4307994.2928999998],[362176.9338999996,4307996.5646000002],[362176.96509999968,4307996.6366000008],[362177.01860000007,4307996.7597000003],[362177.08789999969,4307996.9191999994],[362177.11220000032,4307996.9750999995],[362177.13599999994,4307997.0296999998],[362177.16550000012,4307997.0976999998],[362177.35830000043,4307997.5416999999],[362177.68780000042,4307998.4428000003],[362177.73190000001,4307998.5634000003],[362177.75739999954,4307998.6330999993],[362177.77130000014,4307998.6713999994],[362177.80260000005,4307998.7566],[362177.82949999999,4307998.8301999997],[362177.85099999979,4307998.8890000004],[362178.36670000013,4308000.2989000008],[362178.9757000003,4308002.9978],[362180.24430000037,4308005.9877000004],[362180.29690000042,4308006.1114000008],[362180.32469999976,4308006.1771000009],[362180.37330000009,4308006.2916000001],[362180.4550999999,4308006.4843000006],[362182.43879999965,4308011.1593999993],[362183.6679999996,4308014.7841999996],[362183.7081000004,4308014.9028999992],[362183.7293999996,4308014.9653999992],[362183.75910000037,4308015.0528999995],[362183.77489999961,4308015.0996000003],[362183.81639999989,4308015.2216999996],[362185.44909999985,4308020.0368000008],[362187.09740000032,4308024.1907000002],[362188.39940000046,4308027.4722000007],[362188.43709999975,4308027.5671999995],[362188.47840000037,4308027.6712999996],[362188.50069999974,4308027.7276000008],[362188.51829999965,4308027.7718000002],[362188.53679999989,4308027.8184999991],[362189.07290000003,4308029.1696000006],[362190.42210000008,4308032.5695999991],[362190.90309999976,4308034.4224999994],[362190.95720000006,4308034.6306999996],[362191.00580000039,4308034.8181999996],[362191.02489999961,4308034.8923000004],[362191.04069999978,4308034.9531999994],[362191.05740000028,4308035.0175000001],[362191.0680999998,4308035.0587000009],[362191.08019999973,4308035.1052999999],[362191.09200000018,4308035.1504999995],[362191.15600000042,4308035.3976000007],[362191.39109999966,4308036.0614999998],[362191.40479999967,4308036.1002999991],[362191.41920000035,4308036.1407999992],[362191.43869999982,4308036.1956999991],[362191.46360000037,4308036.2660000008],[362191.54289999977,4308036.4902999997],[362191.58349999972,4308036.6050000004],[362192.11039999966,4308038.0932999998],[362193.08710000012,4308039.8275000006],[362194.82189999986,4308044.3138999995],[362194.85010000039,4308044.3867000006],[362194.86980000045,4308044.4375],[362194.8853000002,4308044.4773999993],[362194.90880000032,4308044.5384999998],[362195.20660000015,4308045.3083999995],[362197.32600000035,4308050.7892000005],[362202.77029999997,4308065.8921000008],[362203.19209999964,4308067.1539999992],[362204.00349999964,4308069.5785000008],[362204.81500000041,4308072.0029000007],[362205.49289999995,4308074.0277999993],[362205.55810000002,4308074.2226],[362206.37609999999,4308076.9069999997],[362206.56510000024,4308077.5270000007],[362206.78139999975,4308078.2371999994],[362206.97229999956,4308078.8633999992],[362207.04399999976,4308079.0985000003],[362207.12999999989,4308079.3809999991],[362209.7209999999,4308087.8833000008],[362212.52479999978,4308097.9349000007],[362212.78120000008,4308098.9653999992],[362212.80640000012,4308099.0662999991],[362212.83189999964,4308099.1685000006],[362212.84360000025,4308099.2159000002],[362212.8602,4308099.2825000007],[362212.87009999994,4308099.3223999999],[362212.8853000002,4308099.3830999993],[362214.63860000018,4308106.4278999995],[362217.55260000005,4308116.7977000009],[362218.60219999962,4308120.9609999992],[362221.54449999984,4308128.7799999993],[362224.38449999969,4308135.8896999992],[362224.88839999959,4308136.9835000001],[362224.97479999997,4308137.1709000003],[362224.9924999997,4308137.2091000006],[362225.01730000041,4308137.2631999999],[362225.07479999959,4308137.3880000003],[362225.09769999981,4308137.4375],[362225.15979999956,4308137.5723999999],[362227.44440000039,4308142.5303000007],[362230.52419999987,4308148.8095999993],[362230.95380000025,4308149.7260999996],[362233.2845999999,4308154.6998999994],[362235.8842000002,4308160.6191000007],[362238.52400000021,4308166.9693],[362241.18379999977,4308173.6392999999],[362241.81520000007,4308175.2766999993],[362241.88430000003,4308175.4559000004],[362242.11180000007,4308176.0460999999],[362242.17410000041,4308176.2074999996],[362242.31859999988,4308176.5822999999],[362242.50499999989,4308177.0657000002],[362242.52579999994,4308177.1198999994],[362242.55420000013,4308177.1933999993],[362242.58930000011,4308177.2846000008],[362242.65490000043,4308177.4547000006],[362242.81749999989,4308177.8763999995],[362242.86930000037,4308178.0106000006],[362243.47539999988,4308179.5828000009],[362243.64410000015,4308180.0200999994],[362243.67530000024,4308180.1010999996],[362243.69409999996,4308180.1500000004],[362243.79389999993,4308180.4087000005],[362244.85529999994,4308183.2347999997],[362246.31410000008,4308187.1183000002],[362248.74399999995,4308193.6879999992],[362249.27500000037,4308195.023],[362249.32849999983,4308195.1577000003],[362249.40830000024,4308195.3584000003],[362251.31369999982,4308200.1482999995],[362254.17360000033,4308206.5374999996],[362255.6118999999,4308209.6676000003],[362256.95359999966,4308212.5876000002],[362258.78189999983,4308216.8950999994],[362259.28390000015,4308218.0778000001],[362259.80169999972,4308219.4233999997],[362261.25370000023,4308223.1974999998],[362261.9160000002,4308225.0277999993],[362261.9550999999,4308225.1357000005],[362261.98489999957,4308225.2181000002],[362262.18039999995,4308225.7580999993],[362263.0736999996,4308228.2268000003],[362263.83499999996,4308230.2717000004],[362265.01379999984,4308233.4373000003],[362267.22369999997,4308238.9371000007],[362269.37399999984,4308244.1467000004],[362270.4924999997,4308247.0025999993],[362270.51520000026,4308247.0606999993],[362270.55190000031,4308247.1538999993],[362270.64690000005,4308247.3967000004],[362270.66920000035,4308247.4537000004],[362270.68969999999,4308247.5063000005],[362271.09329999983,4308248.5366999991],[362271.78920000046,4308250.3837000001],[362271.83619999979,4308250.5085000005],[362271.90070000011,4308250.6797000002],[362271.93379999977,4308250.7675999999],[362271.96949999966,4308250.8624000009],[362271.98450000025,4308250.9021000005],[362272.00679999962,4308250.9613000005],[362272.5438000001,4308252.3868000004],[362273.93340000045,4308256.0463999994],[362274.98840000015,4308258.5320999995],[362275.33499999996,4308259.3484000005],[362275.4450000003,4308259.5614999998],[362275.60500000045,4308259.8717999998],[362276.0318,4308260.6973999999],[362276.65560000017,4308261.9075000007],[362276.68049999978,4308261.9557000007],[362276.71939999983,4308262.0309999995],[362276.75910000037,4308262.1081000008],[362276.93890000042,4308262.4091999996],[362277.04980000015,4308262.5949000008],[362277.11720000021,4308262.7068000007],[362277.16000000015,4308262.7778999992],[362277.2050999999,4308262.8527000006],[362277.23919999972,4308262.9093999993],[362278.42370000016,4308264.8758000005],[362278.93709999975,4308265.6717000008],[362278.9626000002,4308265.7113000005],[362279.00270000007,4308265.7736000009],[362279.12320000026,4308265.9605],[362279.19039999973,4308266.0645000003],[362279.21970000025,4308266.1096000001],[362279.26740000024,4308266.1834999993],[362279.4160000002,4308266.4137999993],[362279.48340000026,4308266.5185000002],[362280.44319999963,4308268.0062000006],[362281.63910000026,4308269.7733999994],[362281.87679999974,4308270.1243999992],[362281.92009999976,4308270.1885000002],[362281.9486999996,4308270.2310000006],[362282.09269999992,4308270.4437000006],[362282.14950000029,4308270.5274999999],[362282.18800000008,4308270.5844999999],[362282.72350000031,4308271.3759000003],[362283.19359999988,4308272.0254999995],[362283.79619999975,4308272.8593000006],[362284.43670000043,4308273.7452000007],[362284.56659999955,4308273.9251000006],[362284.60529999994,4308273.9790000003],[362284.78670000006,4308274.2296999991],[362285.02660000045,4308274.5614],[362285.12820000015,4308274.7011999991],[362285.22559999954,4308274.8220000006],[362285.31140000001,4308274.9280999992],[362287.14950000029,4308277.2015000004],[362287.5120000001,4308277.6502],[362287.65350000001,4308277.8256999999],[362289.74569999985,4308280.0421999991],[362289.77819999959,4308280.0767000001],[362289.80950000044,4308280.1096999999],[362289.89599999972,4308280.2014000006],[362289.95930000022,4308280.2685000002],[362290.01769999973,4308280.3302999996],[362290.0728000002,4308280.3888000008],[362290.13289999962,4308280.4524000008],[362290.34350000042,4308280.6754999999],[362290.99509999994,4308281.2807999998],[362293.16330000013,4308283.2949999999],[362296.08349999972,4308285.7956000008],[362299.16339999996,4308288.6351999994],[362299.20430000033,4308288.6798999999],[362302.40309999976,4308292.1747999992],[362303.2293999996,4308293.2512999997],[362304.0887000002,4308294.3706999999],[362304.22530000005,4308294.5486999992],[362304.4776999997,4308294.8778000008],[362304.54339999985,4308294.9634000007],[362304.58370000031,4308295.0157999992],[362304.7154000001,4308295.1875],[362305.08710000012,4308295.6717000008],[362305.44479999971,4308296.1377000008],[362305.52199999988,4308296.2616000008],[362305.79399999976,4308296.6978999991],[362307.99340000004,4308300.2248999998],[362309.43300000019,4308302.7462000009],[362309.45889999997,4308302.7915000003],[362309.50229999982,4308302.8673],[362309.54409999959,4308302.9404000007],[362309.57490000036,4308302.9946999997],[362309.64690000005,4308303.1206999999],[362310.60280000046,4308304.7946000006],[362313.76279999968,4308310.1746999994],[362317.06300000008,4308316.0442999993],[362319.44440000039,4308320.8798999991],[362319.51599999983,4308321.0252999999],[362319.55030000024,4308321.0950000007],[362319.70320000034,4308321.4052000009],[362319.7296000002,4308321.4589000009],[362319.7620000001,4308321.5245999992],[362319.78239999991,4308321.5659999996],[362319.82139999978,4308321.6453000009],[362320.0027999999,4308322.0133999996],[362320.75229999982,4308323.6696000006],[362320.77500000037,4308323.7195999995],[362321.74909999967,4308325.8716000002],[362322.72310000006,4308328.0237000007],[362322.77390000038,4308328.1366000008],[362322.80669999961,4308328.2094999999],[362322.88819999993,4308328.3903999999],[362322.93969999999,4308328.5047999993],[362322.9645999996,4308328.5603],[362323.41079999972,4308329.5517999995],[362323.43890000042,4308329.6139000002],[362323.47130000032,4308329.6862000003],[362323.53809999954,4308329.8344999999],[362323.61249999981,4308329.9999000002],[362323.65440000035,4308330.0929000005],[362323.70999999996,4308330.2163999993],[362323.74940000009,4308330.3039999995],[362323.87959999964,4308330.5932],[362324.05150000006,4308330.9749999996],[362324.09329999983,4308331.0680999998],[362324.22200000007,4308331.3539000005],[362324.55549999978,4308332.0949000008],[362324.80030000024,4308332.6388000008],[362324.81759999972,4308332.6774000004],[362324.8702999996,4308332.7936000004],[362324.90780000016,4308332.8764999993],[362324.96899999958,4308333.0121999998],[362325.4347000001,4308334.0423000008],[362326.32259999961,4308335.9006999992],[362326.46889999975,4308336.2064999994],[362326.54509999976,4308336.3662999999],[362327.17379999999,4308337.6787999999],[362327.22929999977,4308337.7948000003],[362327.24990000017,4308337.8376000002],[362327.38210000005,4308338.1137000006],[362328.15299999993,4308339.7230999991],[362329.89039999992,4308342.9925999995],[362330.05119999964,4308343.2951999996],[362330.58430000022,4308344.2983999997],[362330.85259999987,4308344.8029999994],[362332.72149999999,4308347.9954000004],[362333.73269999959,4308349.7226999998],[362333.91390000004,4308350.0176999997],[362336.90259999968,4308354.8828999996],[362340.00250000041,4308359.8926999997],[362342.7527999999,4308364.3325999994],[362343.05069999956,4308364.8077000007],[362343.2285000002,4308365.0914999992],[362343.36110000033,4308365.3029999994],[362343.67279999983,4308365.8001000006],[362343.75679999962,4308365.9342],[362343.84240000043,4308366.0706999991],[362343.87700000033,4308366.1259000003],[362343.90950000007,4308366.1776999999],[362343.98350000009,4308366.2957000006],[362345.44240000006,4308368.6228],[362348.42229999974,4308373.2224000003],[362350.20830000006,4308375.8629000001],[362350.24179999996,4308375.9123],[362350.27369999979,4308375.9594999999],[362350.30590000004,4308376.0070999991],[362350.40500000026,4308376.1537999995],[362350.47649999987,4308376.2591999993],[362350.5214999998,4308376.3258999996],[362350.55979999993,4308376.3824000005],[362350.5987999998,4308376.4399999995],[362350.63399999961,4308376.4923],[362350.6782999998,4308376.5578000005],[362350.74029999971,4308376.6493999995],[362350.79009999987,4308376.7227999996],[362350.89740000013,4308376.8816],[362351.07550000027,4308377.1447999999],[362351.19959999993,4308377.3282999992],[362351.70239999983,4308378.0717999991],[362352.57930000033,4308379.2963999994],[362352.9216,4308379.7745999992],[362352.98340000026,4308379.8608999997],[362353.02720000036,4308379.9221000001],[362353.07660000026,4308379.9912999999],[362353.22410000023,4308380.1972000003],[362353.28060000017,4308380.2761000004],[362353.41459999979,4308380.4633000009],[362355.28259999957,4308383.0723000001],[362356.18850000016,4308384.2026000004],[362356.27469999995,4308384.3101000004],[362356.30389999971,4308384.3465999998],[362356.32919999957,4308384.3781000003],[362356.42769999988,4308384.5011999998],[362356.61349999998,4308384.7329999991],[362356.64709999971,4308384.7749000005],[362356.67939999979,4308384.8151999991],[362356.72690000013,4308384.8742999993],[362356.78139999975,4308384.9422999993],[362356.81830000039,4308384.9885000009],[362356.88269999996,4308385.0689000003],[362357.18269999977,4308385.4432999995],[362357.42569999956,4308385.7463000007],[362357.52080000006,4308385.8651000001],[362358.79229999986,4308387.4515000004],[362359.57290000003,4308388.6570999995],[362359.60300000012,4308388.7037000004],[362360.08079999965,4308389.4417000003],[362360.3722000001,4308389.8914999999],[362360.40859999973,4308389.9477999993],[362360.4310999997,4308389.9825999998],[362360.73599999957,4308390.4535000008],[362361.74650000036,4308392.0141000003],[362366.6743999999,4308399.4236999992],[362371.01999999955,4308405.8829999994],[362375.79789999966,4308412.0161000006],[362376.61149999965,4308413.0603999998],[362377.25380000006,4308413.8849999998],[362377.77120000031,4308414.5493000001],[362377.83800000045,4308414.6349999998],[362377.8964999998,4308414.7102000006],[362377.98680000007,4308414.8258999996],[362378.07569999993,4308414.9401999991],[362378.10639999993,4308414.9796999991],[362378.14309999999,4308415.0266999993],[362378.26910000015,4308415.1886],[362378.30439999979,4308415.2336999997],[362378.38489999995,4308415.3370999992],[362378.42650000006,4308415.3905999996],[362378.9868999999,4308416.1099999994],[362380.76979999989,4308418.3986000009],[362381.29069999978,4308419.0884000007],[362383.66750000045,4308422.2394999992],[362386.69130000006,4308420.4989],[362387.69979999959,4308419.8873999994],[362387.73759999964,4308419.8646000009],[362388.58540000021,4308419.3504000008],[362390.89520000014,4308422.5471000001],[362393.51699999999,4308426.1754999999],[362394.31099999975,4308427.2744999994],[362393.22400000039,4308428.7829999998],[362392.36600000039,4308430.2789999992],[362392.30549999978,4308430.3984999992],[362391.56599999964,4308432.1044999994],[362391.01400000043,4308433.8794],[362390.86340000015,4308434.6449999996],[362390.65600000042,4308435.7035000008],[362390.49550000019,4308437.5560999997],[362390.53550000023,4308439.4145],[362390.77500000037,4308441.2579999994],[362391.21050000004,4308443.0655000005],[362391.83789999969,4308444.8154000007],[362392.65000000037,4308446.4875000007],[362393.46150000021,4308447.8094999995],[362454.82349999994,4308526.6930999998],[362503.47049999982,4308589.2311000004],[362538.81400000025,4308630.4890000001],[362549.05750000011,4308641.1840000004],[362558.65749999974,4308650.3684999999],[362577.61840000004,4308668.5095000006],[362581.3825000003,4308671.8609999996],[362610.78550000023,4308695.8269999996],[362610.96800000034,4308695.9645000007],[362614.97300000023,4308698.7135000005],[362619.3964999998,4308701.2235000003],[362624.0214999998,4308703.3385000005],[362628.81350000016,4308705.0426000003],[362629.5959999999,4308705.2770000007],[362632.06049999967,4308705.8993999995],[362635.3694000002,4308706.4699000008],[362638.71549999993,4308706.7499000002],[362642.07299999986,4308706.7369999997],[362645.41700000037,4308706.4316000007],[362648.72140000015,4308705.8359999992],[362648.7714999998,4308705.8245000001],[362652.59700000007,4308705.227],[362656.3554999996,4308704.2984999996],[362658.38860000018,4308703.6475000009],[362660.01900000032,4308703.0460000001],[362661.85699999984,4308702.2324999999],[362682.47900000028,4308716.6649999991],[362686.0859000003,4308719.1882000007],[362686.30999999959,4308719.3450000007],[362687.90730000008,4308720.4628999997],[362686.16110000014,4308721.8676999994],[362684.54750000034,4308723.3618999999],[362683.07639999967,4308724.9967],[362681.75980000012,4308726.7584000006],[362680.60879999958,4308728.6323000006],[362679.63279999979,4308730.6030000001],[362678.83970000036,4308732.6543000005],[362678.23639999982,4308734.7692000009],[362677.82770000026,4308736.9300999995],[362677.61699999962,4308739.1192000005],[362677.60599999968,4308741.3184999991],[362677.79480000027,4308743.5096000005],[362678.18200000003,4308745.6744999997],[362678.76420000009,4308747.7951999996],[362679.53670000006,4308749.8543999996],[362680.49299999978,4308751.8346999995],[362681.62530000042,4308753.7201000005],[362686.07540000044,4308757.6088999994],[362697.53830000013,4308764.1493999995],[362722.96300000045,4308777.7984999996],[362758.17850000039,4308796.7038000003],[362797.89900000021,4308814.1961000003],[362825.55480000004,4308826.3751999997],[362864.27099999972,4308839.8884999994],[362914.58519999962,4308855.6785000004],[362942.15099999961,4308865.5808000006],[362950.13650000002,4308858.2199000008],[362952.56060000043,4308859.2003000006],[362963.12899999972,4308863.4745000005],[362985.45150000043,4308870.8775999993],[363011.68149999995,4308879.7105],[363032.08079999965,4308886.4807999991],[363028.10120000038,4308889.3742999993],[363030.29229999986,4308890.0971000008],[363030.7575000003,4308890.2444000002],[363043.55370000005,4308894.2942999993],[363067.72439999972,4308901.7452000007],[363090.70639999956,4308909.3552999999],[363094.91469999962,4308910.7479999997],[363102.33389999997,4308912.7152999993],[363102.52329999954,4308912.7654999997],[363102.56329999957,4308912.7762000002],[363102.64130000025,4308912.7969000004],[363102.75540000014,4308912.8270999994],[363104.37189999968,4308913.2557999995],[363104.47869999986,4308913.2838000003],[363104.54310000036,4308913.3008999992],[363104.80999999959,4308913.3709999993],[363114.68039999995,4308915.9869999997],[363126.2575000003,4308919.0749999993],[363126.45239999983,4308919.1269000005],[363126.51329999976,4308919.1432000007],[363126.93030000012,4308919.2544],[363127.86440000031,4308919.5035999995],[363133.13800000027,4308920.9101999998],[363136.49340000004,4308922.3931000009],[363136.75250000041,4308922.5076000001],[363136.9112999998,4308922.5778000001],[363137.07689999975,4308922.6510000005],[363137.25659999996,4308922.7304999996],[363137.30300000031,4308922.7510000002],[363137.37770000007,4308922.784],[363137.52859999985,4308922.8507000003],[363149.40299999993,4308928.0988999996],[363149.84800000023,4308928.1870000008],[363150.29360000044,4308928.2704000007],[363150.73909999989,4308928.3493000008],[363151.12040000036,4308928.4147999994],[363151.18680000026,4308928.4262000006],[363151.63439999986,4308928.4985000007],[363151.85780000035,4308928.5331999995],[363152.08189999964,4308928.5679000001],[363152.53000000026,4308928.6327999998],[363152.97890000045,4308928.6938000005],[363153.42850000039,4308928.7521000002],[363153.8786000004,4308928.8057000004],[363154.32949999999,4308928.8565999996],[363154.78019999992,4308928.9026999995],[363155.23089999985,4308928.9461000003],[363155.49729999993,4308928.9690000005],[363155.68300000019,4308928.9848999996],[363156.13499999978,4308929.0208000001],[363156.58710000012,4308929.0529999994],[363157.03969999962,4308929.0804999992],[363157.49220000021,4308929.1052000001],[363157.94479999971,4308929.1252999995],[363158.39790000021,4308929.1425999999],[363158.85099999979,4308929.1552000009],[363159.3041000003,4308929.1649999991],[363159.75700000022,4308929.1702999994],[363160.2106999997,4308929.1725999992],[363160.66359999962,4308929.1712999996],[363161.11699999962,4308929.1653000005],[363161.5736999996,4308929.1560999993],[363162.02309999987,4308929.1431000009],[363162.47539999988,4308929.1270000003],[363162.92899999954,4308929.1062000003],[363163.3814000003,4308929.0815999992],[363163.61510000005,4308928.9724000003],[363163.82409999985,4308928.8643999994],[363163.93310000002,4308928.8039999995],[363164.06659999955,4308928.7291000001],[363164.28600000031,4308928.5941000003],[363164.38370000012,4308928.5285999998],[363164.49940000009,4308928.4508999996],[363164.61099999957,4308928.3706999999],[363164.70760000031,4308928.3012000006],[363164.80719999969,4308928.2227999996],[363164.91000000015,4308928.1422000006],[363165.10699999984,4308927.9759999998],[363165.31659999955,4308927.7837000005],[363165.36840000004,4308927.7328999992],[363165.48029999994,4308927.6234000009],[363165.65660000034,4308927.4371000007],[363165.82629999984,4308927.2434],[363165.91579999961,4308927.1327],[363165.98670000024,4308927.0449000001],[363166.01460000034,4308927.0086000003],[363166.14269999973,4308926.8377999999],[363166.28880000021,4308926.6268000007],[363166.39140000008,4308926.4682999998],[363166.42839999963,4308926.4113999996],[363166.55900000036,4308926.1894000005],[363166.68090000004,4308925.9630999994],[363166.76429999992,4308925.7932999991],[363166.79389999993,4308925.7332000006],[363166.8376000002,4308925.6349999998],[363166.89879999962,4308925.4978],[363166.99500000011,4308925.2598000001],[363167.06290000025,4308925.0698000006],[363167.13019999955,4308924.8648000006],[363167.1595999999,4308924.7730999999],[363167.22300000023,4308924.5436000004],[363167.28699999955,4308924.2774],[363167.30669999961,4308924.1785000004],[363167.33789999969,4308924.0229000002],[363167.37789999973,4308923.7690999992],[363167.40899999999,4308923.5144999996],[363167.43010000046,4308923.2581999991],[363167.44159999955,4308923.0011999998],[363167.44369999971,4308922.7445],[363168.19440000039,4308922.7789999992],[363170.11220000032,4308922.8674999997],[363172.93929999974,4308922.8794],[363174.09240000043,4308922.8842999991],[363179.19350000005,4308922.9285000004],[363180.22499999963,4308922.9374000002],[363181.92310000025,4308922.9529999997],[363182.09250000026,4308932.2484000009],[363183.16899999976,4308936.3135000002],[363184.15899999999,4308936.8193999995],[363200.91899999976,4308943.2064999994],[363201.79250000045,4308943.3509999998],[363202.08100000024,4308943.3983999994],[363218.02699999977,4308946.0329999998],[363220.0214999998,4308946.6699999999],[363221.99500000011,4308947.3245999999],[363229.46939999983,4308949.8691000007],[363231.30599999987,4308950.4264000002],[363233.25789999962,4308951.0364999995],[363234.16550000012,4308951.3220000006],[363250.05250000022,4308957.3579999991],[363274.98290000018,4308964.1642000005],[363262.07050000038,4309003.9549000002],[363259.18400000036,4309013.8835000005],[363247.64599999972,4309010.7320000008],[363247.56500000041,4309010.7100000009],[363247.15600000042,4309010.5980999991],[363247.06300000008,4309010.5724999998],[363224.38300000038,4309004.4340000004],[363217.32149999961,4309002.5550999995],[363217.19299999997,4309002.5209999997],[363216.97599999979,4309002.4635000005],[363203.99299999978,4308999.0089999996],[363197.90699999966,4308996.7524999995],[363189.91199999955,4308994.7829999998],[363174.30020000041,4309002.3947999999],[363173.95909999963,4309002.5611000005],[363168.64350000024,4309001.5225000009],[363168.43250000011,4309001.5364999995],[363168.35500000045,4309000.8169999998],[363168.25150000025,4309000.1009],[363168.12200000044,4308999.3884999994],[363167.96710000001,4308998.6815000009],[363167.78639999963,4308997.9810000006],[363167.58050000016,4308997.2870000005],[363167.34999999963,4308996.6009999998],[363167.09449999966,4308995.9234999996],[363166.81439999957,4308995.2559999991],[363166.71300000045,4308995.0354999993],[363166.51099999994,4308994.5989999995],[363166.18350000028,4308993.9535000008],[363165.83299999963,4308993.3204999994],[363165.45999999996,4308992.6998999994],[363165.06510000024,4308992.0940000005],[363164.64749999996,4308991.5023999996],[363164.20949999988,4308990.9265000001],[363163.75100000016,4308990.3664999995],[363163.27249999996,4308989.8234999999],[363162.77450000029,4308989.2980000004],[363162.2575000003,4308988.7916000001],[363161.72300000023,4308988.3035000004],[363161.17100000009,4308987.8355],[363160.60250000004,4308987.3874999993],[363160.01800000016,4308986.9605],[363159.41849999968,4308986.5549999997],[363158.8049999997,4308986.1710000001],[363158.17750000022,4308985.8100000005],[363157.53799999971,4308985.4714000002],[363156.88599999994,4308985.1569999997],[363156.22350000031,4308984.8654999994],[363155.5504999999,4308984.5989999995],[363145.75200000033,4308980.9144000001],[363123.54650000017,4308973.6950000003],[363092.34100000001,4308963.6335000005],[363070.57749999966,4308956.875],[363067.16899999976,4308955.7688999996],[363049.28249999974,4308949.2145000007],[363046.90749999974,4308948.4295000006],[363045.02550000045,4308947.8056000005],[363043.12550000008,4308947.1854999997],[363041.82210000046,4308946.7531000003],[363041.20150000043,4308946.5475999992],[363039.31149999984,4308945.9175000004],[363035.49949999992,4308944.6435000002],[363031.70349999983,4308943.3815000001],[363027.94550000038,4308942.1353999991],[363018.53199999966,4308939.0770999994],[363016.64599999972,4308938.4845000003],[363014.73599999957,4308937.8944000006],[363012.80800000019,4308937.2890000008],[363010.9160000002,4308936.6943999995],[363008.98199999984,4308936.0971000008],[363007.04600000009,4308935.4755000006],[363005.1174999997,4308934.8595000003],[363003.15749999974,4308934.2200000007],[363001.21549999993,4308933.5659999996],[362999.28399999999,4308932.9114999995],[362997.37600000016,4308932.2455000002],[362995.46850000042,4308931.5895000007],[362993.55449999962,4308930.9110000003],[362991.69249999989,4308930.2569999993],[362989.82660000026,4308929.6054999996],[362987.95459999982,4308928.9615000002],[362986.08800000045,4308928.3200000003],[362984.23010000028,4308927.6939000003],[362982.36600000039,4308927.0758999996],[362980.50250000041,4308926.4674999993],[362978.60850000009,4308925.8596000001],[362977.41500000004,4308925.4721000008],[362975.77730000019,4308926.6379000004],[362960.5904000001,4308937.4498999994],[362959.80559999961,4308938.0088999998],[362937.26750000007,4308912.2469999995],[362928.32299999986,4308909.1815000009],[362901.11220000032,4308899.7367000002],[362896.66750000045,4308898.1940000001],[362887.03409999982,4308895.2989000008],[362886.23209999967,4308895.0579000004],[362885.34690000024,4308894.7918999996],[362865.80950000044,4308889.2974999994],[362846.71850000042,4308883.6355000008],[362827.68649999984,4308876.6379000004],[362807.13300000038,4308872.6391000003],[362806.40789999999,4308872.4976000004],[362804.37399999984,4308872.102],[362786.06539999973,4308861.9704999998],[362780.63750000019,4308859.1309999991],[362778.68640000001,4308858.1619000006],[362772.37459999975,4308855.0269000009],[362771.92300000042,4308854.8025000002],[362761.7834999999,4308849.9509999994],[362758.46050000004,4308848.3615000006],[362744.13949999958,4308842.7465000004],[362738.79810000025,4308840.1545000002],[362737.88150000013,4308839.7094999999],[362731.71399999969,4308836.4004999995],[362722.24409999978,4308831.7595000006],[362721.9709999999,4308831.6254999992],[362720.28550000023,4308830.7995999996],[362720.16889999993,4308830.7424999997],[362720.00210000016,4308830.6607000008],[362719.93070000038,4308830.6257000007],[362719.87530000042,4308830.5986000001],[362718.50150000025,4308829.9254999999],[362715.89599999972,4308828.6483999994],[362715.81039999984,4308828.5943999998],[362705.83729999978,4308822.2874999996],[362700.6640999997,4308819.0160000008],[362699.50420000032,4308818.2825000007],[362698.45139999967,4308817.6165999994],[362698.11220000032,4308817.4022000004],[362697.92810000014,4308817.2857000008],[362697.76499999966,4308817.1826000009],[362697.62689999957,4308817.0953000002],[362697.21870000008,4308816.8370999992],[362696.94660000037,4308816.6651000008],[362695.96380000003,4308816.0436000004],[362695.91000000015,4308816.0096000005],[362695.81429999974,4308815.9489999991],[362695.63470000029,4308815.8354000002],[362695.52770000044,4308815.7677999996],[362695.10950000025,4308815.5033],[362694.77740000002,4308815.2931999993],[362694.13709999993,4308814.8883999996],[362694.08469999954,4308814.8552000001],[362694.00150000025,4308814.8026999999],[362693.94269999955,4308814.7653999999],[362693.46829999983,4308814.4655000009],[362692.90429999959,4308814.1088999994],[362692.81460000016,4308814.0519999992],[362692.75870000012,4308814.0166999996],[362692.70330000017,4308813.9816999994],[362691.97819999978,4308813.523],[362687.65699999966,4308810.7905000001],[362685.7098000003,4308809.6819000002],[362680.39209999982,4308806.6545000002],[362676.78189999983,4308804.5778999999],[362672.0839999998,4308801.8754999992],[362662.57899999991,4308796.7004000004],[362653.04700000025,4308791.2263999991],[362642.08000000007,4308784.8578999992],[362632.23149999976,4308779.0429999996],[362621.73749999981,4308772.8149999995],[362612.95449999999,4308767.9664999992],[362607.84949999955,4308764.6710000001],[362603.74550000019,4308762.1394999996],[362598.9879999999,4308758.0714999996],[362593.03650000039,4308752.7809999995],[362590.66500000004,4308750.6622000001],[362589.91720000003,4308749.9942000005],[362587.54750000034,4308747.8769000005],[362587.32469999976,4308747.6602999996],[362582.11699999962,4308742.5975000001],[362581.81799999997,4308741.1384999994],[362578.35639999993,4308737.8650000002],[362577.49199999962,4308737.0473999996],[362573.05200000014,4308732.8484000005],[362571.17599999998,4308731.8574999999],[362563.44000000041,4308724.8550000004],[362556.14099999983,4308717.9550000001],[362548.23699999973,4308710.2895],[362545.50299999956,4308707.7245000005],[362540.9319000002,4308703.7295999993],[362531.80750000011,4308695.2641000003],[362524.9944000002,4308688.5040000007],[362519.2304999996,4308682.3365000002],[362511.92650000006,4308675.0793999992],[362502.26360000018,4308665.3619999997],[362494.38800000027,4308656.9075000007],[362486.48000000045,4308647.8505000006],[362478.82799999975,4308639.3421],[362471.21200000029,4308630.3910000008],[362464.2790000001,4308622.1995000001],[362458.08299999963,4308614.7415999994],[362451.90050000045,4308606.9240000006],[362445.98749999981,4308599.0799000002],[362440.66949999984,4308592.4134999998],[362436.01250000019,4308585.9344999995],[362422.46949999966,4308567.9645000007],[362418.72429999989,4308562.9300999995],[362416.63350000046,4308560.1195],[362415.74909999967,4308558.9305000007],[362414.80800000019,4308557.4845000003],[362409.57199999969,4308550.3640000001],[362409.26999999955,4308549.8150999993],[362401.62899999972,4308539.9845000003],[362393.17499999981,4308529.2874999996],[362385.17100000009,4308519.0319999997],[362355.37449999992,4308474.1849000007],[362353.38599999994,4308471.4535000008],[362343.15350000001,4308456.1484999992],[362337.62550000008,4308447.6640000008],[362329.16050000023,4308434.3983999994],[362318.84850000031,4308418.2345000003],[362314.75,4308411.7489],[362313.48849999998,4308412.7149999999],[362311.52460000012,4308410.2328999992],[362313.05300000031,4308409.0629999992],[362311.57749999966,4308406.7290000003],[362308.07459999993,4308401.4860999994],[362307.09179999959,4308399.9298999999],[362303.53199999966,4308394.2936000004],[362302.38800000027,4308392.4820000008],[362300.06099999975,4308388.8729999997],[362298.75650000013,4308386.6144999992],[362294.58420000039,4308380.7916999999],[362284.72699999996,4308367.0350000001],[362279.04200000037,4308359.2634999994],[362278.20959999971,4308357.5030000005],[362275.62459999975,4308352.4550000001],[362272.74399999995,4308347.3430000003],[362269.71999999974,4308342.1645],[362266.63150000013,4308336.9030000009],[362264.60900000017,4308333.4594999999],[362263.59250000026,4308331.7431000005],[362261.86799999978,4308328.8570000008],[362261.53509999998,4308325.4561999999],[362265.04440000001,4308323.6579999998],[362264.90840000007,4308323.3957000002],[362256.98120000027,4308308.1235000007],[362242.98709999956,4308281.1631000005],[362240.46600000001,4308282.3660000004],[362240.27300000004,4308281.8794999998],[362240.00910000037,4308281.2112000007],[362239.73699999973,4308280.5222999994],[362238.98330000043,4308278.6138000004],[362238.79140000045,4308278.1280000005],[362231.05399999954,4308261.5259000007],[362230.96569999959,4308261.3363000005],[362220.59499999974,4308239.0824999996],[362219.13599999994,4308235.9525000006],[362221.03299999982,4308235.0755000003],[362194.1091,4308176.6789999995],[362171.40450000018,4308127.3010000009],[362147.53450000007,4308072.7740000002],[362141.87999999989,4308059.8574999999],[362126.54399999976,4308022.0105000008],[362123.22549999971,4308012.0549999997],[362120.13949999958,4308001.9719999991],[362107.61849999987,4307962.9564999994],[362098.14879999962,4307929.6620000005],[362097.31159999967,4307928.0583999995],[362096.74949999992,4307926.0855],[362095.86149999965,4307924.0789999999],[362094.83449999988,4307922.2255000006],[362094.79499999993,4307922.1614999995],[362093.55850000028,4307920.3489999995],[362092.16150000039,4307918.6568999998],[362090.61649999954,4307917.0989999995],[362089.73110000044,4307916.3129999992],[362089.62550000008,4307916.2355000004],[362088.72549999971,4307915.6870000008],[362087.62949999981,4307915.2394999992],[362087.32249999978,4307915.1710000001],[362086.47350000031,4307914.9824999999],[362085.9785000002,4307914.9334999993],[362085.52199999988,4307914.9364999998],[362084.58150000032,4307915.0899999999],[362083.69350000005,4307915.4364999998],[362082.89800000004,4307915.9605],[362082.59250000026,4307916.2355000004],[362076.65899999999,4307918.8364000004],[362074.23300000001,4307915.0859999992],[362073.08949999977,4307913.3184999991],[362071.94450000022,4307911.4269999992],[362070.56620000023,4307908.7774999999],[362069.11180000007,4307905.9816999994],[362070.3088999996,4307904.9116999991],[362070.34609999973,4307904.8783999998],[362070.3956000004,4307904.8341000006],[362070.71169999987,4307904.5515999999],[362071.8666000003,4307903.0697000008],[362072.91530000046,4307901.6249000002],[362073.92349999957,4307899.8644999992],[362074.15299999993,4307899.3460000008],[362074.08100000024,4307897.8445999995],[362074.09219999984,4307897.7750000004],[362074.10099999979,4307897.7204999998],[362074.11919999961,4307897.6073000003],[362074.13210000005,4307897.5282000005],[362074.44979999959,4307895.5620000008],[362074.83139999956,4307893.5162000004],[362074.84269999992,4307893.4553999994],[362074.85560000036,4307893.3866000008],[362074.87239999976,4307893.2964999992],[362074.88320000004,4307893.2382999994],[362074.92590000015,4307893.0098999999],[362074.93630000018,4307892.9536000006],[362074.94880000036,4307892.8871999998],[362075.46320000011,4307890.1298999991],[362076.09399999958,4307887.9538000003],[362076.1481999997,4307887.7667999994],[362076.1612999998,4307887.7215999998],[362076.35809999984,4307887.0425000004],[362076.98859999981,4307884.7818999998],[362077.00019999966,4307884.7402999997],[362077.01630000025,4307884.6822999995],[362077.02909999993,4307884.6366000008],[362077.07220000029,4307884.4821000006],[362077.31070000026,4307883.6268000007],[362077.64030000009,4307882.7536999993],[362077.65899999999,4307882.7043999992],[362077.70260000043,4307882.5888999999],[362077.71870000008,4307882.5462999996],[362077.73599999957,4307882.5001999997],[362077.77670000028,4307882.3924000002],[362077.80150000006,4307882.3266000003],[362078.8367999997,4307879.5851000007],[362080.01240000036,4307876.9860999994],[362080.03139999975,4307876.9440000001],[362080.08710000012,4307876.8209000006],[362080.11089999974,4307876.7685000002],[362080.13719999976,4307876.7104000002],[362080.59389999975,4307875.7004000004],[362080.8638000004,4307875.1688999999],[362082.23529999983,4307872.4680000003],[362085.55850000028,4307866.5415000003],[362084.2890999997,4307862.0795000009],[362079.74799999967,4307846.0891999993],[362078.3925999999,4307841.2259],[362078.2452999996,4307840.6974999998],[362078.16390000004,4307840.4054000005],[362078.1445000004,4307840.3362000007],[362078.13260000013,4307840.2932999991],[362078.07610000018,4307840.0905000009],[362077.97670000046,4307839.7338999994],[362077.9637000002,4307839.6872000005],[362077.84810000006,4307839.2723999992],[362077.80429999996,4307839.1153999995],[362074.98940000031,4307829.0156999994],[362071.90579999983,4307826.7254000008],[362071.72039999999,4307826.5877],[362071.5680999998,4307826.4744000006],[362071.19460000005,4307826.1970000006],[362070.76709999982,4307825.8794999998],[362070.6529000001,4307825.7948000003],[362070.39740000013,4307825.6050000004],[362069.84329999983,4307825.1934999991],[362069.68140000012,4307825.0732000005],[362066.84910000023,4307822.9695999995],[362066.80989999976,4307822.9404000007],[362066.2285000002,4307822.5086000003],[362066.01559999958,4307822.3506000005],[362065.60099999979,4307822.0427000001],[362064.46619999968,4307821.1998999994],[362064.39429999981,4307821.1465000007],[362064.34360000025,4307821.1086999997],[362063.49129999988,4307820.4758000001],[362063.45399999991,4307820.4480000008],[362062.92090000026,4307820.0521000009],[362062.10130000021,4307819.4432999995],[362057.93709999975,4307816.3504000008],[362053.96920000017,4307813.4055000003],[362053.92789999954,4307813.3747000005],[362053.85639999993,4307813.3215999994],[362048.54729999974,4307809.3809999991],[362042.39589999989,4307803.5927000009],[362046.35709999967,4307800.6013999991],[362049.4243999999,4307798.2851],[362061.16999999993,4307789.4151000008],[362063.49349999987,4307787.6603999995],[362060.64240000024,4307777.3610999994],[362066.2659,4307772.4485999998],[362055.91949999984,4307760.2995999996],[362046.98660000041,4307749.5603999998],[362048.60360000003,4307747.8534999993],[362051.78399999999,4307744.7884999998],[362045.69149999972,4307721.807],[362041.63549999986,4307707.3568999991],[362041.36990000028,4307706.4107000008],[362040.82110000029,4307705.898],[362039.17019999959,4307704.4658000004],[362025.7834999999,4307692.8516000006],[362026.87050000019,4307691.4694999997],[362034.65149999969,4307680.8845000006],[362029.28199999966,4307659.5445000008],[362040.48950000014,4307667.9489999991],[362040.09190000035,4307666.3175000008],[362039.62000000011,4307664.3784999996],[362039.14800000004,4307662.4419999998],[362038.67599999998,4307660.5],[362038.20399999991,4307658.5600000005],[362037.73300000001,4307656.6201000009],[362037.38779999968,4307655.1959000006],[362037.26300000027,4307654.6809999999],[362037.18850000016,4307654.3745000008],[362025.89199999999,4307645.7383999992],[362021.89460000023,4307629.7914000005],[362024.85940000042,4307626.0031000003],[362022.15579999983,4307615.2179000005],[362017.7734000003,4307612.2006999999],[362012.68450000044,4307590.6037000008],[362012.36330000032,4307589.2401000001],[362012.15409999993,4307588.3527000006],[362012.08000000007,4307588.0380000006],[362011.83139999956,4307586.9832000006],[362011.70500000007,4307586.4465999994],[362011.62179999985,4307586.0938000008],[362011.5466,4307585.7748000007],[362010.16490000021,4307579.9108000007],[362005.51609999966,4307560.1827000007],[362005.85809999984,4307560.0170000009],[362004.36280000024,4307555.1864],[362004.09949999955,4307554.0318],[362003.9411000004,4307553.3378999997],[362003.61679999996,4307551.9160999991],[362003.5652999999,4307551.6905000005],[362003.54250000045,4307551.5906000007],[362003.5214999998,4307551.4985000007],[362003.4793999996,4307551.3142000008],[362003.36710000038,4307550.8221000005],[362003.17499999981,4307549.9798000008],[362003.1194000002,4307549.7361999992],[362003.09460000042,4307549.6275999993],[362002.56199999992,4307547.2927999999],[362007.17389999982,4307543.9641999993],[362008.94460000005,4307542.6862000003],[362007.55489999987,4307540.5861000009],[362006.37480000034,4307538.8036000002],[362006.14859999996,4307538.4619999994],[362006.05599999987,4307538.3222000003],[362006.03060000017,4307538.2838000003],[362005.88640000019,4307538.0660999995],[362003.38599999994,4307534.2895999998],[362003.07579999976,4307534.5181000009],[362002.57579999976,4307534.8864999991],[362000.35500000045,4307536.5225000009],[362000.20930000022,4307536.6298999991],[362000.15579999983,4307536.6693999991],[361999.98300000001,4307535.9134],[361999.96250000037,4307535.8234999999],[361999.88640000019,4307535.4905999992],[361999.67499999981,4307534.5644000005],[361998.8554999996,4307530.9738999996],[361998.83490000013,4307530.8836000003],[361998.79829999991,4307530.7236000001],[361998.72860000003,4307530.4180999994],[361998.71600000001,4307530.3628000002],[361998.66810000036,4307530.1525999997],[361998.57180000003,4307529.7311000004],[361998.54200000037,4307529.6004000008],[361998.52080000006,4307529.5075000003],[361998.50989999995,4307529.4596999995],[361998.48639999982,4307529.3568999991],[361998.47420000006,4307529.3037999999],[361998.46349999961,4307529.2568999995],[361998.29349999968,4307528.5120999999],[361998.26539999992,4307528.3889000006],[361998.25289999973,4307528.3339000009],[361998.15500000026,4307527.9052000009],[361998.14470000006,4307527.8598999996],[361995.80489999987,4307517.6087999996],[361991.52610000037,4307500.6111999992],[361990.89759999979,4307498.1161000002],[361990.87449999992,4307498.0244999994],[361990.86230000015,4307497.9761999995],[361990.82899999991,4307497.8440000005],[361990.79169999994,4307497.6956999991],[361990.7770999996,4307497.6374999993],[361990.76439999975,4307497.5872000009],[361986.06450000033,4307478.9155000001],[361984.24370000046,4307471.6068999991],[361983.90240000002,4307470.2125000004],[361983.40440000035,4307468.5319999997],[361983.35209999979,4307468.3559000008],[361983.33999999985,4307468.3151999991],[361983.3097000001,4307468.2127],[361983.27159999963,4307468.0837999992],[361983.25129999965,4307468.0154999997],[361983.23890000023,4307467.9740999993],[361983.20749999955,4307467.8677999992],[361983.18350000028,4307467.7872000001],[361981.37330000009,4307461.6802999992],[361978.68580000009,4307452.8872999996],[361978.66860000044,4307452.8308000006],[361978.62170000002,4307452.6775000002],[361978.6015999997,4307452.6119999997],[361978.56099999975,4307452.4790000003],[361978.51250000019,4307452.3202999998],[361978.44139999989,4307452.0877],[361978.42679999955,4307452.0401000008],[361977.98369999975,4307450.5901999995],[361977.15240000002,4307448.0660999995],[361977.00629999954,4307447.6225000005],[361976.94979999959,4307447.4508999996],[361976.92489999998,4307447.3756000008],[361976.90919999965,4307447.3278000001],[361976.88289999962,4307447.2477000002],[361976.85219999962,4307447.1544000003],[361976.82029999979,4307447.0577000007],[361976.29760000017,4307445.4704999998],[361973.80730000045,4307437.9088000003],[361968.25829999987,4307422.3958000001],[361966.53330000024,4307417.9765000008],[361966.45380000025,4307417.7730999999],[361966.40240000002,4307417.6412000004],[361966.33920000028,4307417.4794999994],[361966.28830000013,4307417.3489999995],[361964.41970000044,4307412.5618999992],[361963.94149999972,4307411.3367999997],[361957.40950000007,4307406.8968000002],[361956.99789999984,4307406.6170000006],[361956.64900000021,4307406.3798999991],[361956.13159999996,4307406.0281000007],[361956.06350000016,4307405.9820000008],[361956.02300000004,4307405.9542999994],[361955.81390000042,4307405.8122000005],[361954.87289999984,4307405.1724999994],[361944.33320000023,4307398.0083000008],[361944.84999999963,4307397.4196000006],[361946.44139999989,4307395.6075999998],[361946.48739999998,4307395.5552999992],[361947.80999999959,4307394.0494999997],[361948.84339999966,4307392.8727000002],[361949.21659999993,4307392.4477999993],[361949.35690000001,4307392.2880000006],[361951.75320000015,4307389.5595999993],[361955.36710000038,4307385.4447000008],[361954.32959999982,4307383.4028999992],[361954.27180000022,4307383.2888999991],[361954.24810000043,4307383.2424999997],[361954.21889999975,4307383.1848000009],[361954.18259999994,4307383.1135000009],[361954.15689999983,4307383.0629999992],[361954.13839999959,4307383.0264999997],[361954.10690000001,4307382.9646000005],[361954.06060000043,4307382.8735000007],[361953.98170000035,4307382.7182],[361953.67059999984,4307382.1059000008],[361953.59020000044,4307381.9475999996],[361953.54710000008,4307381.8629000001],[361953.49509999994,4307381.7605000008],[361953.31060000043,4307381.3975000009],[361953.2165000001,4307381.2122000009],[361953.11340000015,4307381.0094000008],[361953.00609999988,4307380.7981000002],[361952.89759999979,4307380.5844999999],[361952.86369999964,4307380.5176999997],[361952.68149999995,4307380.1594999991],[361952.66000000015,4307380.1170000006],[361949.01400000043,4307372.9408999998],[361948.8395999996,4307372.5976999998],[361948.48709999956,4307371.9042000007],[361948.42599999998,4307371.7838000003],[361948.35059999954,4307371.6353999991],[361948.33019999973,4307371.5953000002],[361947.8518000003,4307370.6534000002],[361947.60010000039,4307370.1579999998],[361945.87249999959,4307366.7579999994],[361945.03849999979,4307365.1165999994],[361941.82849999983,4307358.7990000006],[361939.69820000045,4307354.8178000003],[361935.21250000037,4307346.4345999993],[361928.22750000004,4307334.5380000006],[361926.96050000004,4307329.4075000007],[361926.39039999992,4307327.1004000008],[361926.08220000006,4307325.8517000005],[361925.90820000041,4307325.1462999992],[361925.7293999996,4307324.4220000003],[361925.70419999957,4307324.3199000005],[361925.67779999971,4307324.2125000004],[361925.6464999998,4307324.0858999994],[361925.5828999998,4307323.8279999997],[361925.37810000032,4307322.9979999997],[361925.11180000007,4307322.9249000009],[361924.8713999996,4307322.8588999994],[361924.80090000015,4307322.8395000007],[361923.95050000027,4307322.6060000006],[361922.21200000029,4307322.0972000007],[361922.12990000006,4307322.0731000006],[361922.07019999996,4307322.0557000004],[361921.98039999977,4307322.0294000003],[361921.9123999998,4307322.0096000005],[361921.83949999977,4307321.9880999997],[361921.74199999962,4307321.9595999997],[361921.69330000039,4307321.9452999998],[361921.61500000022,4307321.9224999994],[361921.49060000014,4307321.8859999999],[361919.26910000015,4307321.2402999997],[361917.22539999988,4307320.6462999992],[361916.96889999975,4307320.5717999991],[361916.42530000024,4307320.4137999993],[361916.31790000014,4307320.3826000001],[361916.16820000019,4307320.3391999993],[361916.07039999962,4307320.3106999993],[361915.87270000018,4307320.2532000002],[361915.77029999997,4307320.2234000005],[361915.37170000002,4307320.1075999998],[361913.5848000003,4307319.5883000009],[361905.94010000024,4307317.3664999995],[361905.21200000029,4307317.2546999995],[361905.13179999962,4307317.2424999997],[361905.0708999997,4307317.2331000008],[361904.98020000011,4307317.2191000003],[361904.89140000008,4307317.2054999992],[361904.62550000008,4307317.1646999996],[361904.08139999956,4307317.0811999999],[361903.75009999983,4307317.0303000007],[361900.22589999996,4307316.4892999995],[361888.77379999962,4307314.7360999994],[361889.21499999985,4307313.1614999995],[361889.23400000017,4307313.0940000005],[361889.48849999998,4307312.1940000001],[361889.87849999964,4307307.7670000009],[361889.88150000013,4307307.6775000002],[361890.06950000022,4307302.3350000009],[361889.95550000016,4307299.0629999992],[361889.85699999984,4307297.8081],[361889.78600000031,4307296.9069999997],[361889.03100000042,4307291.5250000004],[361888.79399999976,4307290.9780999999],[361887.80939999968,4307286.2289000005],[361887.10649999976,4307284.1225000005],[361886.56819999963,4307282.8945000004],[361886.55399999954,4307282.7969000004],[361886.2575000003,4307281.4010000005],[361885.99749999959,4307280.6569999997],[361885.75499999989,4307279.9619999994],[361885.27799999993,4307279.2026000004],[361884.65139999986,4307278.2049000002],[361884.55730000045,4307278.0551999994],[361884.51989999972,4307277.9956999999],[361884.11870000046,4307277.3568999991],[361883.82100000046,4307276.8828999996],[361883.77560000028,4307276.8107999992],[361883.74000000022,4307276.7541000005],[361883.58040000033,4307276.5000999998],[361882.44660000037,4307274.6949000005],[361881.9495000001,4307273.9035999998],[361881.46700000018,4307273.2704000007],[361881.37040000036,4307273.1437999997],[361877.04250000045,4307267.4691000003],[361871.99239999987,4307261.2641000003],[361871.03239999991,4307260.0845999997],[361860.09999999963,4307247.9603000004],[361850.18010000046,4307235.8469999991],[361846.16459999979,4307230.0734999999],[361840.22310000006,4307221.5309999995],[361835.65660000034,4307214.9651999995],[361833.42590000015,4307211.7579999994],[361826.53050000034,4307201.8436999992],[361817.07100000046,4307188.2429000009],[361815.30549999978,4307185.6894000005],[361807.83999999985,4307174.8920000009],[361800.90199999977,4307165.352],[361798.45399999991,4307161.6494999994],[361789.14190000016,4307147.5653000008],[361783.98489999957,4307139.7654999997],[361778.82079999987,4307131.7903000005],[361776.92349999957,4307128.5865000002],[361770.0708999997,4307117.0142999999],[361766.8348000003,4307111.6637999993],[361751.35690000001,4307088.3166000005],[361744.64850000013,4307078.1961000003],[361724.80999999959,4307048.2715000007],[361723.96559999976,4307046.9979999997],[361709.83229999989,4307038.9238000009],[361715.93709999975,4307034.8873999994],[361713.88879999984,4307031.7973999996],[361706.49010000005,4307021.7855999991],[361705.34520000033,4307020.2360999994],[361692.51800000016,4307001.8970999997],[361682.11600000039,4306986.7405999992],[361664.90990000032,4306962.7688999996],[361660.80790000036,4306957.0539999995],[361660.40330000035,4306956.2945000008],[361660.00430000015,4306955.5456000008],[361659.98060000036,4306955.5011999998],[361659.82320000045,4306955.2058000006],[361659.60379999969,4306954.9674999993],[361658.03289999999,4306953.2616000008],[361656.48699999973,4306951.5831000004],[361656.25590000022,4306951.2334000003],[361652.2977,4306945.2463000007],[361646.21999999974,4306936.0534000006],[361645.25509999972,4306934.6843999997],[361645.22800000012,4306934.6459999997],[361645.0345999999,4306934.3717999998],[361644.99139999971,4306934.3103],[361644.37739999965,4306933.4392000008],[361644.33920000028,4306933.3848999999],[361644.15180000011,4306933.1192000005],[361643.63750000019,4306932.3893999998],[361643.44550000038,4306932.1171000004],[361646.37160000019,4306929.9591000006],[361651.4665000001,4306908.3935000002],[361654.33260000031,4306896.2614999991],[361664.23450000025,4306880.6585000008]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855615,"SIGPAC_FOGAIBA.DN_OID":1746640395,"SIGPAC_FOGAIBA.DN_SURFACE":136323.14147193308,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":9017,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":142,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"CA","COD_USOS_SIGPAC.Descripción":"VIALES","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00209017R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855616,"geometry":{"type":"Polygon","coordinates":[[[361484.50150000025,4307119.3300000001],[361487.90620000008,4307121.3375000004],[361510.57760000043,4307134.6559999995],[361534.69550000038,4307149.1960000005],[361541.22510000039,4307153.3619999997],[361548.30700000003,4307140.4622000009],[361550.85500000045,4307138.5658999998],[361554.05769999977,4307138.3517000005],[361560.49390000012,4307142.5750999991],[361565.71360000037,4307130.0524000004],[361570.53479999956,4307132.1637999993],[361573.01510000043,4307131.7948000003],[361578.65670000017,4307131.3332000002],[361578.66940000001,4307131.4210000001],[361579.62430000026,4307131.3888000008],[361581.1409,4307138.2256000005],[361581.94809999969,4307143.4192999993],[361582.00100000016,4307143.7598999999],[361582.03249999974,4307143.9624000005],[361582.04420000035,4307144.0380000006],[361582.05229999963,4307144.0900999997],[361582.06340000033,4307144.1612999998],[361582.95150000043,4307149.8752999995],[361582.6688000001,4307154.5702],[361582.66579999961,4307154.6300000008],[361583.45160000026,4307158.3851999994],[361583.87100000028,4307160.0116000008],[361583.90909999982,4307160.1594999991],[361583.92250000034,4307160.2114000004],[361583.93340000045,4307160.2537999991],[361583.96380000003,4307160.3720999993],[361584.02869999968,4307160.3864999991],[361584.13870000001,4307160.4105999991],[361584.43439999968,4307160.4758000001],[361584.48469999991,4307160.4868000001],[361584.52919999976,4307160.4967],[361584.6754999999,4307160.5288999993],[361585.21169999987,4307160.6470999997],[361585.57039999962,4307160.7259],[361585.63399999961,4307160.7400000002],[361585.9916000003,4307160.8188000005],[361586.35369999986,4307160.8986000009],[361586.53029999975,4307160.9375],[361586.68900000025,4307160.9724000003],[361586.80229999963,4307160.9974000007],[361587.02089999989,4307161.0456000008],[361587.69269999955,4307162.8699999992],[361587.83770000003,4307163.2635999992],[361587.85929999966,4307163.3223000001],[361587.90890000015,4307163.4572999999],[361587.9375,4307163.5350000001],[361587.99629999977,4307163.6945999991],[361588.63509999961,4307165.4295000006],[361593.97059999965,4307179.9191999994],[361594.30829999968,4307180.8358999994],[361594.41079999972,4307181.1143999994],[361594.39400000032,4307181.2970000003],[361594.2910000002,4307182.4145],[361593.90089999977,4307182.8344999999],[361593.51090000011,4307183.2544999998],[361592.23120000027,4307183.0843000002],[361591.91110000014,4307182.9046999998],[361591.73330000043,4307182.8021000009],[361575.95999999996,4307173.7006000001],[361573.80229999963,4307172.4556000009],[361572.84339999966,4307171.9024],[361572.2268000003,4307171.5464999992],[361571.48869999964,4307171.1206],[361566.02089999989,4307167.9655000009],[361565.02819999959,4307167.3897999991],[361546.24100000039,4307156.4965000004],[361487.71779999975,4307121.9591000006],[361484.36099999957,4307119.9778000005],[361484.31900000013,4307119.9507999998],[361484.17250000034,4307119.8565999996],[361484.50150000025,4307119.3300000001]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855616,"SIGPAC_FOGAIBA.DN_OID":1241848304,"SIGPAC_FOGAIBA.DN_SURFACE":1357.7254727388088,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":40,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":37,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200040R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855617,"geometry":{"type":"Polygon","coordinates":[[[361518.74260000046,4307064.3795999996],[361535.86349999998,4307074.7128999997],[361536.62719999999,4307075.1736999992],[361562.33229999989,4307090.2314999998],[361562.38929999992,4307090.2649000008],[361572.70139999967,4307096.8369999994],[361574.26520000026,4307097.8340000007],[361574.71339999977,4307101.3890000004],[361574.7265999997,4307101.4936999995],[361574.76570000034,4307101.8038999997],[361575.28160000034,4307105.8967000004],[361576.36490000039,4307112.7222000007],[361576.5493999999,4307113.8849999998],[361578.5811999999,4307126.6865999997],[361579.62430000026,4307131.3888000008],[361578.66940000001,4307131.4210000001],[361578.65670000017,4307131.3332000002],[361573.01510000043,4307131.7948000003],[361570.53479999956,4307132.1637999993],[361565.71360000037,4307130.0524000004],[361560.49390000012,4307142.5750999991],[361554.05769999977,4307138.3517000005],[361550.85500000045,4307138.5658999998],[361548.30700000003,4307140.4622000009],[361541.22510000039,4307153.3619999997],[361534.69550000038,4307149.1960000005],[361510.57760000043,4307134.6559999995],[361487.90620000008,4307121.3375000004],[361484.50150000025,4307119.3300000001],[361499.19159999955,4307095.8182999995],[361501.41179999989,4307092.2183999997],[361518.05260000005,4307065.6126000006],[361518.25289999973,4307065.2712999992],[361518.74260000046,4307064.3795999996]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855617,"SIGPAC_FOGAIBA.DN_OID":440278724,"SIGPAC_FOGAIBA.DN_SURFACE":4741.2383443945291,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":40,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":31,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200040R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855618,"geometry":{"type":"Polygon","coordinates":[[[361463.49469999969,4307054.7137000002],[361482.01620000042,4307063.1358000003],[361480.94489999954,4307065.4567000009],[361456.85319999978,4307102.3767000008],[361456.40429999959,4307102.0901999995],[361456.32919999957,4307102.0420999993],[361456.24560000002,4307101.9889000002],[361456.20720000006,4307101.9641999993],[361456.13460000046,4307101.9177000001],[361455.93250000011,4307101.7884],[361455.88839999959,4307101.7601999994],[361455.83059999999,4307101.7233000007],[361455.76150000002,4307101.6790999994],[361454.65450000018,4307101.0072000008],[361454.5876000002,4307100.9666000009],[361452.38790000044,4307099.6314000003],[361448.56149999984,4307097.3091000002],[361448.33359999955,4307097.1283999998],[361447.60450000037,4307096.5506999996],[361446.25119999982,4307095.4782999996],[361446.09480000008,4307095.3543999996],[361446.00040000025,4307095.2795000002],[361445.95959999971,4307095.2470999993],[361445.86139999982,4307095.1693999991],[361448.27120000031,4307090.6592999995],[361451.9310999997,4307085.1097999997],[361457.38520000037,4307075.7708999999],[361457.70170000009,4307075.2291999999],[361452.0223000003,4307068.3897999991],[361463.49469999969,4307054.7137000002]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855618,"SIGPAC_FOGAIBA.DN_OID":1241848263,"SIGPAC_FOGAIBA.DN_SURFACE":780.30889107833889,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":38,"SIGPAC_FOGAIBA.RECINTO":3,"SIGPAC_FOGAIBA.PENDIENTE_":40,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200038R0003","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855619,"geometry":{"type":"Polygon","coordinates":[[[361567.08239999972,4306975.8005999997],[361567.07490000036,4306976.4429000001],[361566.98099999968,4306976.6138000004],[361565.13540000003,4306979.9697999991],[361537.4084999999,4307030.4181999993],[361516.13939999975,4307017.6074000001],[361518.65189999994,4307015.2101000007],[361510.53139999975,4307000.1712999996],[361510.90280000027,4306999.9433999993],[361511.00370000023,4306999.8816999998],[361511.11340000015,4306999.8147],[361511.16150000039,4306999.7854999993],[361511.23940000031,4306999.7379999999],[361511.48739999998,4306999.5873000007],[361511.92430000007,4306999.3214999996],[361516.18259999994,4306997.1355000008],[361516.27880000044,4306997.0861000009],[361516.43329999968,4306997.0068999995],[361517.02740000002,4306996.7017999999],[361517.70519999973,4306996.3539000005],[361519.17200000025,4306995.6009999998],[361524.22229999956,4306992.9260000009],[361546.79239999969,4306980.9712000005],[361550.57820000034,4306979.2970000003],[361550.62339999992,4306979.2770000007],[361551.54220000003,4306978.8706999999],[361553.65199999977,4306978.0603999998],[361555.64169999957,4306977.5407999996],[361555.78359999973,4306977.5189999994],[361555.89460000023,4306977.5018000007],[361555.97219999973,4306977.4899000004],[361556.04860000033,4306977.4780999999],[361556.74170000013,4306977.3714000005],[361557.0231999997,4306977.3279999997],[361557.06759999972,4306977.3212000001],[361557.20189999975,4306977.3004999999],[361558.52929999959,4306977.1411000006],[361558.62650000025,4306977.1294],[361558.8618999999,4306977.1010999996],[361558.93819999974,4306977.0921],[361559.54250000045,4306977.0201999992],[361566.92219999991,4306975.8267999999],[361567.02880000044,4306975.8093999997],[361567.08239999972,4306975.8005999997]],[[361525.60230000038,4307004.2723999992],[361520.41889999993,4307013.0539999995],[361526.36280000024,4307017.4069999997],[361531.77500000037,4307008.8167000003],[361525.60230000038,4307004.2723999992]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855619,"SIGPAC_FOGAIBA.DN_OID":1241848252,"SIGPAC_FOGAIBA.DN_SURFACE":1351.1498190925392,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":154,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":48,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200154R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855620,"geometry":{"type":"Polygon","coordinates":[[[361510.53139999975,4307000.1712999996],[361518.65189999994,4307015.2101000007],[361516.13939999975,4307017.6074000001],[361514.9422000004,4307018.7503999993],[361488.76109999977,4307043.7259999998],[361488.54629999958,4307043.9308000002],[361488.46939999983,4307044.0042000003],[361487.29030000046,4307045.1291000005],[361487.11099999957,4307045.3002000004],[361482.89910000004,4307042.7583000008],[361468.27180000022,4307033.9310999997],[361467.21590000018,4307033.2218999993],[361462.00629999954,4307029.7221000008],[361460.96200000029,4307029.0205000006],[361461.77589999977,4307028.5212999992],[361461.82100000046,4307028.4937999994],[361461.99610000011,4307028.3861999996],[361462.12310000043,4307028.3084999993],[361462.17339999974,4307028.2774999999],[361467.75719999988,4307024.8494000006],[361468.21889999975,4307024.5659999996],[361468.80289999954,4307024.2073999997],[361469.23579999991,4307023.9416000005],[361469.70689999964,4307023.6524999999],[361469.80159999989,4307023.5943],[361470.10659999959,4307023.4069999997],[361470.25019999966,4307023.3188000005],[361470.42679999955,4307023.2104000002],[361470.54140000045,4307023.1400000006],[361470.81560000032,4307022.9716999996],[361471.95639999956,4307022.2714000009],[361472.2762000002,4307022.0749999993],[361472.35940000042,4307022.0239000004],[361472.44170000032,4307021.9733000007],[361472.48639999982,4307021.9458000008],[361472.72339999955,4307021.8004000001],[361474.33600000013,4307020.8103],[361476.86459999997,4307019.2578999996],[361476.94560000021,4307019.2081000004],[361477.97470000014,4307018.5763000008],[361485.30559999961,4307015.0405999999],[361487.49010000005,4307013.9876000006],[361487.53369999956,4307013.9664999992],[361487.58700000029,4307013.9408],[361489.43200000003,4307013.0514000002],[361490.88790000044,4307012.1622000001],[361490.98249999993,4307012.1043999996],[361491.03249999974,4307012.0739999991],[361491.11990000028,4307012.0205000006],[361491.17860000022,4307011.9846999999],[361491.32330000028,4307011.8964000009],[361492.80769999977,4307010.9899000004],[361502.61129999999,4307005.0047999993],[361503.01080000028,4307004.7610999998],[361508.49469999969,4307001.4133000001],[361509.00779999979,4307001.0999999996],[361509.52539999969,4307000.7840999998],[361509.71750000026,4307000.6670999993],[361509.76640000008,4307000.6373999994],[361510.53139999975,4307000.1712999996]],[[361507.96439999994,4307003.1389000006],[361506.37409999967,4307003.6691999994],[361506.93719999958,4307005.1016000006],[361504.93570000026,4307005.8252000008],[361507.69440000039,4307012.6439999994],[361511.4852,4307011.1260000002],[361507.96439999994,4307003.1389000006]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855620,"SIGPAC_FOGAIBA.DN_OID":1241848296,"SIGPAC_FOGAIBA.DN_SURFACE":1111.1745861150703,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":155,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":57,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200155R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855621,"geometry":{"type":"Polygon","coordinates":[[[361567.02529999986,4306980.7874999996],[361566.61180000007,4307017.3396000005],[361566.74179999996,4307034.2891000006],[361567.56180000026,4307044.6384999994],[361568.86780000012,4307055.0034999996],[361569.11079999991,4307056.9312999994],[361569.21190000046,4307057.7337999996],[361569.73979999963,4307061.9249000009],[361570.09159999993,4307064.7163999993],[361570.15220000036,4307065.1973000001],[361570.25590000022,4307066.0207000002],[361569.3713999996,4307065.5121999998],[361559.6409,4307059.9163000006],[361530.42920000013,4307043.1170000006],[361536.54559999984,4307031.9876000006],[361541.05240000039,4307034.1405999996],[361542.00100000016,4307033.0818000007],[361547.22169999965,4307035.9959999993],[361543.70399999991,4307042.7385000009],[361546.16170000006,4307043.9888000004],[361543.70150000043,4307048.4145],[361556.0820000004,4307056.1815000009],[361563.54229999986,4307044.5499000009],[361556.53550000023,4307038.8756000008],[361557.21619999968,4307036.6397999991],[361544.04540000018,4307029.8265000004],[361546.99480000045,4307025.0944999997],[361547.93859999999,4307025.4316000007],[361553.61980000045,4307017.2554000001],[361548.77840000018,4307013.9997000005],[361558.24039999954,4306996.2476000004],[361566.8459999999,4306981.0694999993],[361567.02529999986,4306980.7874999996]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855621,"SIGPAC_FOGAIBA.DN_OID":1241848244,"SIGPAC_FOGAIBA.DN_SURFACE":1125.9775006699251,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":41,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":34,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,12,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200041R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855622,"geometry":{"type":"Polygon","coordinates":[[[361567.07490000036,4306976.4429000001],[361567.06359999999,4306977.4529999997],[361567.06269999966,4306977.5350000001],[361567.06099999975,4306977.6782000009],[361567.06030000001,4306977.7410000004],[361567.05389999971,4306978.2967000008],[361567.03280000016,4306980.1386999991],[361567.02929999959,4306980.4373000003],[361567.02850000001,4306980.5054000001],[361567.02799999993,4306980.5515000001],[361567.02740000002,4306980.6107999999],[361567.02529999986,4306980.7874999996],[361566.8459999999,4306981.0694999993],[361558.24039999954,4306996.2476000004],[361548.77840000018,4307013.9997000005],[361553.61980000045,4307017.2554000001],[361547.93859999999,4307025.4316000007],[361546.99480000045,4307025.0944999997],[361544.04540000018,4307029.8265000004],[361557.21619999968,4307036.6397999991],[361556.53550000023,4307038.8756000008],[361563.54229999986,4307044.5499000009],[361556.0820000004,4307056.1815000009],[361543.70150000043,4307048.4145],[361546.16170000006,4307043.9888000004],[361543.70399999991,4307042.7385000009],[361547.22169999965,4307035.9959999993],[361542.00100000016,4307033.0818000007],[361541.05240000039,4307034.1405999996],[361536.54559999984,4307031.9876000006],[361537.33579999954,4307030.5496999994],[361537.4084999999,4307030.4181999993],[361565.13540000003,4306979.9697999991],[361566.98099999968,4306976.6138000004],[361567.07490000036,4306976.4429000001]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855622,"SIGPAC_FOGAIBA.DN_OID":440278718,"SIGPAC_FOGAIBA.DN_SURFACE":502.74575875783336,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":41,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":37,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200041R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855623,"geometry":{"type":"Polygon","coordinates":[[[361516.13939999975,4307017.6074000001],[361537.4084999999,4307030.4181999993],[361537.33579999954,4307030.5496999994],[361536.54559999984,4307031.9876000006],[361530.42920000013,4307043.1170000006],[361518.74260000046,4307064.3795999996],[361492.55449999962,4307048.6011999995],[361492.3125,4307048.4397999998],[361492.26939999964,4307048.4136999995],[361492.11010000017,4307048.3176000006],[361491.8395999996,4307048.1544000003],[361487.9227,4307045.7905000001],[361487.11099999957,4307045.3002000004],[361487.29030000046,4307045.1291000005],[361488.46939999983,4307044.0042000003],[361488.54629999958,4307043.9308000002],[361488.76109999977,4307043.7259999998],[361514.9422000004,4307018.7503999993],[361516.13939999975,4307017.6074000001]],[[361517.49729999993,4307041.8202],[361513.26620000042,4307046.8444999997],[361521.10419999994,4307050.9876000006],[361524.01900000032,4307045.5304000005],[361517.49729999993,4307041.8202]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855623,"SIGPAC_FOGAIBA.DN_OID":1241848257,"SIGPAC_FOGAIBA.DN_SURFACE":1144.2037783709409,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":102,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":34,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200102R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855624,"geometry":{"type":"Polygon","coordinates":[[[361460.96200000029,4307029.0205000006],[361462.00629999954,4307029.7221000008],[361461.60109999962,4307030.0142999999],[361461.60049999971,4307030.8144000005],[361467.19330000039,4307035.0432999991],[361471.45139999967,4307037.3786999993],[361462.41029999964,4307042.1895000003],[361449.50789999962,4307049.4685999993],[361448.67059999984,4307048.1620000005],[361451.53259999957,4307044.6784000006],[361447.95839999989,4307037.3807999995],[361431.22970000003,4307045.8036000002],[361430.79009999987,4307045.3267000001],[361433.99399999995,4307043.7182],[361446.70480000041,4307037.3367999997],[361447.38630000036,4307036.9947999995],[361447.56350000016,4307036.9058999997],[361448.01159999985,4307036.6810999997],[361449.73739999998,4307035.6601999998],[361450.52359999996,4307035.1951000001],[361460.96200000029,4307029.0205000006]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855624,"SIGPAC_FOGAIBA.DN_OID":1241848317,"SIGPAC_FOGAIBA.DN_SURFACE":232.9960224967914,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":38,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":114,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200038R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855625,"geometry":{"type":"Polygon","coordinates":[[[361462.00629999954,4307029.7221000008],[361467.21590000018,4307033.2218999993],[361468.27180000022,4307033.9310999997],[361482.89910000004,4307042.7583000008],[361487.11099999957,4307045.3002000004],[361487.9227,4307045.7905000001],[361491.8395999996,4307048.1544000003],[361492.11010000017,4307048.3176000006],[361492.26939999964,4307048.4136999995],[361492.3125,4307048.4397999998],[361492.55449999962,4307048.6011999995],[361482.22190000024,4307063.4997000005],[361480.94489999954,4307065.4567000009],[361482.01620000042,4307063.1358000003],[361463.49469999969,4307054.7137000002],[361452.0223000003,4307068.3897999991],[361451.7818,4307068.1001999993],[361431.22970000003,4307045.8036000002],[361447.95839999989,4307037.3807999995],[361451.53259999957,4307044.6784000006],[361448.67059999984,4307048.1620000005],[361449.50789999962,4307049.4685999993],[361462.41029999964,4307042.1895000003],[361471.45139999967,4307037.3786999993],[361467.19330000039,4307035.0432999991],[361461.60049999971,4307030.8144000005],[361461.60109999962,4307030.0142999999],[361462.00629999954,4307029.7221000008]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855625,"SIGPAC_FOGAIBA.DN_OID":440278699,"SIGPAC_FOGAIBA.DN_SURFACE":1000.5317243687446,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":38,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":52,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200038R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855626,"geometry":{"type":"Polygon","coordinates":[[[361430.79009999987,4307045.3267000001],[361431.22970000003,4307045.8036000002],[361451.7818,4307068.1001999993],[361452.0223000003,4307068.3897999991],[361457.70170000009,4307075.2291999999],[361457.38520000037,4307075.7708999999],[361451.9310999997,4307085.1097999997],[361448.27120000031,4307090.6592999995],[361445.86139999982,4307095.1693999991],[361445.53770000022,4307094.9127999991],[361444.99760000035,4307094.4846999999],[361440.17119999975,4307090.6597000007],[361436.5186999999,4307087.8019999992],[361436.43960000016,4307087.7401000001],[361436.13100000005,4307087.4987000003],[361434.84119999968,4307086.4896000009],[361414.52190000005,4307065.0404000003],[361411.79829999991,4307061.1665000003],[361411.75219999999,4307061.1009],[361411.71109999996,4307061.0425000004],[361411.63489999995,4307060.9341000002],[361411.60819999967,4307060.8961999994],[361411.43850000016,4307060.6546999998],[361411.15789999999,4307060.2555999998],[361411.11060000025,4307060.1885000002],[361411.01099999994,4307060.0467000008],[361410.94680000003,4307059.9552999996],[361410.64900000021,4307059.5318999998],[361410.56020000018,4307059.4057],[361410.50980000012,4307059.3337999992],[361410.41949999984,4307059.2053999994],[361410.36739999987,4307059.1313000005],[361410.33729999978,4307059.0885000005],[361410.24199999962,4307058.9529999997],[361410.2006000001,4307058.8940999992],[361410.0223000003,4307058.6403999999],[361409.99010000005,4307058.5946999993],[361409.89149999991,4307058.4543999992],[361409.62270000018,4307058.0721000005],[361409.44570000004,4307057.8203999996],[361409.03139999975,4307057.2312000003],[361409.56469999999,4307056.8557999991],[361413.89199999999,4307053.8110000007],[361416.99990000017,4307052.2506000008],[361420.10859999992,4307050.6897],[361424.00509999972,4307048.7335000001],[361428.36429999955,4307046.5447000004],[361429.42599999998,4307046.0117000006],[361429.73649999965,4307045.8556999993],[361429.83229999989,4307045.8077000007],[361429.9768000003,4307045.7350999992],[361430.35840000026,4307045.5435000006],[361430.79009999987,4307045.3267000001]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855626,"SIGPAC_FOGAIBA.DN_OID":1241848302,"SIGPAC_FOGAIBA.DN_SURFACE":1161.8924693880042,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":153,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":50,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200153R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855627,"geometry":{"type":"Polygon","coordinates":[[[361566.23199999984,4306967.0610000007],[361571.05200000014,4306970.8010000009],[361571.2790000001,4306973.7670000009],[361571.47200000007,4306976.2905999999],[361572.02190000005,4306984.2705000006],[361572.52199999988,4306992.8299000002],[361572.77199999988,4306999.9000000004],[361572.92200000025,4307005.6899999995],[361573.14199999999,4307010.9495000001],[361573.36199999973,4307016.3094999995],[361573.48199999984,4307022.1394999996],[361573.47200000007,4307027.8893999998],[361573.35369999986,4307032.8787999991],[361573.35199999996,4307032.9489999991],[361573.29789999966,4307035.0089999996],[361573.23190000001,4307037.5188999996],[361573.20199999958,4307041.9590000007],[361573.23199999984,4307046.5889999997],[361573.25409999955,4307048.4123999998],[361573.7620000001,4307053.7184999995],[361576.0887000002,4307075.7372999992],[361576.24810000043,4307077.2467],[361576.65940000024,4307081.1382999998],[361576.98159999959,4307084.1874000002],[361578.82299999986,4307100.0539999995],[361577.79789999966,4307099.4799000006],[361577.85580000002,4307099.8724000007],[361582.40139999986,4307130.6301000006],[361582.56510000024,4307131.4737999998],[361582.65720000025,4307131.8586999997],[361585.4506000001,4307145.1921999995],[361585.64010000043,4307146.1809],[361585.76269999985,4307146.8204999994],[361585.80599999987,4307147.0459000003],[361585.99179999996,4307148.0150000006],[361586.07660000026,4307148.4572000001],[361586.24179999996,4307149.3189000003],[361586.25679999962,4307149.3783999998],[361586.26719999965,4307149.4189999998],[361586.52309999987,4307150.4245999996],[361587.57699999958,4307154.5705999993],[361589.25800000038,4307160.6958000008],[361590.96899999958,4307166.0098999999],[361593.67009999976,4307173.1874000002],[361598.67179999966,4307184.7519000005],[361599.47750000004,4307186.3487999998],[361599.66459999979,4307186.7197999991],[361646.08129999973,4307213.5044],[361656.37009999994,4307219.4417000003],[361695.85280000046,4307248.3171999995],[361690.80510000046,4307247.0684999991],[361690.30099999998,4307246.6915000007],[361657.71100000013,4307222.3024000004],[361607.84900000039,4307196.7534999996],[361603.03550000023,4307193.9925999995],[361597.74830000009,4307190.9562999997],[361593.7424999997,4307188.6559999995],[361592.33849999961,4307187.8515000008],[361590.41100000031,4307186.6246000007],[361564.71100000013,4307170.2555],[361539.33100000024,4307154.0866],[361516.78149999958,4307140.6270000003],[361510.33239999972,4307136.7769000009],[361493.85149999987,4307126.9379999992],[361487.18149999995,4307122.9580000006],[361451.23149999976,4307100.0590000004],[361447.10149999987,4307097.4296000004],[361431.39159999974,4307088.4700000007],[361428.98149999976,4307085.4200999998],[361426.15899999999,4307081.8488999996],[361419.48149999976,4307073.4004999995],[361407.08150000032,4307057.7111000009],[361404.94149999972,4307055.0010000002],[361417.70150000043,4307049.0710000005],[361445.40149999969,4307035.3008999992],[361460.63200000022,4307026.9409999996],[361471.84810000006,4307020.2854999993],[361487.86450000014,4307012.1920999996],[361491.78050000034,4307009.6714999992],[361500.43640000001,4307004.0988999996],[361525.89499999955,4306990.7905000001],[361539.39209999982,4306982.5510000009],[361552.04200000037,4306975.9210000001],[361566.23199999984,4306967.0610000007]],[[361567.08239999972,4306975.8005999997],[361567.02880000044,4306975.8093999997],[361566.92219999991,4306975.8267999999],[361559.54250000045,4306977.0201999992],[361558.93819999974,4306977.0921],[361558.8618999999,4306977.1010999996],[361558.62650000025,4306977.1294],[361558.52929999959,4306977.1411000006],[361557.20189999975,4306977.3004999999],[361557.06759999972,4306977.3212000001],[361557.0231999997,4306977.3279999997],[361556.74170000013,4306977.3714000005],[361556.04860000033,4306977.4780999999],[361555.97219999973,4306977.4899000004],[361555.89460000023,4306977.5018000007],[361555.78359999973,4306977.5189999994],[361555.64169999957,4306977.5407999996],[361553.65199999977,4306978.0603999998],[361551.54220000003,4306978.8706999999],[361550.62339999992,4306979.2770000007],[361550.57820000034,4306979.2970000003],[361546.79239999969,4306980.9712000005],[361524.22229999956,4306992.9260000009],[361519.17200000025,4306995.6009999998],[361517.70519999973,4306996.3539000005],[361517.02740000002,4306996.7017999999],[361516.43329999968,4306997.0068999995],[361516.27880000044,4306997.0861000009],[361516.18259999994,4306997.1355000008],[361511.92430000007,4306999.3214999996],[361511.48739999998,4306999.5873000007],[361511.23940000031,4306999.7379999999],[361511.16150000039,4306999.7854999993],[361511.11340000015,4306999.8147],[361511.00370000023,4306999.8816999998],[361510.90280000027,4306999.9433999993],[361510.53139999975,4307000.1712999996],[361509.76640000008,4307000.6373999994],[361509.71750000026,4307000.6670999993],[361509.52539999969,4307000.7840999998],[361509.00779999979,4307001.0999999996],[361508.49469999969,4307001.4133000001],[361503.01080000028,4307004.7610999998],[361502.61129999999,4307005.0047999993],[361492.80769999977,4307010.9899000004],[361491.32330000028,4307011.8964000009],[361491.17860000022,4307011.9846999999],[361491.11990000028,4307012.0205000006],[361491.03249999974,4307012.0739999991],[361490.98249999993,4307012.1043999996],[361490.88790000044,4307012.1622000001],[361489.43200000003,4307013.0514000002],[361487.58700000029,4307013.9408],[361487.53369999956,4307013.9664999992],[361487.49010000005,4307013.9876000006],[361485.30559999961,4307015.0405999999],[361477.97470000014,4307018.5763000008],[361476.94560000021,4307019.2081000004],[361476.86459999997,4307019.2578999996],[361474.33600000013,4307020.8103],[361472.72339999955,4307021.8004000001],[361472.48639999982,4307021.9458000008],[361472.44170000032,4307021.9733000007],[361472.35940000042,4307022.0239000004],[361472.2762000002,4307022.0749999993],[361471.95639999956,4307022.2714000009],[361470.81560000032,4307022.9716999996],[361470.54140000045,4307023.1400000006],[361470.42679999955,4307023.2104000002],[361470.25019999966,4307023.3188000005],[361470.10659999959,4307023.4069999997],[361469.80159999989,4307023.5943],[361469.70689999964,4307023.6524999999],[361469.23579999991,4307023.9416000005],[361468.80289999954,4307024.2073999997],[361468.21889999975,4307024.5659999996],[361467.75719999988,4307024.8494000006],[361462.17339999974,4307028.2774999999],[361462.12310000043,4307028.3084999993],[361461.99610000011,4307028.3861999996],[361461.82100000046,4307028.4937999994],[361461.77589999977,4307028.5212999992],[361460.96200000029,4307029.0205000006],[361450.52359999996,4307035.1951000001],[361449.73739999998,4307035.6601999998],[361448.01159999985,4307036.6810999997],[361447.56350000016,4307036.9058999997],[361447.38630000036,4307036.9947999995],[361446.70480000041,4307037.3367999997],[361433.99399999995,4307043.7182],[361430.79009999987,4307045.3267000001],[361430.35840000026,4307045.5435000006],[361429.9768000003,4307045.7350999992],[361429.83229999989,4307045.8077000007],[361429.73649999965,4307045.8556999993],[361429.42599999998,4307046.0117000006],[361428.36429999955,4307046.5447000004],[361424.00509999972,4307048.7335000001],[361420.10859999992,4307050.6897],[361416.99990000017,4307052.2506000008],[361413.89199999999,4307053.8110000007],[361409.56469999999,4307056.8557999991],[361409.03139999975,4307057.2312000003],[361409.44570000004,4307057.8203999996],[361409.62270000018,4307058.0721000005],[361409.89149999991,4307058.4543999992],[361409.99010000005,4307058.5946999993],[361410.0223000003,4307058.6403999999],[361410.2006000001,4307058.8940999992],[361410.24199999962,4307058.9529999997],[361410.33729999978,4307059.0885000005],[361410.36739999987,4307059.1313000005],[361410.41949999984,4307059.2053999994],[361410.50980000012,4307059.3337999992],[361410.56020000018,4307059.4057],[361410.64900000021,4307059.5318999998],[361410.94680000003,4307059.9552999996],[361411.01099999994,4307060.0467000008],[361411.11060000025,4307060.1885000002],[361411.15789999999,4307060.2555999998],[361411.43850000016,4307060.6546999998],[361411.60819999967,4307060.8961999994],[361411.63489999995,4307060.9341000002],[361411.71109999996,4307061.0425000004],[361411.75219999999,4307061.1009],[361411.79829999991,4307061.1665000003],[361414.52190000005,4307065.0404000003],[361434.84119999968,4307086.4896000009],[361436.13100000005,4307087.4987000003],[361436.43960000016,4307087.7401000001],[361436.5186999999,4307087.8019999992],[361440.17119999975,4307090.6597000007],[361444.99760000035,4307094.4846999999],[361445.53770000022,4307094.9127999991],[361445.86139999982,4307095.1693999991],[361445.95959999971,4307095.2470999993],[361446.00040000025,4307095.2795000002],[361446.09480000008,4307095.3543999996],[361446.25119999982,4307095.4782999996],[361447.60450000037,4307096.5506999996],[361448.33359999955,4307097.1283999998],[361448.56149999984,4307097.3091000002],[361452.38790000044,4307099.6314000003],[361454.5876000002,4307100.9666000009],[361454.65450000018,4307101.0072000008],[361455.76150000002,4307101.6790999994],[361455.83059999999,4307101.7233000007],[361455.88839999959,4307101.7601999994],[361455.93250000011,4307101.7884],[361456.13460000046,4307101.9177000001],[361456.20720000006,4307101.9641999993],[361456.24560000002,4307101.9889000002],[361456.32919999957,4307102.0420999993],[361456.40429999959,4307102.0901999995],[361456.85319999978,4307102.3767000008],[361467.87330000009,4307109.4278999995],[361483.39020000026,4307119.3562000003],[361483.52300000004,4307119.4411999993],[361484.17250000034,4307119.8565999996],[361484.31900000013,4307119.9507999998],[361484.36099999957,4307119.9778000005],[361487.71779999975,4307121.9591000006],[361546.24100000039,4307156.4965000004],[361565.02819999959,4307167.3897999991],[361566.02089999989,4307167.9655000009],[361571.48869999964,4307171.1206],[361572.2268000003,4307171.5464999992],[361572.84339999966,4307171.9024],[361573.80229999963,4307172.4556000009],[361575.95999999996,4307173.7006000001],[361591.73330000043,4307182.8021000009],[361591.91110000014,4307182.9046999998],[361592.23120000027,4307183.0843000002],[361593.51090000011,4307183.2544999998],[361593.90089999977,4307182.8344999999],[361594.2910000002,4307182.4145],[361594.39400000032,4307181.2970000003],[361594.41079999972,4307181.1143999994],[361594.30829999968,4307180.8358999994],[361593.97059999965,4307179.9191999994],[361588.63509999961,4307165.4295000006],[361587.99629999977,4307163.6945999991],[361587.9375,4307163.5350000001],[361587.90890000015,4307163.4572999999],[361587.85929999966,4307163.3223000001],[361587.83770000003,4307163.2635999992],[361587.69269999955,4307162.8699999992],[361587.02089999989,4307161.0456000008],[361586.80229999963,4307160.9974000007],[361586.68900000025,4307160.9724000003],[361586.53029999975,4307160.9375],[361586.35369999986,4307160.8986000009],[361585.9916000003,4307160.8188000005],[361585.63399999961,4307160.7400000002],[361585.57039999962,4307160.7259],[361585.21169999987,4307160.6470999997],[361584.6754999999,4307160.5288999993],[361584.52919999976,4307160.4967],[361584.48469999991,4307160.4868000001],[361584.43439999968,4307160.4758000001],[361584.13870000001,4307160.4105999991],[361584.02869999968,4307160.3864999991],[361583.96380000003,4307160.3720999993],[361583.93340000045,4307160.2537999991],[361583.92250000034,4307160.2114000004],[361583.90909999982,4307160.1594999991],[361583.87100000028,4307160.0116000008],[361583.45160000026,4307158.3851999994],[361582.66579999961,4307154.6300000008],[361582.6688000001,4307154.5702],[361582.95150000043,4307149.8752999995],[361582.06340000033,4307144.1612999998],[361582.05229999963,4307144.0900999997],[361582.04420000035,4307144.0380000006],[361582.03249999974,4307143.9624000005],[361582.00100000016,4307143.7598999999],[361581.94809999969,4307143.4192999993],[361581.1409,4307138.2256000005],[361579.62430000026,4307131.3888000008],[361578.5811999999,4307126.6865999997],[361576.5493999999,4307113.8849999998],[361576.36490000039,4307112.7222000007],[361575.28160000034,4307105.8967000004],[361574.76570000034,4307101.8038999997],[361574.7265999997,4307101.4936999995],[361574.71339999977,4307101.3890000004],[361574.26520000026,4307097.8340000007],[361574.21999999974,4307097.4748],[361574.17640000023,4307097.1294999998],[361574.15990000032,4307096.9978999998],[361574.09219999984,4307096.4602000006],[361574.05769999977,4307096.1872000005],[361573.59559999965,4307092.5194000006],[361571.98460000008,4307079.7372999992],[361571.71609999985,4307077.6070000008],[361571.66870000027,4307077.2311000004],[361571.62569999974,4307076.8900000006],[361571.59860000014,4307076.6746999994],[361571.59140000027,4307076.6175999995],[361571.52520000003,4307076.0921],[361571.36799999978,4307074.8457999993],[361571.14020000026,4307073.0373999998],[361570.40830000024,4307067.2307999991],[361570.25590000022,4307066.0207000002],[361570.15220000036,4307065.1973000001],[361570.09159999993,4307064.7163999993],[361569.73979999963,4307061.9249000009],[361569.21190000046,4307057.7337999996],[361569.11079999991,4307056.9312999994],[361568.86780000012,4307055.0034999996],[361567.56180000026,4307044.6384999994],[361566.74179999996,4307034.2891000006],[361566.61180000007,4307017.3396000005],[361567.02529999986,4306980.7874999996],[361567.02740000002,4306980.6107999999],[361567.02799999993,4306980.5515000001],[361567.02850000001,4306980.5054000001],[361567.02929999959,4306980.4373000003],[361567.03280000016,4306980.1386999991],[361567.05389999971,4306978.2967000008],[361567.06030000001,4306977.7410000004],[361567.06099999975,4306977.6782000009],[361567.06269999966,4306977.5350000001],[361567.06359999999,4306977.4529999997],[361567.07490000036,4306976.4429000001],[361567.08239999972,4306975.8005999997]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855627,"SIGPAC_FOGAIBA.DN_OID":1370681354,"SIGPAC_FOGAIBA.DN_SURFACE":2152.1960625559004,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":9001,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":69,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"CA","COD_USOS_SIGPAC.Descripción":"VIALES","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00209001R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855628,"geometry":{"type":"Polygon","coordinates":[[[361140.98929999955,4308363.7118999995],[361140.32830000017,4308364.5359000005],[361122.77599999961,4308386.4149999991],[361121.49749999959,4308387.3607999999],[361093.01099999994,4308408.432],[361056.67899999954,4308420.4361000005],[361051.74029999971,4308422.6920999996],[361051.6074000001,4308422.7526999991],[361046.96289999969,4308424.8742999993],[361046.30979999993,4308425.1725999992],[361045.41000000015,4308425.5835999995],[361041.56680000015,4308427.3390999995],[361041.29910000041,4308427.4614000004],[361040.34449999966,4308427.8975000009],[361040.10520000011,4308428.0067999996],[361039.84399999958,4308428.1261999998],[361038.57899999991,4308428.7039000001],[361033.80159999989,4308434.1600000001],[361024.93699999992,4308444.2839000002],[361005.95459999982,4308471.5962000005],[360997.36429999955,4308483.9562999997],[360989.31240000017,4308495.5416000001],[360984.64599999972,4308502.2559999991],[360981.78419999965,4308508.3797999993],[360977.38499999978,4308517.7929999996],[360967.67300000042,4308553.4509999994],[360966.15000000037,4308557.7179000005],[360961.28199999966,4308571.3560000006],[360953.72800000012,4308586.3259999994],[360932.96310000028,4308604.8910000008],[360874.65490000043,4308636.1169000007],[360875.42690000031,4308637.5232999995],[360863.92489999998,4308644.1879999992],[360844.37590000033,4308656.9779000003],[360836.62380000018,4308666.7388000004],[360832.24199999962,4308680.5385999996],[360830.21980000008,4308709.8209000006],[360830.89379999973,4308721.9376999997],[360820.44519999996,4308731.3618999999],[360818.59559999965,4308732.2854999993],[360808.81630000006,4308725.0450999998],[360808.54879999999,4308724.2980000004],[360815.72649999987,4308720.2548999991],[360822.46760000009,4308713.1866999995],[360821.45639999956,4308700.7332000006],[360824.48990000039,4308677.1727000009],[360831.56790000014,4308659.3340000007],[360846.39829999954,4308646.5438999999],[360857.17850000039,4308637.9079999998],[360857.25629999954,4308637.6411000006],[360856.69710000046,4308637.2324999999],[360894.00549999997,4308619.9360000007],[360944.45550000016,4308587.3660000004],[360955.20550000016,4308569.8965000007],[360969.28600000031,4308524.5774000008],[360974.5959999999,4308507.4880999997],[360984.8459999999,4308490.8379999995],[360991.00600000005,4308480.8286000006],[360995.83600000013,4308474.3484000005],[361015.54600000009,4308447.9290999994],[361025.78600000031,4308434.1989999991],[361029.94600000046,4308431.7190000005],[361069.47609999962,4308408.1590999998],[361088.16590000037,4308404.4789000005],[361102.9160000002,4308397.8289999999],[361135.96960000042,4308368.2101000007],[361140.1939000003,4308364.4246999994],[361140.98929999955,4308363.7118999995]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855628,"SIGPAC_FOGAIBA.DN_OID":1531316559,"SIGPAC_FOGAIBA.DN_SURFACE":3292.1531978347466,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":74,"SIGPAC_FOGAIBA.RECINTO":8,"SIGPAC_FOGAIBA.PENDIENTE_":281,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200074R0008","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855629,"geometry":{"type":"Polygon","coordinates":[[[362120.36950000003,4305886.8805],[362122.72300000023,4305892.1070000008],[362124.84049999993,4305896.8100000005],[362126.43049999978,4305900.4199999999],[362127.43049999978,4305902.9199999999],[362128.13049999997,4305904.7200000007],[362128.71050000004,4305906.3201000001],[362129.51059999969,4305907.5195000004],[362130.42050000001,4305908.9295000006],[362132.0206000004,4305911.3395000007],[362133.11050000042,4305913.3295000009],[362133.8004999999,4305914.5294000003],[362134.50050000008,4305916.5395],[362135.00050000008,4305918.1394999996],[362135.39049999975,4305919.7496000007],[362135.89049999975,4305921.8489999995],[362136.28050000034,4305924.159],[362136.69000000041,4305925.7489999998],[362137.48000000045,4305927.4489999991],[362138.5800999999,4305929.6490000002],[362140.06989999954,4305931.8688999992],[362142.96999999974,4305937.2584000006],[362144.64989999961,4305940.4585999995],[362148.34009999968,4305947.5785000008],[362150.62990000006,4305951.7881000005],[362153.9299999997,4305957.7780000009],[362155.71009999979,4305960.9979999997],[362157.62000000011,4305963.6879999992],[362159.90000000037,4305966.9076000005],[362162.88999999966,4305970.4175000004],[362165.08999999985,4305973.6074000001],[362168.68989999965,4305977.7170000002],[362170.79000000004,4305980.6070000008],[362172.87999999989,4305983.4169999994],[362173.6799999997,4305984.6170000006],[362174.08000000007,4305985.6170000006],[362174.88009999972,4305986.7170000002],[362175.82600000035,4305987.8619999997],[362175.87000000011,4305987.9169999994],[362176.76999999955,4305988.9268999994],[362179.08000000007,4305993.3165000007],[362181.37999999989,4305997.8065000009],[362181.41500000004,4305997.875],[362182.36000000034,4305999.7265000008],[362185.95999999996,4306007.0160000008],[362188.54000000004,4306012.1260000002],[362190.74000000022,4306016.4159999993],[362194.12000000011,4306022.6253999993],[362196.91949999984,4306027.4254999999],[362199.41949999984,4306031.4254999999],[362200.31950000022,4306032.8255000003],[362200.80950000044,4306033.625],[362201.1995000001,4306034.4349000007],[362201.60950000025,4306035.0250000004],[362202.60950000025,4306035.8249999993],[362203.70949999988,4306037.125],[362204.70949999988,4306038.7249999996],[362205.20949999988,4306039.9250000007],[362205.80950000044,4306040.8250999991],[362208.78949999996,4306045.2448999994],[362209.49949999992,4306046.2349999994],[362210.38949999958,4306047.7345000003],[362210.98950000014,4306048.7345000003],[362211.68950000033,4306049.7345000003],[362212.18950000033,4306050.6445000004],[362212.78949999996,4306051.9445999991],[362213.39950000029,4306053.3445999995],[362214.28949999996,4306054.5343999993],[362214.98959999997,4306055.4344999995],[362215.78949999996,4306056.1345000006],[362216.68939999957,4306056.7345000003],[362217.38949999958,4306057.1445000004],[362217.76559999958,4306057.4214999992],[362218.18950000033,4306057.7445],[362218.68950000033,4306058.3445999995],[362219.18960000016,4306059.2445],[362219.58949999977,4306059.9440000001],[362219.63760000002,4306060.1166999992],[362219.88949999958,4306060.9440000001],[362220.07949999999,4306061.8340000007],[362220.17949999962,4306062.4340000004],[362220.97950000037,4306063.8340000007],[362223.08939999994,4306066.6439999994],[362226.57949999999,4306070.6339999996],[362230.2695000004,4306075.2434999999],[362231.66949999984,4306076.7434],[362232.96949999966,4306078.1335000005],[362234.67949999962,4306080.1436000001],[362236.66949999984,4306082.5435000006],[362238.16949999984,4306084.3434999995],[362238.65950000007,4306084.9334999993],[362239.2695000004,4306085.7530000005],[362240.06950000022,4306086.5529999994],[362241.16949999984,4306087.5529999994],[362242.36950000003,4306088.3530000001],[362243.16940000001,4306088.8530000001],[362244.15950000007,4306090.1530000009],[362245.65950000007,4306091.5528999995],[362247.65950000007,4306093.5631000008],[362252.05950000044,4306098.1624999996],[362258.9495000001,4306104.1724999994],[362264.45949999988,4306108.3818999995],[362267.55950000044,4306110.6820999999],[362269.77599999961,4306112.3465],[362270.24940000009,4306112.7019999996],[362272.64940000046,4306114.3920000009],[362274.54949999973,4306115.9021000005],[362275.87609999999,4306117.2285999991],[362276.24940000009,4306117.602],[362277.33949999977,4306118.5914999992],[362278.13949999958,4306119.5013999995],[362278.63949999958,4306120.3014000002],[362279.03949999996,4306120.9015999995],[362279.23950000014,4306121.3015000001],[362279.83949999977,4306121.7115000002],[362280.63949999958,4306122.0114999991],[362281.53949999996,4306122.2115000002],[362282.43950000033,4306122.3114999998],[362282.56049999967,4306122.3414999992],[362283.63949999958,4306122.6115000006],[362284.93950000033,4306123.1115000006],[362286.33949999977,4306123.9214999992],[362288.33949999977,4306125.1216000002],[362289.83949999977,4306126.1214000005],[362290.52950000018,4306126.7215],[362290.72950000037,4306127.0215000007],[362290.72950000037,4306127.6215000004],[362290.72950000037,4306127.7931999993],[362290.72950000037,4306128.1215000004],[362290.72950000037,4306128.4000000004],[362290.72950000037,4306128.7215],[362290.72950000037,4306129.0209999997],[362290.82949999999,4306129.1208999995],[362290.92960000038,4306129.1209999993],[362291.16949999984,4306128.7215],[362291.22950000037,4306128.6209999993],[362291.62949999981,4306128.1215000004],[362292.02950000018,4306127.9210000001],[362292.32949999999,4306127.9309999999],[362292.72950000037,4306127.9309999999],[362292.92949999962,4306128.1308999993],[362293.12949999981,4306128.6309999991],[362293.02950000018,4306129.4309999999],[362292.9495000001,4306130.0209999997],[362292.92949999962,4306130.1308999993],[362292.92939999979,4306130.8309000004],[362293.12949999981,4306131.1309999991],[362293.52960000001,4306131.3309000004],[362293.72950000037,4306131.7310000006],[362294.12939999998,4306132.2310000006],[362294.72950000037,4306132.8310000002],[362295.81950000022,4306133.3310000002],[362296.72950000037,4306133.8310000002],[362298.2293999996,4306134.8409000002],[362300.22950000037,4306136.341],[362301.52950000018,4306137.341],[362302.32949999999,4306137.9408999998],[362303.42949999962,4306138.7410000004],[362304.22950000037,4306139.5504999999],[362305.12949999981,4306140.5504999999],[362306.11950000003,4306141.5504999999],[362307.41949999984,4306142.1504999995],[362308.31950000022,4306142.5504999999],[362309.31950000022,4306142.8505000006],[362310.11959999986,4306143.3605000004],[362311.81950000022,4306144.9605999999],[362313.71949999966,4306147.0604999997],[362316.10950000025,4306149.1704999991],[362318.21899999958,4306151.0600000005],[362320.2089999998,4306152.6699999999],[362322.2089999998,4306154.0800000001],[362323.80900000036,4306155.2799999993],[362325.59900000039,4306156.6800999995],[362328.29899999965,4306159.3900000006],[362330.09900000039,4306160.8000000007],[362330.99899999984,4306161.4995000008],[362331.59900000039,4306162.3994999994],[362332.49899999984,4306162.5995000005],[362333.59900000039,4306162.7094999999],[362334.18900000025,4306163.5095000006],[362334.48900000006,4306164.3093999997],[362334.88900000043,4306164.8095999993],[362335.38900000043,4306165.3094999995],[362335.88900000043,4306165.6995999999],[362336.18900000025,4306166.1995000001],[362337.18900000025,4306166.5995000005],[362338.03199999966,4306166.5996000003],[362338.2890999997,4306166.5995000005],[362339.58899999969,4306166.8094999995],[362340.88900000043,4306167.1095000003],[362341.98900000006,4306167.5095000006],[362343.18890000042,4306168.0195000004],[362343.58899999969,4306168.3195999991],[362344.08899999969,4306169.0195000004],[362344.78899999987,4306169.6195],[362345.28899999987,4306170.6195],[362345.67899999954,4306171.6290000007],[362346.1791000003,4306172.5289999992],[362346.47900000028,4306173.6289000008],[362346.67899999954,4306174.4289999995],[362347.07899999991,4306175.6290000007],[362347.2790000001,4306176.6290000007],[362347.67899999954,4306177.2289000005],[362348.06900000013,4306177.7290000003],[362348.66899999976,4306178.0289999992],[362348.86909999978,4306178.1290000007],[362349.26900000032,4306178.3289000001],[362349.56900000013,4306178.3289000001],[362350.26900000032,4306178.2289000005],[362350.96899999958,4306178.2390999999],[362351.4589999998,4306178.0391000006],[362351.75889999978,4306178.0388999991],[362352.15899999999,4306178.8388999999],[362352.4589999998,4306179.4390999991],[362352.55900000036,4306179.7390000001],[362352.65899999999,4306180.2390000001],[362353.4589999998,4306181.1390000004],[362354.55900000036,4306182.3389999997],[362355.65899999999,4306183.1390000004],[362356.65899999999,4306184.3485000003],[362357.44909999985,4306185.4484999999],[362357.94900000002,4306186.4484999999],[362358.54899999965,4306187.6483999994],[362359.64900000021,4306189.4484999999],[362362.23900000006,4306192.4684999995],[362365.23900000006,4306195.8585000001],[362367.82899999991,4306199.2679999992],[362370.12909999955,4306202.0779999997],[362371.22900000028,4306203.8780000005],[362372.21899999958,4306205.7780000009],[362373.01900000032,4306206.8880000003],[362373.61899999995,4306207.7879000008],[362374.21899999958,4306208.8879000004],[362374.71899999958,4306210.0875000004],[362375.51910000015,4306211.0874000005],[362376.61899999995,4306211.9875000007],[362377.80900000036,4306212.6875999998],[362378.50899999961,4306213.2974999994],[362378.92899999954,4306213.9774999991],[362379.40899999999,4306214.7974999994],[362380.10900000017,4306216.1974999998],[362381.24899999984,4306218.1676000003],[362381.30900000036,4306218.2974999994],[362382.69900000002,4306220.4974000007],[362383.89900000021,4306222.7074999996],[362385.28899999987,4306225.807],[362385.98900000006,4306226.8070999999],[362386.38889999967,4306228.2070000004],[362386.88900000043,4306229.4069999997],[362387.57899999991,4306230.4169999994],[362388.6791000003,4306231.6270000003],[362389.76900000032,4306232.9269999992],[362390.56900000013,4306234.3268999998],[362391.76900000032,4306236.9268999994],[362392.46899999958,4306238.7265000008],[362392.85890000034,4306240.1265999991],[362393.44900000002,4306242.2365000006],[362394.04899999965,4306243.8365000002],[362394.54899999965,4306244.8365000002],[362395.53849999979,4306247.1364999991],[362396.43850000016,4306248.8366],[362397.53849999979,4306250.7366000004],[362398.63850000035,4306252.1465000007],[362399.11849999987,4306253.2561000008],[362399.71839999966,4306254.1558999997],[362401.01850000024,4306255.4560000002],[362402.31850000005,4306256.9560000002],[362403.01850000024,4306258.1559999995],[362403.80840000045,4306259.7660000008],[362404.30850000028,4306261.466],[362404.70849999972,4306262.966],[362404.99849999975,4306264.1559999995],[362405.20849999972,4306265.0659999996],[362405.79849999957,4306265.9659000002],[362406.99849999975,4306267.1655000001],[362408.30850000028,4306268.3753999993],[362410.00850000046,4306270.0755000003],[362411.20849999972,4306271.7754999995],[362412.49849999975,4306273.6754999999],[362413.4084999999,4306274.9855000004],[362414.60840000026,4306276.8855000008],[362415.20859999955,4306278.0855],[362415.59850000031,4306279.6954999994],[362415.89850000013,4306281.4949999992],[362415.89850000013,4306282.4949999992],[362415.99859999958,4306282.9949999992],[362416.39850000013,4306283.2949999999],[362417.10850000009,4306283.4951000009],[362417.80850000028,4306283.5950000007],[362418.50850000046,4306283.6949000005],[362419.00850000046,4306284.0050000008],[362419.4084999999,4306284.5050000008],[362419.50850000046,4306285.0048999991],[362419.50850000046,4306285.7050000001],[362419.39859999996,4306286.5048999991],[362419.39850000013,4306287.2050000001],[362419.79849999957,4306288.1050000004],[362420.09850000031,4306288.6050000004],[362420.29849999957,4306289.0048999991],[362420.49849999975,4306289.7050000001],[362420.80850000028,4306290.6051000003],[362421.4084999999,4306291.8049999997],[362422.00850000046,4306292.7050000001],[362422.69849999994,4306293.5050000008],[362422.92850000039,4306293.9849999994],[362423.24839999992,4306294.1950000003],[362423.64850000013,4306294.2949999999],[362424.04849999957,4306294.6044999994],[362424.24849999975,4306295.0044999998],[362424.34850000031,4306295.7045000009],[362424.14850000013,4306296.3045000006],[362424.14850000013,4306296.6045999993],[362424.34850000031,4306297.1044999994],[362424.64850000013,4306297.3045000006],[362425.63850000035,4306297.5044999998],[362426.43859999999,4306297.6044999994],[362427.24849999975,4306297.8045000006],[362428.43850000016,4306298.3145000003],[362429.23849999998,4306298.8145000003],[362429.74849999975,4306299.1144999992],[362430.23849999998,4306299.6143999994],[362430.64850000013,4306300.3146000002],[362430.64850000013,4306301.3145000003],[362430.54839999974,4306303.1144999992],[362430.43850000016,4306304.8245000001],[362430.33849999961,4306305.6245000008],[362430.43859999999,4306306.0243999995],[362431.12849999964,4306306.3245000001],[362432.14850000013,4306305.9244999997],[362433.53849999979,4306305.5244999994],[362434.43850000016,4306305.3245999999],[362434.84839999955,4306305.2245000005],[362435.1484000003,4306305.4243999999],[362435.34850000031,4306305.7246000003],[362435.33860000037,4306306.2244000006],[362434.23849999998,4306307.0244999994],[362432.73849999998,4306307.9244999997],[362432.04849999957,4306308.4345999993],[362431.53839999996,4306308.9345999993],[362431.34850000031,4306309.4340000004],[362431.43850000016,4306309.7338999994],[362431.93850000016,4306310.1340999994],[362432.63850000035,4306310.2339999992],[362434.84850000031,4306309.4441],[362436.44849999994,4306308.9440000001],[362437.45849999972,4306308.7440000009],[362437.94849999994,4306308.9440000001],[362438.24849999975,4306309.3441000003],[362438.33849999961,4306310.0439999998],[362438.14850000013,4306310.5439999998],[362437.63850000035,4306311.0440999996],[362437.03849999979,4306311.5439999998],[362436.83849999961,4306312.0439999998],[362436.83849999961,4306312.4440000001],[362437.12839999981,4306312.9440000001],[362437.83849999961,4306313.2440000009],[362438.84850000031,4306313.3539000005],[362439.63850000035,4306313.7541000005],[362439.93850000016,4306314.1539999992],[362439.84850000031,4306314.5539999995],[362438.2285000002,4306315.8541000001],[362437.53859999962,4306316.6539999992],[362437.02850000001,4306317.4539000001],[362437.02850000001,4306317.8540000003],[362437.64859999996,4306319.1539999992],[362439.34850000031,4306321.5639999993],[362443.02850000001,4306326.4735000003],[362445.20799999963,4306330.4735000003],[362448.20799999963,4306335.6834999993],[362450.60800000001,4306341.0930000003],[362452.70799999963,4306345.5030000005],[362454.68800000008,4306349.9130000006],[362456.88800000027,4306354.0124999993],[362458.4879999999,4306356.5225000009],[362459.68800000008,4306358.6224000007],[362461.18800000008,4306361.5425000004],[362462.07799999975,4306364.1425000001],[362462.4879999999,4306365.2425999995],[362463.37799999956,4306366.5519999992],[362464.5680999998,4306368.1520000007],[362466.6679999996,4306369.5620000008],[362469.17800000031,4306371.2620000001],[362472.1679999996,4306373.8720999993],[362474.26800000016,4306375.6720000003],[362475.47800000012,4306377.0820000004],[362476.15799999982,4306378.3815000001],[362476.75800000038,4306379.2815000005],[362477.6679999996,4306380.2815000005],[362479.55800000019,4306381.7915000003],[362481.55800000019,4306383.0913999993],[362483.05800000019,4306384.2915000003],[362483.55800000019,4306385.3015000001],[362483.65799999982,4306386.6015000008],[362483.65799999982,4306387.6015000008],[362483.65799999982,4306388.1015000008],[362483.85800000001,4306388.5014999993],[362485.25800000038,4306389.2015000004],[362485.64800000004,4306389.3015000001],[362486.34800000023,4306389.9013999999],[362486.64800000004,4306390.7108999994],[362486.94790000003,4306391.3110000007],[362487.74799999967,4306391.8109000009],[362488.14800000004,4306392.0109000001],[362489.05800000019,4306392.9209000003],[362489.34800000023,4306393.4110000003],[362490.54800000042,4306394.4110000003],[362491.64809999987,4306395.9210000001],[362492.33800000045,4306397.2210000008],[362494.43800000008,4306399.5309999995],[362495.63800000027,4306400.6309999991],[362496.13800000027,4306401.4309999999],[362496.83800000045,4306402.2310000006],[362497.7379999999,4306402.8310000002],[362498.63800000027,4306403.2405999992],[362499.22809999995,4306403.7403999995],[362500.02799999993,4306404.7404999994],[362500.62799999956,4306405.4405000005],[362500.82799999975,4306406.0405000001],[362501.32799999975,4306406.4405000005],[362502.02799999993,4306406.7405999992],[362502.72800000012,4306407.1404999997],[362503.22800000012,4306407.5504999999],[362503.82799999975,4306408.5504999999],[362504.51800000016,4306409.6505999994],[362504.81799999997,4306410.2506000008],[362506.21800000034,4306411.2405999992],[362507.71740000043,4306412.1504999995],[362509.1174999997,4306413.6504999995],[362510.31759999972,4306415.25],[362512.20749999955,4306417.7599999998],[362514.0075000003,4306419.8599999994],[362515.30750000011,4306421.4700000007],[362515.89749999996,4306422.4700000007],[362516.39749999996,4306423.3699999992],[362516.69749999978,4306423.9701000005],[362517.49749999959,4306424.6699999999],[362518.19749999978,4306424.7800999992],[362518.59750000015,4306425.7799999993],[362519.39749999996,4306426.6799999997],[362519.99749999959,4306426.5800000001],[362520.69749999978,4306426.3800000008],[362521.29739999957,4306426.4801000003],[362523.40749999974,4306428.1795000006],[362524.88760000002,4306429.5895000007],[362526.1875,4306430.8894999996],[362526.98749999981,4306431.6895000003],[362527.98739999998,4306432.2994999997],[362528.6875,4306432.8993999995],[362529.48749999981,4306433.5996000003],[362529.88750000019,4306434.2993999999],[362530.37750000041,4306434.6995000001],[362531.16750000045,4306435.2994999997],[362531.96750000026,4306436.1095000003],[362532.56749999989,4306436.8095999993],[362532.8674999997,4306437.4094999991],[362533.46750000026,4306438.0095000006],[362534.26750000007,4306438.409],[362535.06749999989,4306438.6089999992],[362535.87750000041,4306438.909],[362536.77749999985,4306439.4189999998],[362540.55750000011,4306442.1190000009],[362542.95749999955,4306444.0289999992],[362545.95749999955,4306446.6290000007],[362548.74749999959,4306448.9285000004],[362550.34750000015,4306450.4385000002],[362552.44749999978,4306452.0384999998],[362555.12760000024,4306453.6484999992],[362556.02749999985,4306454.2485000007],[362557.02740000002,4306454.5484999996],[362558.0075000003,4306454.9985000007],[362558.90749999974,4306456.0986000001],[362559.22750000004,4306456.6585000008],[362560.10749999993,4306457.5084000006],[362560.92750000022,4306458.0583999995],[362561.81749999989,4306458.5086000003],[362564.60749999993,4306459.3080000002],[362567.0075000003,4306460.2080000006],[362567.51750000007,4306460.5581],[362567.90749999974,4306460.8079000004],[362568.31749999989,4306461.4580000006],[362568.79760000017,4306461.7080000006],[362569.29739999957,4306462.1079999991],[362570.09750000015,4306462.2181000002],[362571.31749999989,4306461.9681000002],[362572.08750000037,4306461.7180000003],[362573.80750000011,4306461.8680000007],[362575.0075000003,4306461.8680000007],[362575.69749999978,4306461.7180000003],[362576.71750000026,4306461.068],[362577.41750000045,4306460.1680999994],[362578.22750000004,4306458.6679999996],[362578.82760000043,4306457.068],[362580.81749999989,4306454.4679000005],[362582.12739999965,4306453.2678999994],[362583.22750000004,4306452.3679000009],[362584.02749999985,4306450.9680000003],[362585.02749999985,4306449.9680000003],[362585.9375,4306448.9580000006],[362586.82749999966,4306449.5778999999],[362588.02749999985,4306450.5779999997],[362588.42740000039,4306451.2781000007],[362587.82749999966,4306452.6779999994],[362586.81749999989,4306454.5780999996],[362585.62750000041,4306456.8679000009],[362584.21750000026,4306459.1679999996],[362582.41739999969,4306461.6579999998],[362580.21750000026,4306464.8681000005],[362577.70749999955,4306468.0579000004],[362575.60749999993,4306470.6575000007],[362573.40749999974,4306473.6475000009],[362572.23199999984,4306475.4010000005],[362571.39749999996,4306476.6475000009],[362569.98749999981,4306478.5573999994],[362568.49749999959,4306481.0576000009],[362567.79750000034,4306482.4574999996],[362566.48749999981,4306484.1575000007],[362564.76750000007,4306486.0875000004],[362565.58739999961,4306487.4475999996],[362566.8674999997,4306488.9875000007],[362568.97750000004,4306490.7874999996],[362571.26699999999,4306492.5975000001],[362574.25700000022,4306494.5069999993],[362576.36710000038,4306495.5768999998],[362576.53650000039,4306495.6765000001],[362579.85699999984,4306497.5869999994],[362582.34700000007,4306498.9869999997],[362584.25710000005,4306500.0969999991],[362586.05700000003,4306501.4969999995],[362588.24700000044,4306503.1164999995],[362590.73699999973,4306505.0164999999],[362592.83700000029,4306506.5164999999],[362594.72699999996,4306507.6264999993],[362596.62700000033,4306508.5263999999],[362598.52699999977,4306509.6364999991],[362601.71700000018,4306511.0464999992],[362604.31699999981,4306511.8465999998],[362607.71700000018,4306512.9464999996],[362611.50700000022,4306513.6665000003],[362615.21700000018,4306514.0563999992],[362621.90710000042,4306515.3761],[362629.99700000044,4306516.9059999995],[362638.28699999955,4306518.1159000006],[362646.58710000012,4306519.4261000007],[362652.87689999957,4306520.8458999991],[362657.97699999996,4306521.7561000008],[362661.16700000037,4306522.1659999993],[362664.75700000022,4306522.7559999991],[362670.26709999982,4306523.5759999994],[362673.06699999981,4306524.3760000002],[362676.36699999962,4306525.0859999992],[362679.65699999966,4306525.5858999994],[362683.65699999966,4306525.6960000005],[362687.65699999966,4306525.8059999999],[362691.74700000044,4306525.3059999999],[362694.94699999969,4306524.6061000004],[362698.94699999969,4306523.3159999996],[362703.84700000007,4306521.6160000004],[362707.74700000044,4306520.1260000002],[362711.64690000005,4306518.8259999994],[362714.83700000029,4306517.716],[362717.84700000007,4306516.7359999996],[362721.35699999984,4306515.3359999992],[362724.55700000003,4306513.8361000009],[362727.4570000004,4306512.4359000009],[362729.85699999984,4306510.5460000001],[362733.16700000037,4306508.4464999996],[362736.77689999994,4306505.7465000004],[362739.67700000014,4306503.5464999992],[362741.3870000001,4306501.8465],[362742.97699999996,4306499.9865000006],[362744.3870000001,4306497.7465000004],[362745.79700000025,4306494.1465000007],[362747.2070000004,4306490.0470000003],[362748.10690000001,4306486.3369999994],[362749.11699999962,4306484.0370000005],[362750.01750000007,4306482.0370000005],[362750.81749999989,4306481.1370000001],[362751.31749999989,4306480.0370000005],[362751.1174999997,4306478.3369999994],[362750.62750000041,4306477.3368999995],[362750.32749999966,4306476.0370000005],[362749.72750000004,4306474.8269999996],[362749.42760000005,4306473.3269999996],[362749.02749999985,4306472.4269999992],[362748.24749999959,4306471.5270000007],[362747.44749999978,4306469.9175000004],[362746.24749999959,4306468.8175000008],[362745.14749999996,4306466.7174999993],[362744.65749999974,4306465.7174999993],[362743.65749999974,4306464.7074999996],[362743.15749999974,4306463.5075000003],[362741.65739999991,4306462.4075000007],[362740.47750000004,4306461.1974999998],[362740.14749999996,4306460.3975000009],[362740.16750000045,4306458.7974999994],[362740.46750000026,4306457.0975000001],[362740.26750000007,4306455.6974999998],[362739.8674999997,4306454.8976000007],[362738.75739999954,4306454.1875],[362737.77749999985,4306452.7874999996],[362737.37750000041,4306451.6875],[362737.27759999968,4306450.6879999992],[362737.07749999966,4306449.5879999995],[362736.37750000041,4306448.8880000003],[362735.67750000022,4306448.2778999992],[362735.47750000004,4306447.2780000009],[362735.48749999981,4306446.3780000005],[362735.1875,4306445.2780000009],[362733.88760000002,4306444.4780000001],[362732.78760000039,4306443.6779999994],[362732.2873999998,4306442.568],[362731.89749999996,4306440.6680999994],[362731.69749999978,4306439.2679999992],[362731.81749999989,4306438.8579999991],[362731.70749999955,4306437.8680000007],[362730.80750000011,4306437.068],[362728.30740000028,4306435.6579999998],[362727.5075000003,4306435.2578999996],[362726.91750000045,4306434.3579999991],[362726.22750000004,4306432.8680000007],[362723.22750000004,4306430.4585999995],[362719.84740000032,4306427.6384999994],[362719.04750000034,4306426.5484999996],[362718.85790000018,4306425.9285000004],[362718.65809999965,4306424.2284999993],[362718.26790000033,4306422.9286000002],[362716.86799999978,4306421.5285],[362716.56799999997,4306420.2184999995],[362716.12799999956,4306419.7284999993],[362714.46800000034,4306418.7184999995],[362711.85800000001,4306416.7284999993],[362708.87799999956,4306414.5284000002],[362706.46789999958,4306412.0189999994],[362704.96800000034,4306410.409],[362703.38800000027,4306408.9089000002],[362701.78799999971,4306406.6989999991],[362700.58810000028,4306405.6989999991],[362699.4879999999,4306404.0989999995],[362698.80800000019,4306403.1988999993],[362697.50800000038,4306402.3890000004],[362694.99799999967,4306400.8991],[362692.50800000038,4306399.1889999993],[362691.10800000001,4306397.0890999995],[362689.81799999997,4306394.9790000003],[362688.22790000029,4306393.3794],[362686.32799999975,4306391.9794999994],[362684.72800000012,4306390.2796],[362683.92800000031,4306389.2795000002],[362683.43809999991,4306387.4794999994],[362683.2379999999,4306386.2795000002],[362683.43800000008,4306384.7695000004],[362683.64800000004,4306383.4695999995],[362684.04800000042,4306382.8695],[362685.44799999986,4306381.7696000002],[362687.25800000038,4306380.8794999998],[362687.75800000038,4306380.6794000007],[362688.65799999982,4306380.4794999994],[362689.55800000019,4306380.4795999993],[362690.75810000021,4306380.8794999998],[362692.36799999978,4306381.8894999996],[362694.05800000019,4306383.1895000003],[362694.85800000001,4306384.0895000007],[362696.74810000043,4306385.2895],[362698.04800000042,4306386.2994999997],[362700.2379999999,4306388.1995999999],[362702.93800000008,4306390.4094999991],[362706.71800000034,4306393.4093999993],[362710.20799999963,4306396.3090000004],[362712.99799999967,4306398.9190999996],[362715.38800000027,4306401.4289999995],[362717.27799999993,4306403.5291000009],[362719.37810000032,4306405.3289999999],[362721.26800000016,4306406.7290000003],[362723.1679999996,4306407.8289999999],[362724.6679999996,4306408.6390000004],[362726.15809999965,4306409.7390000001],[362728.74799999967,4306412.2489999998],[362731.75810000021,4306414.9583999999],[362734.33800000045,4306417.8585000001],[362735.13800000027,4306419.3585999999],[362736.93800000008,4306421.6685000006],[362739.12750000041,4306424.5684999991],[362741.21750000026,4306427.2785999998],[362743.70749999955,4306431.2884999998],[362745.40749999974,4306434.0879999995],[362746.49749999959,4306436.6980000008],[362748.47750000004,4306441.4880999997],[362750.77740000002,4306446.0979999993],[362752.66750000045,4306450.4080999997],[362753.54750000034,4306453.3074999992],[362754.14749999996,4306455.5175999999],[362753.94749999978,4306456.0175000001],[362752.24739999976,4306457.1175999995],[362750.74749999959,4306458.2174999993],[362749.84750000015,4306459.3175000008],[362749.53749999963,4306460.0175000001],[362749.83750000037,4306460.6174999997],[362750.73749999981,4306461.1173999999],[362753.22750000004,4306461.8074999992],[362754.33750000037,4306462.6275999993],[362755.23749999981,4306463.4275000002],[362755.72740000021,4306463.9275000002],[362756.72750000004,4306465.8275000006],[362758.1174999997,4306468.0274],[362759.41750000045,4306469.6373999994],[362760.51750000007,4306470.5371000003],[362761.41750000045,4306470.7369999997],[362762.5075000003,4306470.8369999994],[362763.5175999999,4306471.1370000001],[362764.60749999993,4306471.8369999994],[362765.39759999979,4306472.7369999997],[362765.59750000015,4306473.5371000003],[362765.78749999963,4306474.6270000003],[362765.89749999996,4306474.9370000008],[362766.49749999959,4306476.1469999999],[362767.39749999996,4306477.5470000003],[362768.28760000039,4306478.8469999991],[362768.97750000004,4306480.3570000008],[362769.77699999977,4306481.6569999997],[362770.58700000029,4306483.557],[362771.86699999962,4306485.3570000008],[362773.36699999962,4306487.3670000006],[362774.86699999962,4306489.1764000002],[362776.4570000004,4306491.7864999995],[362778.44699999969,4306495.3864999991],[362780.23709999956,4306498.5965],[362781.12700000033,4306500.2963999994],[362782.02699999977,4306502.0065000001],[362783.81699999981,4306505.8166000005],[362784.81699999981,4306508.2259999998],[362785.59700000007,4306510.4260000009],[362786.60699999984,4306512.4260000009],[362787.2070000004,4306513.5360000003],[362787.7070000004,4306513.9360000007],[362788.40710000042,4306514.1359999999],[362789.49700000044,4306513.7360999994],[362790.59700000007,4306513.4360000007],[362790.79690000042,4306513.4360000007],[362791.04550000001,4306513.5354999993],[362791.29700000025,4306513.6359000001],[362791.63690000027,4306514.3959999997],[362791.69699999969,4306514.5359000005],[362792.08700000029,4306515.6360999998],[362792.48699999973,4306516.5460000001],[362793.18699999992,4306517.2460999992],[362794.19550000038,4306517.7054999992],[362794.28699999955,4306517.7459999993],[362795.37700000033,4306518.6459999997],[362795.53129999992,4306518.8517000005],[362796.48709999956,4306520.1560999993],[362797.96700000018,4306522.9560000002],[362799.56699999981,4306525.2660000008],[362800.06699999981,4306526.1659999993],[362800.46700000018,4306526.2660000008],[362801.56689999998,4306525.966],[362802.86699999962,4306526.0659999996],[362803.49700000044,4306526.4561000001],[362803.79690000042,4306527.4554999992],[362803.77699999977,4306528.7555],[362804.18699999992,4306529.9553999994],[362804.4570000004,4306530.5755000003],[362804.9570000004,4306530.8753999993],[362805.85699999984,4306530.8754999992],[362806.64699999988,4306530.2754999995],[362806.74700000044,4306529.1755999997],[362806.86689999979,4306527.8855000008],[362807.0569000002,4306526.6860000007],[362807.55709999986,4306525.9859999996],[362808.75700000022,4306524.8859999999],[362810.31400000025,4306524.1374999993],[362811.05700000003,4306523.7860000003],[362813.85699999984,4306523.2860000003],[362815.9570000004,4306522.9959999993],[362817.44699999969,4306523.0960000008],[362818.54700000025,4306523.5960000008],[362819.35699999984,4306524.6960000005],[362819.44749999978,4306524.9979999997],[362819.84700000007,4306526.3956000004],[362820.04700000025,4306528.1053999998],[362820.53699999955,4306529.5055999998],[362822.03689999972,4306531.4055000003],[362822.73699999973,4306531.9055000003],[362823.22709999979,4306532.2256000005],[362824.33690000046,4306532.2155000009],[362825.03699999955,4306531.9155000001],[362825.73699999973,4306531.6154999994],[362826.62700000033,4306531.4155000001],[362827.93690000009,4306530.6154999994],[362828.83710000012,4306529.9155000001],[362829.53699999955,4306528.9355999995],[362829.74700000044,4306527.8155000005],[362830.04700000025,4306526.8155000005],[362830.34499999974,4306526.0205000006],[362830.6370000001,4306525.4258999992],[362830.97699999996,4306525.0859999992],[362831.64699999988,4306524.8259999994],[362833.14699999988,4306524.7259999998],[362835.1370000001,4306524.1259000003],[362837.03699999955,4306523.6260000002],[362838.33700000029,4306523.7358999997],[362839.44699999969,4306524.4359000009],[362840.23699999973,4306525.5454999991],[362841.03710000031,4306527.4454999994],[362841.72699999996,4306530.3454999998],[362841.92650000006,4306532.1455000006],[362842.02639999986,4306533.9454999994],[362842.50650000013,4306535.6654000003],[362843.01649999991,4306537.4655000009],[362843.00650000013,4306538.7653999999],[362842.90649999958,4306539.1655000001],[362841.01649999991,4306539.5655000005],[362838.60649999976,4306539.9554999992],[362837.31649999972,4306540.2555],[362836.24650000036,4306540.8855000008],[362835.3964999998,4306542.1654000003],[362835.09649999999,4306543.4656000007],[362834.89659999963,4306544.8756000008],[362834.40649999958,4306546.375],[362833.28639999963,4306548.375],[362832.47640000004,4306549.7849000003],[362832.08650000021,4306550.6749000009],[362831.08650000021,4306551.2750000004],[362830.08650000021,4306551.4749999996],[362829.08650000021,4306551.3650000002],[362828.58650000021,4306551.0650999993],[362827.38650000002,4306551.3650000002],[362826.69649999961,4306551.6750000007],[362825.68649999984,4306551.7750000004],[362824.68649999984,4306551.4749999996],[362823.09659999982,4306551.4649999999],[362821.88650000002,4306551.6550999992],[362820.98649999965,4306552.0649999995],[362819.49650000036,4306552.1649999991],[362817.88650000002,4306552.0649999995],[362816.4963999996,4306551.6649999991],[362815.72109999973,4306551.7544999998],[362813.98649999965,4306551.9649999999],[362811.8964999998,4306552.6549999993],[362809.68649999984,4306553.9550000001],[362808.68649999984,4306555.1649999991],[362808.38650000002,4306556.7650000006],[362808.78650000039,4306558.7749000005],[362809.09700000007,4306559.9969999995],[362809.27649999969,4306560.6750000007],[362809.97649999987,4306561.9750999995],[362809.98649999965,4306562.6749000009],[362809.07650000043,4306564.2750000004],[362806.4665000001,4306566.8845000006],[362804.77649999969,4306568.7744999994],[362803.39400000032,4306569.9965000004],[362803.17640000023,4306570.1844999995],[362801.26649999991,4306572.9845000003],[362799.55649999995,4306575.2946000006],[362798.4665000001,4306578.0844999999],[362797.55649999995,4306581.3745000008],[362796.55649999995,4306584.5944999997],[362795.84659999982,4306587.3839999996],[362795.63650000002,4306591.3938999996],[362795.73649999965,4306593.4041000009],[362796.23599999957,4306595.6940000001],[362796.83600000013,4306598.7939999998],[362797.23589999974,4306602.5040000007],[362797.81599999964,4306604.6040000003],[362798.32600000035,4306605.9934999999],[362798.92599999998,4306607.1934999991],[362799.11600000039,4306608.2135000005],[362798.91610000003,4306609.9134999998],[362798.70600000024,4306611.9035],[362798.9160000002,4306613.2035000008],[362799.31599999964,4306614.5034999996],[362800.20600000024,4306615.5234999992],[362800.26850000024,4306615.5545000006],[362801.11600000039,4306615.9234999996],[362802.00600000005,4306616.2234000005],[362802.00590000022,4306617.1135000009],[362801.49600000028,4306618.5134999994],[362800.85850000009,4306619.3004999999],[362800.60599999968,4306619.6135000009],[362799.90600000042,4306620.6133999992],[362799.5959999999,4306621.9234999996],[362799.39599999972,4306623.2135000005],[362799.69600000046,4306625.0234999992],[362800.39599999972,4306627.7229999993],[362801.29600000009,4306630.2229999993],[362801.49600000028,4306631.5329999998],[362802.0959999999,4306632.7331000008],[362802.98599999957,4306635.2329999991],[362802.78589999955,4306636.9330000002],[362803.28600000031,4306639.2329999991],[362803.77599999961,4306641.3330000006],[362803.97599999979,4306642.4330000002],[362804.97599999979,4306643.6329999994],[362805.57600000035,4306644.7430000007],[362806.28589999955,4306646.0425000004],[362806.37600000016,4306647.2424999997],[362806.77599999961,4306647.9425000008],[362807.47599999979,4306649.1425000001],[362807.87600000016,4306650.3424999993],[362808.17599999998,4306652.0524000004],[362808.90899999999,4306653.3786999993],[362809.16550000012,4306653.8324999996],[362810.76549999975,4306656.3323999997],[362812.16540000029,4306658.1425000001],[362812.46549999993,4306659.1425000001],[362812.95550000016,4306660.6424000002],[362814.16550000012,4306662.0525000002],[362815.06549999956,4306663.1525999997],[362815.56549999956,4306664.3524999991],[362815.95540000033,4306666.2520000003],[362816.45550000016,4306669.1520000007],[362816.75549999997,4306670.5518999994],[362817.45550000016,4306671.6520000007],[362818.44550000038,4306673.2519000005],[362818.94550000038,4306674.4620999992],[362819.55549999978,4306676.6621000003],[362820.24550000019,4306678.4619999994],[362821.24550000019,4306680.2719999999],[362821.64549999963,4306681.2719999999],[362823.43549999967,4306686.8615000006],[362825.73550000042,4306693.8715000004],[362826.99299999978,4306696.7060000002],[362827.82550000027,4306698.5713999998],[362828.9254999999,4306701.3715000004],[362831.11550000031,4306704.5810000002],[362833.12559999991,4306707.0810000002],[362836.01499999966,4306710.2909999993],[362838.70500000007,4306712.1810999997],[362841.71499999985,4306713.7009999994],[362844.51499999966,4306715.2109999992],[362846.50490000006,4306716.1010999996],[362848.60500000045,4306716.5010000002],[362850.50499999989,4306716.9110000003],[362851.8049999997,4306716.9109000005],[362852.3049999997,4306716.2109999992],[362852.40450000018,4306715.8435999993],[362852.61500000022,4306715.1009],[362852.52500000037,4306714.1910999995],[362851.625,4306713.6908999998],[362851.125,4306713.091],[362850.82500000019,4306711.8910000008],[362850.82500000019,4306711.091],[362851.22510000039,4306710.8909000009],[362852.125,4306710.7909999993],[362853.02500000037,4306710.2809999995],[362853.82500000019,4306710.5810000002],[362854.92499999981,4306711.3910000008],[362854.92489999998,4306712.091],[362854.42499999981,4306713.1909999996],[362854.02500000037,4306714.1909999996],[362853.92509999964,4306714.7909999993],[362854.2248999998,4306715.2910999991],[362855.02500000037,4306715.3910000008],[362855.82500000019,4306714.6809],[362856.42499999981,4306714.0810000002],[362856.82500000019,4306713.8809999991],[362857.93499999959,4306714.3910000008],[362859.03500000015,4306715.091],[362859.72499999963,4306716.1009999998],[362859.82500000019,4306717.1009999998],[362859.82490000036,4306717.7009999994],[362860.625,4306717.6909999996],[362861.32500000019,4306717.591],[362861.92499999981,4306717.591],[362862.125,4306718.591],[362862.52500000037,4306719.5910999998],[362862.92489999998,4306720.0011],[362863.82510000002,4306719.8010000009],[362864.82500000019,4306719.3011000007],[362865.22499999963,4306719.0010000002],[362866.42499999981,4306718.9910000004],[362867.22510000039,4306719.4910000004],[362868.92499999981,4306719.6909999996],[362869.52500000037,4306720.3910000008],[362869.72499999963,4306721.0011],[362869.41500000004,4306722.4003999997],[362868.81500000041,4306723.5004999992],[362868.81500000041,4306724.6905000005],[362868.8320000004,4306724.7335999999],[362869.41500000004,4306725.8904999997],[362870.91500000004,4306727.3905999996],[362872.8049999997,4306728.6005000006],[362874.90510000009,4306730.1905000005],[362877.50509999972,4306731.9003999997],[362879.61500000022,4306732.9104999993],[362881.91500000004,4306733.6105000004],[362883.21509999968,4306733.7105],[362884.71490000002,4306733.8104999997],[362885.81500000041,4306734.1105000004],[362886.61500000022,4306734.3104999997],[362888.50499999989,4306735.8104999997],[362889.40500000026,4306736.6105000004],[362890.20500000007,4306737.2104000002],[362891.40500000026,4306737.8104999997],[362892.60489999969,4306738.2205999997],[362893.91500000004,4306739.2105],[362894.81500000041,4306739.9104999993],[362896.71499999985,4306740.8104999997],[362898.50490000006,4306741.9199999999],[362900.55850000028,4306742.9364999998],[362901.10500000045,4306743.2100000009],[362903.00490000006,4306744.7200000007],[362904.3049999997,4306746.0199999996],[362906.03500000015,4306747.7599999998],[362907.76499999966,4306748.75],[362909.85510000028,4306750.25],[362912.90500000026,4306751.2699999996],[362914.51499999966,4306752.0601000004],[362919.14510000031,4306754.8299000002],[362922.28450000007,4306756.9800000004],[362923.31439999957,4306757.9000000004],[362923.78440000024,4306758.5200999994],[362925.41449999996,4306761.9893999994],[362926.71449999977,4306763.7396000009],[362928.73450000025,4306765.6794000007],[362931.11450000014,4306767.2195999995],[362931.83449999988,4306767.8695],[362932.58449999988,4306769.0394000001],[362934.19450000022,4306772.2695000004],[362937.53450000007,4306775.9694999997],[362938.73450000025,4306778.0195000004],[362939.42449999973,4306779.9089000002],[362940.12459999975,4306782.4289999995],[362940.60450000037,4306786.2089000009],[362940.91449999996,4306787.5590000004],[362941.69450000022,4306789.5889999997],[362943.80449999962,4306793.9689000007],[362943.86450000014,4306795.0390000008],[362943.5745000001,4306795.9389999993],[362942.98450000025,4306796.8489999995],[362942.48450000025,4306797.2489999998],[362942.09449999966,4306797.9489999991],[362941.8945000004,4306798.3589999992],[362940.91449999996,4306799.0590000004],[362939.71449999977,4306799.5785000008],[362939.42449999973,4306799.9784999993],[362939.52450000029,4306800.3784999996],[362939.72449999955,4306800.8884999994],[362940.23460000008,4306801.1785000004],[362940.53450000007,4306801.3784999996],[362940.73450000025,4306801.5784000009],[362940.92449999973,4306801.8684],[362940.93450000044,4306802.2685000002],[362941.13439999986,4306802.5684999991],[362941.34449999966,4306802.8684999999],[362941.6445000004,4306803.0684999991],[362942.05449999962,4306803.3684999999],[362942.55449999962,4306803.6585000008],[362942.55449999962,4306803.9584999997],[362942.46449999977,4306804.4584999997],[362941.56450000033,4306804.6685000006],[362940.86450000014,4306805.2785],[362937.57400000002,4306815.7184999995],[362936.62399999984,4306821.9279999994],[362936.64400000032,4306822.9379999992],[362936.46399999969,4306824.3380999994],[362936.07400000002,4306825.9379999992],[362936.38399999961,4306827.3379999995],[362936.39400000032,4306828.1380000003],[362936.11400000006,4306829.5379000008],[362936.31400000025,4306830.7380999997],[362936.92399999965,4306831.7479999997],[362937.23400000017,4306832.6381000001],[362937.24399999995,4306833.2379999999],[362936.86400000006,4306834.2478999998],[362936.87399999984,4306835.9480000008],[362937.09399999958,4306838.2479999997],[362937.21399999969,4306839.4374000002],[362937.21399999969,4306840.1476000007],[362936.92399999965,4306841.1475000009],[362936.43400000036,4306842.2474000007],[362936.04399999976,4306843.5574999992],[362936.14400000032,4306843.9574999996],[362936.6540000001,4306844.6475000009],[362937.07400000002,4306845.8475000001],[362937.17410000041,4306846.7476000004],[362937.17399999965,4306847.2474000007],[362936.9841,4306847.9474999998],[362936.99399999995,4306848.5474999994],[362937.19400000013,4306849.0474999994],[362937.4040000001,4306849.6475000009],[362936.93400000036,4306852.6475000009],[362937.14410000015,4306854.1475000009],[362937.67399999965,4306856.1375999991],[362938.18400000036,4306857.7375000007],[362938.69400000013,4306858.8369999994],[362938.70399999991,4306859.4371000007],[362938.61400000006,4306860.5371000003],[362939.12399999984,4306861.727],[362939.53409999982,4306862.9269999992],[362939.93400000036,4306863.4268999994],[362940.34399999958,4306864.3169999998],[362940.35390000045,4306865.7169000003],[362940.87399999984,4306866.9170999993],[362941.38399999961,4306867.9069999997],[362941.68340000045,4306868.5068999995],[362942.39340000041,4306869.2070000004],[362943.00349999964,4306870.2970000003],[362943.22360000014,4306871.7069000006],[362943.33349999972,4306872.5070999991],[362943.23350000009,4306873.5069999993],[362943.84350000042,4306875.4969999995],[362944.77350000013,4306877.8969000001],[362945.79349999968,4306879.5865000002],[362946.80350000039,4306880.3764999993],[362947.6035000002,4306881.0664000008],[362948.01350000035,4306881.2664999999],[362948.31350000016,4306881.9664999992],[362948.42349999957,4306882.3664999995],[362948.42349999957,4306882.5664000008],[362947.52350000013,4306883.2664999999],[362946.23359999992,4306883.7864999995],[362945.04360000044,4306884.3965000007],[362944.75349999964,4306884.7964999992],[362944.46349999961,4306885.6964999996],[362944.55350000039,4306886.3966000006],[362945.06350000016,4306887.7965999991],[362945.29339999985,4306889.5865000002],[362944.91349999979,4306891.1965999994],[362944.42360000033,4306892.4966000002],[362943.62349999975,4306893.5065000001],[362943.22350000031,4306894.0065000001],[362943.13350000046,4306894.5065000001],[362943.3535000002,4306896.0065000001],[362944.06350000016,4306897.3065000009],[362945.27359999996,4306898.2964999992],[362946.29349999968,4306898.8761],[362947.28340000007,4306899.2760000005],[362948.08349999972,4306899.4660999998],[362948.48359999992,4306899.7660000008],[362948.59350000042,4306900.0659999996],[362948.49349999987,4306900.4659000002],[362947.69350000005,4306900.9759999998],[362946.29349999968,4306901.3859999999],[362945.9935999997,4306901.3859999999],[362945.6035000002,4306901.6861000005],[362945.21349999961,4306902.3959999997],[362945.01360000018,4306902.8959999997],[362945.01350000035,4306903.1961000003],[362945.21349999961,4306903.6959000006],[362945.31350000016,4306903.8959999997],[362945.32349999994,4306904.3959999997],[362945.52350000013,4306904.9958999995],[362946.33349999972,4306905.8760000002],[362946.64350000024,4306906.6760000009],[362946.45349999983,4306907.7760000005],[362946.37349999975,4306909.8759000003],[362946.67349999957,4306911.5759999994],[362947.08349999972,4306912.3660000004],[362947.78359999973,4306912.966],[362948.1035000002,4306913.9559000004],[362948.01350000035,4306914.6560999993],[362947.91349999979,4306915.5559999999],[362947.81350000016,4306916.1559999995],[362947.32349999994,4306917.1559999995],[362946.63350000046,4306918.1659999993],[362946.14350000024,4306918.8654999994],[362945.25349999964,4306919.8754999992],[362944.8535000002,4306920.5755000003],[362944.77350000013,4306922.0855],[362945.17349999957,4306923.2754999995],[362945.57349999994,4306923.8654999994],[362945.88360000029,4306924.2654999997],[362946.1035000002,4306925.4554999992],[362946.10300000012,4306926.1555000003],[362945.9029000001,4306926.8654999994],[362945.21300000045,4306927.7655999996],[362944.62299999967,4306928.5755000003],[362944.42300000042,4306929.4755000006],[362944.73300000001,4306929.9755000006],[362945.74309999961,4306930.8654999994],[362945.84300000034,4306931.6655000001],[362945.55300000031,4306932.7555],[362944.56300000008,4306934.0655000005],[362943.10300000012,4306936.9955000002],[362941.81300000008,4306939.5850000009],[362940.93300000019,4306941.1851000004],[362939.14300000016,4306943.0149000008],[362938.15299999993,4306944.4249000009],[362937.67300000042,4306946.6150000002],[362937.98300000001,4306948.6150000002],[362939.71300000045,4306951.5050000008],[362942.43300000019,4306953.9749999996],[362945.65299999993,4306956.2350999992],[362946.44739999995,4306956.8885999992],[362946.86309999973,4306957.2249999996],[362947.8629999999,4306958.3245000001],[362948.27300000004,4306958.6144999992],[362948.57299999986,4306958.8144000005],[362949.17300000042,4306958.7045000009],[362949.77300000004,4306958.4045000002],[362950.47300000023,4306958.3944000006],[362951.07299999986,4306958.5944999997],[362951.57299999986,4306958.9845000003],[362951.78299999982,4306959.2843999993],[362952.78289999999,4306959.8745000008],[362953.88300000038,4306960.4543999992],[362954.68300000019,4306960.6545000002],[362955.28299999982,4306960.9444999993],[362955.69299999997,4306961.3444999997],[362955.69299999997,4306962.0445000008],[362955.60309999995,4306962.5445000008],[362955.00299999956,4306963.0446000006],[362954.42289999966,4306963.7544],[362954.12299999967,4306964.3543999996],[362954.22310000006,4306964.9545000009],[362954.43300000019,4306965.7544999998],[362954.83299999963,4306966.0545000006],[362955.23300000001,4306966.1445000004],[362955.73300000001,4306966.1445000004],[362956.63300000038,4306965.9344999995],[362957.13300000038,4306965.7346000001],[362957.63300000038,4306965.7145000007],[362957.8328999998,4306966.3146000002],[362957.84300000034,4306966.8145000003],[362958.24299999978,4306967.2145000007],[362958.64300000016,4306967.7045000009],[362959.44299999997,4306967.9044000003],[362960.34300000034,4306968.2945000008],[362960.64290000033,4306968.4846000001],[362960.95299999975,4306969.0844999999],[362961.06300000008,4306969.8845000006],[362961.17300000042,4306970.2844999991],[362961.98300000001,4306971.7740000002],[362961.98300000001,4306971.6744999997],[362962.01620000042,4306971.7511],[362962.89300000016,4306973.7745999992],[362963.50289999973,4306974.7544],[362963.91299999971,4306975.8544999994],[362966.85300000012,4306978.9140000008],[362969.37249999959,4306982.1940000001],[362969.98249999993,4306983.0040000007],[362970.58249999955,4306983.3939999994],[362971.48249999993,4306983.5839000009],[362972.48249999993,4306983.7640000004],[362974.09250000026,4306984.4539999999],[362975.60250000004,4306985.5439999998],[362977.62249999959,4306988.1140000001],[362979.2424999997,4306990.2139999997],[362979.86249999981,4306991.5940000005],[362980.3825000003,4306993.8039999995],[362980.60250000004,4306996.1841000002],[362981.01250000019,4306997.7835000008],[362981.52249999996,4306998.9835999999],[362982.6325000003,4307000.1734999996],[362983.44249999989,4307000.6535999998],[362984.25250000041,4307001.3434999995],[362987.08249999955,4307005.3234999999],[362988.38779999968,4307007.4625000004],[362989.01250000019,4307008.5034999996],[362990.43250000011,4307010.4935999997],[362992.04250000045,4307012.0833999999],[362993.35250000004,4307012.6634999998],[362994.35250000004,4307012.8635000009],[362995.36600000039,4307012.8534999993],[362995.45239999983,4307012.8533999994],[362996.15249999985,4307013.0333999991],[362998.68250000011,4307014.7035000008],[363000.53949999996,4307016.3794999998],[363002.20249999966,4307017.8829999994],[363004.62249999959,4307019.7630000003],[363005.94249999989,4307020.8530000001],[363006.30599999987,4307020.5399999991],[363006.43250000011,4307020.4330000002],[363006.82249999978,4307019.8330000006],[363006.91249999963,4307019.2430000007],[363006.90249999985,4307018.443],[363006.90249999985,4307017.5329999998],[363007.18250000011,4307015.9334999993],[363007.37249999959,4307014.7335000001],[363007.87260000035,4307013.2235000003],[363008.95239999983,4307011.4135999996],[363010.1325000003,4307010.3035000004],[363010.83249999955,4307009.9935999997],[363011.23249999993,4307009.9035],[363011.33249999955,4307010.0934999995],[363011.2424999997,4307010.7935000006],[363010.84240000043,4307011.4934999999],[363009.87249999959,4307013.1033999994],[363009.28249999974,4307014.3135000002],[363008.9924999997,4307015.4134999998],[363009.00250000041,4307016.9130000006],[363009.51250000019,4307018.9030000009],[363010.85250000004,4307022.1831],[363011.77249999996,4307023.9930000007],[363012.87249999959,4307024.9729999993],[363013.8825000003,4307025.4629999995],[363014.58249999955,4307026.2630000003],[363015.08249999955,4307027.0529999994],[363015.50250000041,4307027.7430000007],[363015.90249999985,4307028.2430000007],[363016.8125,4307028.5428999998],[363017.41249999963,4307028.5329999998],[363018.11249999981,4307028.523],[363019.41249999963,4307028.9131000005],[363023.04200000037,4307031.2729000002],[363027.36199999973,4307034.5429999996],[363029.48199999984,4307036.7225000001],[363030.62210000027,4307039.0124999993],[363030.82210000046,4307040.2125000004],[363030.94199999981,4307042.3124000002],[363031.35209999979,4307043.4125999995],[363032.58189999964,4307045.8026000001],[363033.39199999999,4307046.8925000001],[363034.70199999958,4307048.0824999996],[363035.71210000012,4307049.7725000009],[363036.44199999981,4307053.4626000002],[363036.57199999969,4307055.6623999998],[363036.89199999999,4307058.0621000007],[363037.50210000016,4307059.3619999997],[363038.21200000029,4307060.352],[363039.5120000001,4307060.8421],[363040.52199999988,4307061.432],[363041.73199999984,4307062.4219000004],[363042.44189999998,4307063.1119999997],[363042.74199999962,4307063.4120000005],[363043.05200000014,4307064.3120000008],[363043.45199999958,4307065.1119999997],[363043.7620000001,4307065.5020000003],[363044.56209999975,4307066.102],[363045.97200000007,4307067.0821000002],[363046.59200000018,4307067.5821000002],[363046.70199999958,4307068.5819000006],[363046.71200000029,4307071.682],[363047.14199999999,4307074.4719999991],[363048.38200000022,4307077.3615000006],[363050.40199999977,4307080.2514999993],[363052.71200000029,4307081.7314999998],[363055.12150000036,4307082.1114000008],[363058.12150000036,4307081.7815000005],[363059.81149999984,4307080.9615000002],[363060.61149999965,4307080.6614999995],[363061.61149999965,4307080.4516000003],[363063.01209999993,4307079.9316000007],[363066.78210000042,4307077.7014000006],[363069.17210000008,4307076.8914999999],[363070.87200000044,4307076.6714999992],[363073.18200000003,4307077.0615999997],[363075.28149999958,4307078.2414999995],[363076.31149999984,4307080.0316000003],[363076.42150000017,4307081.4315000009],[363076.2416000003,4307083.4315000009],[363075.3415000001,4307085.4415000007],[363073.7714999998,4307087.0614999998],[363070.87150000036,4307088.4915999994],[363065.58150000032,4307089.7413999997],[363062.69139999989,4307090.6614999995],[363060.31149999984,4307091.3815000001],[363059.00150000025,4307092.1015000008],[363058.01150000002,4307092.8015000001],[363057.21150000021,4307093.3114999998],[363056.05150000006,4307096.2214000002],[363055.37150000036,4307099.9409999996],[363055.31149999984,4307103.0308999997],[363055.85149999987,4307108.9409999996],[363057.0214999998,4307115.6410000008],[363058.56149999984,4307120.9104999993],[363059.50150000025,4307123.6205000002],[363060.50150000025,4307125.0004999992],[363061.31159999967,4307125.6005000006],[363061.91150000039,4307125.8005999997],[363063.01159999985,4307125.6905000005],[363063.21150000021,4307125.6805000007],[363063.82149999961,4307126.1704999991],[363064.23149999976,4307126.5704999994],[363064.23149999976,4307127.0703999996],[363064.04150000028,4307128.2805000003],[363063.64149999991,4307129.3805],[363063.35149999987,4307130.3705000002],[363063.26150000002,4307131.4804999996],[363063.38150000013,4307132.8805],[363064.01150000002,4307135.3805],[363065.2209999999,4307137.4700000007],[363067.85109999962,4307140.1501000002],[363071.57110000029,4307142.6099999994],[363075.71100000013,4307144.9700000007],[363077.20100000035,4307145.4600000009],[363078.30099999998,4307145.4498999994],[363079.80099999998,4307145.1300000008],[363081.60109999962,4307144.1300000008],[363083.08100000024,4307143.5999999996],[363084.68099999987,4307143.1999999993],[363086.39099999983,4307142.5700000003],[363088.76099999994,4307141.3599999994],[363090.16100000031,4307139.7400000002],[363091.0410000002,4307138.0401000008],[363091.32100000046,4307136.6298999991],[363091.41100000031,4307134.4404000007],[363091.70100000035,4307132.6205000002],[363092.68149999995,4307130.7205999997],[363094.2714999998,4307129.4003999997],[363095.56149999984,4307128.7905000001],[363097.06149999984,4307128.5804999992],[363098.37150000036,4307129.0705999993],[363099.37150000036,4307129.9505000003],[363100.2910000002,4307131.3505000006],[363101.92090000026,4307134.2305999994],[363102.63100000005,4307136.1304000001],[363102.85099999979,4307137.5199999996],[363102.67100000009,4307139.2300000004],[363101.98099999968,4307140.6300000008],[363101.68099999987,4307141.3300000001],[363101.60109999962,4307142.3300000001],[363101.31099999975,4307143.5299999993],[363100.71109999996,4307144.4399999995],[363098.64099999983,4307145.6500000004],[363096.73099999968,4307146.6699999999],[363095.14109999966,4307147.6898999996],[363093.35099999979,4307149.4100000001],[363089.78100000042,4307151.3500999995],[363084.90099999961,4307153.6900999993],[363082.30099999998,4307155.4199999999],[363080.11089999974,4307156.7396000009],[363074.74110000022,4307159.8894999996],[363071.46100000013,4307162.2294999994],[363070.77099999972,4307163.2194999997],[363070.48089999985,4307164.0395],[363070.59109999985,4307165.2394999992],[363070.69099999964,4307166.2394999992],[363070.71100000013,4307167.2393999994],[363070.61099999957,4307167.6394999996],[363069.41100000031,4307168.0595999993],[363068.02099999972,4307168.2595000006],[363067.42100000009,4307168.3694000002],[363064.83100000024,4307170.3994999994],[363063.45100000035,4307171.8094999995],[363062.25100000016,4307172.8194999993],[363061.75090000033,4307173.5295000002],[363061.67100000009,4307175.4294000007],[363061.59100000001,4307176.9389999993],[363061.00090000033,4307179.1289000008],[363060.32110000029,4307181.0490000006],[363059.83100000024,4307182.1491],[363059.46100000013,4307183.9491000008],[363059.27099999972,4307185.8589999992],[363058.87100000028,4307187.9590000007],[363058.69099999964,4307189.2690999992],[363058.70100000035,4307190.4789000005],[363059.30099999998,4307191.4690000005],[363060.10099999979,4307191.7589999996],[363061.00100000016,4307191.6489000004],[363061.99100000039,4307191.1390000004],[363062.59100000001,4307190.4289999995],[363062.98099999968,4307189.7390000001],[363063.27099999972,4307189.1391000003],[363063.56099999975,4307188.5289999992],[363064.16100000031,4307188.3289999999],[363064.56099999975,4307188.4189999998],[363065.06099999975,4307188.7190000005],[363065.37100000028,4307189.1190000009],[363065.57100000046,4307189.9188999999],[363065.68099999987,4307190.8090000004],[363065.48099999968,4307191.9189999998],[363065.39099999983,4307192.5189999994],[363065.10099999979,4307193.7190000005],[363065.01049999986,4307195.1190000009],[363065.22049999982,4307197.2285999991],[363065.33050000016,4307198.5285],[363065.04050000012,4307199.1284999996],[363064.54059999995,4307199.1284999996],[363064.24039999954,4307199.1284999996],[363063.63049999997,4307198.8285000008],[363062.82050000038,4307198.1384999994],[363062.32050000038,4307198.0484999996],[363061.52049999963,4307198.2585000005],[363060.52049999963,4307198.9684999995],[363060.03050000034,4307199.8785999995],[363059.93049999978,4307200.6785000004],[363059.84049999993,4307201.3784999996],[363059.35039999988,4307202.4785999991],[363059.0504999999,4307203.1885000002],[363058.96050000004,4307204.0886000004],[363059.2706000004,4307204.9784999993],[363060.08050000016,4307206.8783999998],[363060.28050000034,4307207.4784999993],[363060.59049999993,4307208.3684999999],[363060.60049999971,4307209.3784999996],[363060.20050000027,4307210.1886],[363059.70050000027,4307210.6885000002],[363058.31049999967,4307211.4885000009],[363057.81039999984,4307211.9985000007],[363057.22049999982,4307213.1085000001],[363057.12050000019,4307214.3084999993],[363058.07039999962,4307218.6079999991],[363059.18049999978,4307221.898],[363060.49050000031,4307224.1879999992],[363061.41050000023,4307226.0779999997],[363061.62050000019,4307227.3880000003],[363062.04050000012,4307231.7780000009],[363063.40050000045,4307239.0875000004],[363066.04050000012,4307245.5775000006],[363068.66999999993,4307251.6775000002],[363072.74000000022,4307259.6469999999],[363076.36000000034,4307264.4269999992],[363078.46999999974,4307266.6269000005],[363079.99000000022,4307269.0069999993],[363081.10989999957,4307270.8969000001],[363086.13009999972,4307275.477],[363090.83999999985,4307279.2465000004],[363092.75,4307280.8265000004],[363093.98000000045,4307282.2164999992],[363095.58000000007,4307284.1264999993],[363097.20000000019,4307286.1064999998],[363100,4307288.3864999991],[363103.00999999978,4307290.6665000003],[363105.23000000045,4307292.1465000007],[363106.53000000026,4307293.2364000008],[363107.25999999978,4307293.9564999994],[363110.75,4307297.3460000008],[363114.71960000042,4307299.9759999998],[363118.15189999994,4307300.8243000004],[363118.94959999993,4307301.0160000008],[363121.75949999969,4307302.0059999991],[363123.53949999996,4307302.0360000003],[363124.88949999958,4307301.6558999997],[363125.64950000029,4307300.9560000002],[363126.21449999977,4307300.5795000009],[363126.65950000007,4307300.2861000001],[363127.46949999966,4307299.9859999996],[363128.2695000004,4307299.8760000002],[363128.31950000022,4307299.8859999999],[363129.35950000025,4307300.0660999995],[363130.38949999958,4307300.8660000004],[363131.66949999984,4307301.6160000004],[363132.36950000003,4307301.3259999994],[363134.62949999981,4307298.7660000008],[363136.17949999962,4307297.8560000006],[363137.50949999969,4307297.3660000004],[363138.85950000025,4307297.0961000007],[363143.67949999962,4307296.7864999995],[363145.88949999958,4307296.4265000001],[363146.41949999984,4307296.1864999998],[363147.09949999955,4307295.4564999994],[363148.1995000001,4307294.6064999998],[363149.4495000001,4307293.9565999992],[363149.82949999999,4307293.4464999996],[363150.12999999989,4307292.9464999996],[363150.33000000007,4307292.5464999992],[363150.33000000007,4307292.1465000007],[363150.33000000007,4307291.7464000005],[363150.44000000041,4307291.3365000002],[363150.74000000022,4307290.5364999995],[363151.1501000002,4307290.1363999993],[363151.65000000037,4307289.8165000007],[363152.15000000037,4307289.3165000007],[363152.65000000037,4307288.3164000008],[363153.02890000027,4307287.6585000008],[363154.46999999974,4307285.1864999998],[363156.19000000041,4307281.8664999995],[363156.99000000022,4307280.8664999995],[363158.30999999959,4307279.3465],[363159.21999999974,4307278.1364999991],[363159.71999999974,4307276.8269999996],[363160.23000000045,4307275.5270000007],[363160.74000000022,4307274.7170000002],[363160.94000000041,4307273.9169999994],[363161.33999999985,4307272.9169999994],[363161.83999999985,4307272.0069999993],[363163.34999999963,4307269.8870000001],[363165.1799999997,4307268.0670999996],[363167.50999999978,4307266.6370000001],[363168.20999999996,4307266.5471000001],[363168.8200000003,4307266.1370000001],[363169.80999999959,4307265.1170000006],[363171.33000000007,4307263.1070000008],[363171.04999999981,4307262.2070000004],[363170.44000000041,4307261.6070000008],[363170.54000000004,4307261.0069999993],[363170.65000000037,4307260.6070000008],[363171.15000000037,4307260.6970000006],[363172.17009999976,4307260.8870000001],[363173.39010000043,4307261.3770000003],[363173.86000000034,4307261.6868999992],[363174.70999999996,4307262.2670000009],[363175.23000000045,4307262.9471000005],[363175.62000000011,4307263.4570000004],[363175.62999999989,4307264.7569999993],[363175.41999999993,4307265.2569999993],[363174.71999999974,4307265.8670000006],[363173.82990000024,4307266.2870000005],[363172.63999999966,4307267.1970000006],[363169.95000000019,4307269.8169999998],[363166.76999999955,4307273.557],[363164.79000000004,4307276.9865000006],[363164.29999999981,4307278.6864999998],[363163.70000000019,4307279.5965999998],[363162.62000000011,4307281.0164999999],[363161.65220000036,4307282.9918000009],[363158.84999999963,4307288.6564000007],[363156.78949999996,4307293.9565999992],[363157.05950000044,4307295.2164999992],[363156.98950000014,4307296.8265000004],[363156.68960000016,4307297.7559999991],[363155.36950000003,4307300.0559999999],[363155.17949999962,4307300.8059999999],[363156.58949999977,4307304.7559999991],[363157.61950000003,4307306.7061000001],[363158.60950000025,4307307.9460000005],[363159.83949999977,4307308.9859999996],[363163.73950000014,4307311.4360000007],[363165.38949999958,4307312.8859999999],[363166.70949999988,4307313.7860000003],[363168.71949999966,4307314.6560999993],[363170.72950000037,4307314.9460000005],[363171.68950000033,4307314.8158999998],[363173.18960000016,4307314.2061000001],[363174.68950000033,4307313.2458999995],[363177.23950000014,4307310.9659000002],[363177.9495000001,4307310.6360999998],[363178.93950000033,4307310.4759999998],[363184.11950000003,4307310.8859999999],[363185.42949999962,4307311.3860999998],[363186.65950000007,4307312.0659999996],[363187.98950000014,4307312.4759999998],[363188.7695000004,4307312.4560000002],[363190.52950000018,4307311.9958999995],[363191.73950000014,4307311.9560000002],[363192.92949999962,4307312.0861000009],[363193.67949999962,4307312.3060999997],[363195.29949999973,4307313.1160000004],[363196.78949999996,4307313.6960000005],[363198.92949999962,4307314.2259999998],[363202.71949999966,4307314.0359000005],[363208.68950000033,4307314.6059000008],[363210.47950000037,4307314.6261],[363213.09949999955,4307314.4059999995],[363214.60950000025,4307313.9659000002],[363216.54949999973,4307312.9359000009],[363218.4495000001,4307311.4159999993],[363219.70949999988,4307309.8859999999],[363221.21949999966,4307307.5059999991],[363222.41949999984,4307304.9859999996],[363224.49940000009,4307299.5759999994],[363225.8694000002,4307294.9765000008],[363225.91949999984,4307294.1864999998],[363225.90899999999,4307294.023],[363225.89950000029,4307293.9564999994],[363224.43950000033,4307291.0065000001],[363222.89950000029,4307289.7265000008],[363220.95949999988,4307288.3365000002],[363218.92949999962,4307286.3564999998],[363217.99949999992,4307285.4564999994],[363217.98950000014,4307284.6565000005],[363218.45949999988,4307283.5565000009],[363219.34949999955,4307282.8564999998],[363220.43950000033,4307282.3465],[363221.00949999969,4307281.4265000001],[363221.39960000012,4307280.4265000001],[363221.88009999972,4307279.7365000006],[363223.16999999993,4307279.2164999992],[363224.65000000037,4307278.9065000005],[363225.53000000026,4307278.8864999991],[363226.61959999986,4307279.1864999998],[363227.31950000022,4307279.5865000002],[363227.60950000025,4307279.8764999993],[363228.0195000004,4307280.5766000003],[363228.32949999999,4307281.5764000006],[363228.82949999999,4307282.1665000003],[363229.70949999988,4307282.7664999999],[363230.79949999973,4307282.9563999996],[363231.68950000033,4307282.9464999996],[363232.68950000033,4307282.9364999998],[363233.4793999996,4307282.9265000001],[363234.56950000022,4307283.2164999992],[363235.15950000007,4307283.5164999999],[363235.45949999988,4307283.9166000001],[363236.15950000007,4307285.2063999996],[363237.35950000025,4307286.4066000003],[363238.64950000029,4307287.4865000006],[363240.13949999958,4307288.3764999993],[363242.22950000037,4307288.6665000003],[363244.99940000009,4307288.9265000001],[363246.98959999997,4307289.1164999995],[363249.55950000044,4307289.5866],[363251.64940000046,4307290.2765999995],[363253.14950000029,4307290.5666000005],[363254.32949999999,4307291.2465000004],[363255.12949999981,4307292.1465000007],[363256.40950000007,4307292.6364999991],[363257.41949999984,4307292.9264000002],[363258.10950000025,4307293.2266000006],[363258.70959999971,4307293.9564999994],[363258.6995000001,4307294.1465000007],[363258.5195000004,4307294.6665000003],[363257.92949999962,4307295.4865000006],[363257.29949999973,4307295.9865000006],[363257.18950000033,4307296.3563999999],[363261.98950000014,4307299.0260000005],[363260.90199999977,4307302.6885000002],[363253.09960000031,4307329.0555000007],[363253.04949999973,4307329.7455000002],[363252.71899999958,4307331.9254999999],[363252.73900000006,4307332.7156000007],[363253.13900000043,4307334.6855999995],[363253.68900000025,4307336.1854999997],[363254.44900000002,4307337.1154999994],[363255.23900000006,4307337.7054999992],[363257.52909999993,4307338.4948999994],[363258.99890000001,4307339.1750000007],[363259.66000000015,4307339.5355999991],[363260.41899999976,4307339.9549000002],[363261.5290000001,4307340.7850000001],[363262.33899999969,4307341.6449999996],[363263.34900000039,4307343.1449999996],[363264.33899999969,4307345.1750000007],[363264.55900000036,4307346.1349999998],[363264.50899999961,4307346.9149999991],[363264.17899999954,4307347.8849999998],[363263.7089999998,4307348.5150000006],[363262.89900000021,4307349.1349999998],[363261.22900000028,4307349.7650000006],[363259.14400000032,4307349.9254999999],[363258.41899999976,4307349.9749999996],[363256.25899999961,4307350.4149999991],[363254.65899999999,4307351.2650000006],[363254.13900000043,4307351.8549000006],[363253.74899999984,4307352.5850000009],[363253.53899999987,4307353.7250999995],[363254.14900000021,4307357.3149999995],[363253.84900000039,4307358.2750000004],[363253.13900000043,4307359.4745000005],[363253.01900000032,4307360.2643999998],[363253.40899999999,4307361.2145000007],[363254.65899999999,4307363.0244999994],[363255.0290000001,4307364.3146000002],[363254.94900000002,4307365.5044999998],[363254.11899999995,4307369.9244999997],[363254.05910000019,4307371.5344999991],[363254.25899999961,4307372.6944999993],[363254.92899999954,4307373.9045000002],[363256.5290000001,4307375.7644999996],[363260.17899999954,4307378.8839999996],[363262.65899999999,4307381.2139999997],[363264.39900000021,4307383.4140000008],[363266.19840000011,4307386.0540999994],[363268.32849999983,4307388.4340000004],[363270.77850000001,4307390.7939999998],[363274.77850000001,4307394.1040000003],[363278.51850000024,4307397.4539999999],[363280.9785000002,4307399.7734999992],[363283.43850000016,4307402.4035],[363286.41839999985,4307404.7634999994],[363290.31850000005,4307407.2135000005],[363292.62449999992,4307408.3515000008],[363296.77850000001,4307410.4035],[363300.08860000037,4307411.8035000004],[363304.21850000042,4307413.3234999999],[363311.47840000037,4307415.5935999993],[363315.59850000031,4307417.1436000001],[363317.75850000046,4307418.1734999996],[363322.58849999961,4307421.0329999998],[363326.64850000013,4307422.7229999993],[363332.66849999968,4307424.9230000004],[363335.46850000042,4307426.4330000002],[363336.61799999978,4307426.7430000007],[363339.61799999978,4307427.2128999997],[363345.47809999995,4307429.2329999991],[363352.69790000003,4307430.8530000001],[363355.10800000001,4307431.1530000009],[363355.86799999978,4307430.9729999993],[363356.58800000045,4307430.5830000006],[363357.37799999956,4307429.9729999993],[363357.92800000031,4307429.3729999997],[363358.2081000004,4307428.8530999999],[363358.50800000038,4307427.4930000007],[363359.02799999993,4307426.8629999999],[363359.53799999971,4307426.6230999995],[363361.18800000008,4307426.523],[363363.38800000027,4307426.6428999994],[363365.57799999975,4307426.4729999993],[363368.77799999993,4307426.5130000003],[363372.85790000018,4307425.4829999991],[363373.97800000012,4307425.0730000008],[363375.17810000014,4307424.3530000001],[363376.27799999993,4307423.5030000005],[363377.44429999962,4307422.3958999999],[363380.04800000042,4307419.9035],[363381.74799999967,4307417.9434999991],[363383.83849999961,4307416.3835000005],[363385.17850000039,4307414.9134999998],[363386.19849999994,4307412.7435999997],[363386.87849999964,4307410.8635000009],[363387.66700000037,4307408.4185000006],[363388.9084999999,4307404.5734999999],[363390.04849999957,4307400.1239999998],[363391.58849999961,4307397.5439999998],[363392.07849999983,4307396.9039999992],[363392.6584999999,4307396.3639000002],[363394.73849999998,4307395.6740000006],[363396.45849999972,4307393.9839999992],[363397.77850000001,4307393.6339999996],[363398.77850000001,4307393.7440000009],[363400.11539999954,4307394.1459999997],[363400.35850000009,4307394.2240999993],[363402.87849999964,4307395.4140000008],[363405.26850000024,4307395.784],[363406.03849999979,4307395.7441000007],[363410.92850000039,4307392.9639999997],[363412.44859999977,4307392.5140000004],[363413.50850000046,4307391.9140000008],[363414.38850000035,4307391.1239999998],[363415.91849999968,4307388.9839999992],[363416.42850000039,4307388.7139999997],[363417.2285000002,4307388.7238999996],[363417.75850000046,4307388.9440000001],[363418.99849999975,4307390.0639999993],[363419.62849999964,4307390.8640999999],[363420.1584999999,4307391.1539999992],[363421.02850000001,4307390.034],[363421.71850000042,4307389.6940000001],[363422.49839999992,4307389.7438999992],[363424.63850000035,4307390.8540000003],[363425.82849999983,4307391.0140000004],[363426.75850000046,4307390.7740000002],[363428.77850000001,4307389.8039999995],[363434.08849999961,4307389.1439999994],[363435.42850000039,4307388.7640000004],[363436.9084999999,4307388.1339999996],[363438.27850000001,4307384.5439999998],[363438.75850000046,4307383.9440000001],[363439.44849999994,4307383.5439999998],[363439.83860000037,4307383.5139000006],[363440.64850000013,4307383.7239999995],[363441.17860000022,4307384.0140000004],[363441.9084999999,4307384.7039999999],[363442.53849999979,4307384.8839999996],[363443.84850000031,4307384.8840999994],[363444.01850000024,4307384.4441],[363444.75850000046,4307384.1640000008],[363446.96850000042,4307384.5739999991],[363448.21850000042,4307383.9739999995],[363449.18850000016,4307383.8340000007],[363451.54860000033,4307384.3540000003],[363452.14850000013,4307384.3739999998],[363455.43850000016,4307383.5539999995],[363457.44849999994,4307383.7339999992],[363458.22860000003,4307383.9039999992],[363460.48849999998,4307384.7440000009],[363461.86849999987,4307384.7939999998],[363464.26850000024,4307384.4940000009],[363467.60850000009,4307383.8039999995],[363470.78859999962,4307383.4639999997],[363475.39850000013,4307382.1740000006],[363480.8685999997,4307380.8745000008],[363481.91839999985,4307380.2946000006],[363482.65859999973,4307379.6445000004],[363483.80850000028,4307377.4944000002],[363484.69849999994,4307376.4244999997],[363485.60850000009,4307375.6245000008],[363486.94849999994,4307374.7643999998],[363488.24849999975,4307374.2444000002],[363490.55850000028,4307373.5845999997],[363494.68840000033,4307372.7544999998],[363496.61849999987,4307372.2445],[363499.85850000009,4307371.1944999993],[363503.02850000001,4307369.9745000005],[363507.36849999987,4307367.9145],[363516.21850000042,4307362.4245999996],[363518.08849999961,4307361.7249999996],[363519.45839999989,4307361.6648999993],[363520.81850000005,4307362.0145999994],[363522.53849999979,4307362.6445000004],[363526.45849999972,4307364.6245000008],[363528.34850000031,4307365.3344000001],[363530.6584999999,4307365.9745000005],[363533.00860000029,4307366.3145000003],[363540.02850000001,4307366.5945999995],[363542.82849999983,4307366.4744000006],[363547.3984000003,4307365.9045000002],[363549.74859999958,4307365.4244999997],[363550.83849999961,4307364.8945000004],[363551.45849999972,4307364.3845000006],[363551.81850000005,4307363.6744999997],[363551.85850000009,4307363.0445000008],[363577.14850000013,4307359.1549999993],[363576.07849999983,4307354.8450000007],[363597.06850000005,4307350.7850000001],[363599.9084999999,4307350.5051000006],[363601.30850000028,4307351.2751000002],[363602.00850000046,4307352.2249999996],[363602.45849999972,4307352.5950000007],[363603.03849999979,4307352.6951000001],[363604.42850000039,4307352.5748999994],[363606.13850000035,4307352.0850000009],[363608.89850000013,4307350.9250000007],[363609.92850000039,4307350.3550000004],[363611.64850000013,4307349.0250000004],[363613.34860000014,4307348.0050000008],[363614.60850000009,4307347.4149999991],[363615.98849999998,4307346.9550000001],[363616.01850000024,4307344.9710000008],[363616.01850000024,4307344.7850000001],[363617.52840000018,4307344.4951000009],[363617.59850000031,4307344.7149999999],[363619.06850000005,4307349.2249999996],[363619.9084999999,4307350.5749999993],[363620.66849999968,4307351.2249999996],[363621.55850000028,4307351.7050999999],[363622.9084999999,4307351.9550000001],[363625.12849999964,4307351.8149999995],[363626.49849999975,4307351.5548999999],[363629.96850000042,4307350.5749999993],[363632.79849999957,4307349.5850000009],[363635.42850000039,4307348.1649999991],[363637.33849999961,4307346.7250999995],[363638.9084999999,4307345.1648999993],[363640.35850000009,4307343.2449999992],[363640.9084999999,4307342.1855999995],[363641.03839999996,4307341.2054999992],[363640.74859999958,4307340.4755000006],[363639.52850000001,4307339.4155000001],[363639.17850000039,4307339.2555],[363637.53849999979,4307339.1054999996],[363637.21850000042,4307338.9554999992],[363637.00860000029,4307338.6655000001],[363636.11799999978,4307335.2939999998],[363635.19849999994,4307331.8255000003],[363634.9785000002,4307330.0454999991],[363635.05850000028,4307328.4354999997],[363635.62849999964,4307328.0055999998],[363638.56850000005,4307327.1154999994],[363640.52850000001,4307326.6954999994],[363643.29849999957,4307326.3655999992],[363645.4084999999,4307325.7956000008],[363646.64850000013,4307323.7156000007],[363647.69849999994,4307322.2660000008],[363650.24849999975,4307319.4460000005],[363650.70859999955,4307319.0658999998],[363651.28839999996,4307318.8660000004],[363651.67850000039,4307318.8359999992],[363652.20849999972,4307319.0759999994],[363652.79839999974,4307319.6659999993],[363653.12849999964,4307320.216],[363653.26850000024,4307320.7760000005],[363653.16849999968,4307321.1161000002],[363652.04849999957,4307322.5855],[363650.18850000016,4307324.4154000003],[363649.07859999966,4307325.8255000003],[363648.25850000046,4307327.2053999994],[363647.7285000002,4307328.6954999994],[363647.64850000013,4307329.5855],[363647.63850000035,4307329.6955999993],[363648.24849999975,4307334.1254999992],[363648.63850000035,4307335.0354999993],[363649.00850000046,4307335.7654999997],[363649.53849999979,4307336.3055000007],[363650.9785000002,4307337.0755000003],[363654.22840000037,4307338.1054999996],[363655.59850000031,4307338.3855000008],[363656.57849999983,4307338.3855000008],[363659.71860000025,4307337.7854999993],[363662.30850000028,4307337.5854000002],[363664.23849999998,4307337.0755000003],[363666.42850000039,4307336.1153999995],[363668.13850000035,4307335.0855],[363672.08849999961,4307332.3454999998],[363680.19840000011,4307326.1855999995],[363683.91849999968,4307323.1655000001],[363686.28849999979,4307321.0161000006],[363687.89850000013,4307318.7559999991],[363687.78849999979,4307318.5760999992],[363686.41849999968,4307316.3859999999],[363683.93850000016,4307313.7558999993],[363683.68840000033,4307313.466],[363682.01860000007,4307310.5360000003],[363680.57849999983,4307308.6458999999],[363678.89900000021,4307305.7060000002],[363678.08899999969,4307303.6758999992],[363677.39900000021,4307302.4359000009],[363678.57899999991,4307299.8564999998],[363678.98900000006,4307298.6565000005],[363680.80900000036,4307293.9564999994],[363681.11899999995,4307290.1064999998],[363681.34900000039,4307285.2365000006],[363681.91899999976,4307272.7171],[363682.01900000032,4307270.6569999997],[363713.78899999987,4307277.3169999998],[363723.60900000017,4307279.3771000002],[363726.67899999954,4307283.3965000007],[363728.7790000001,4307286.1364999991],[363731.47900000028,4307284.2265000008],[363731.7790000001,4307284.0065000001],[363740.82899999991,4307277.5370000005],[363744.11899999995,4307275.1870000008],[363753.73900000006,4307268.307],[363765.88900000043,4307284.2964999992],[363767.48900000006,4307286.3964000009],[363772.86849999987,4307293.9565999992],[363775.10850000009,4307296.6965999994],[363775.94849999994,4307297.6764000002],[363776.59850000031,4307298.4065000005],[363779.36000000034,4307296.9776000008],[363788.53110000025,4307291.5325000007],[363789.38850000035,4307291.6964999996],[363792.87849999964,4307292.3165000007],[363797.23849999998,4307293.0964000002],[363799.46850000042,4307293.4965000004],[363799.54860000033,4307293.5065000001],[363799.83499999996,4307293.4539999999],[363800.37409999967,4307293.3551000003],[363804.50850000046,4307292.5965],[363811.54349999968,4307290.1425000001],[363811.47549999971,4307290.0288999993],[363810.64850000013,4307288.6465000007],[363809.28839999996,4307286.3965000007],[363808.69849999994,4307285.4065000005],[363821.9084999999,4307282.3864999991],[363845.39900000021,4307277.1668999996],[363855.4589999998,4307274.9069999997],[363864.86899999995,4307272.7870000005],[363871.56900000013,4307271.2870000005],[363874.44900000002,4307270.6382999998],[363874.4924999997,4307270.6285999995],[363875.60900000017,4307270.3770000003],[363880.82899999991,4307269.2070000004],[363881.40099999961,4307269.0790999997],[363881.82899999991,4307268.9570000004],[363897.62999999989,4307264.5565000009],[363899.55099999998,4307263.6064999998],[363904.90899999999,4307260.9574999996],[363906.0290000001,4307260.3975000009],[363908.40899999999,4307259.2173999995],[363912.60900000017,4307257.1374999993],[363914.24899999984,4307256.4175000004],[363918.92899999954,4307254.3474000003],[363921.41899999976,4307253.2475000005],[363927.99899999984,4307250.5375999995],[363931.03899999987,4307249.2775999997],[363934.42899999954,4307247.8074999992],[363936.06900000013,4307247.0975000001],[363941.73900000006,4307244.6274999995],[363942.77909999993,4307244.1775000002],[363944.73900000006,4307243.3275000006],[363949.36899999995,4307241.3176000006],[363953.36899999995,4307239.5779999997],[363953.72900000028,4307239.4179999996],[363953.97039999999,4307239.3136],[363954.09900000039,4307239.2579999994],[363955.93900000025,4307238.4478999991],[363956.24890000001,4307238.318],[363956.54150000028,4307238.1899999995],[363958.58939999994,4307237.2954999991],[363958.85900000017,4307237.1778999995],[363960.03529999964,4307236.6645999998],[363960.1054999996,4307236.6338999998],[363960.82899999991,4307236.318],[363961.46600000001,4307236.0494999997],[363961.45150000043,4307235.9866000004],[364014.62899999972,4307213.9584999997],[364029.55250000022,4307213.341],[364029.53899999987,4307211.8285000008],[364029.5290000001,4307210.7984999996],[364034.88150000013,4307208.6940000001],[364035.42899999954,4307208.4784999993],[364038.4589999998,4307208.5184000004],[364040.31900000013,4307208.5384999998],[364042.54899999965,4307208.568],[364044.84399999958,4307208.5979999993],[364046.39910000004,4307208.6184999999],[364048.53899999987,4307208.6484999992],[364051.66899999976,4307209.2183999997],[364056.18900000025,4307210.0285999998],[364068.66899999976,4307212.2884999998],[364078.09900000039,4307213.8784999996],[364084.63900000043,4307214.9885000009],[364088.63900000043,4307215.6583999991],[364090.87889999989,4307216.0385999996],[364106.48900000006,4307218.7585000005],[364114.69900000002,4307220.1885000002],[364121.18900000025,4307221.398],[364122.09900000039,4307221.568],[364122.2790000001,4307221.5979999993],[364123.30900000036,4307221.7679999992],[364124.35900000017,4307221.9480000008],[364125.28899999987,4307222.0979999993],[364125.51900000032,4307222.1380000003],[364134.52400000021,4307223.6379000004],[364135.63900000043,4307223.818],[364141.12399999984,4307224.6644000001],[364142.11899999995,4307224.8179000001],[364141.11230000015,4307224.8362000007],[364138.24899999984,4307224.8880000003],[364130.67899999954,4307225.0079999994],[364127.42899999954,4307225.068],[364124.00899999961,4307225.1280000005],[364121.83899999969,4307225.1579999998],[364120.89900000021,4307225.1779999994],[364120.34900000039,4307225.1879999992],[364119.42889999971,4307225.1980000008],[364118.1791000003,4307225.2180000003],[364115.09900000039,4307225.2679999992],[364114.42860000022,4307225.2764999997],[364111.08889999986,4307225.318],[364107.34900000039,4307225.3780000005],[364104.30360000022,4307225.4199999999],[364142.31850000005,4307236.2980000004],[364156.42860000022,4307228.7396000009],[364156.51850000024,4307227.8479999993],[364156.60850000009,4307226.8579999991],[364156.67899999954,4307226.1380000003],[364164.85049999971,4307221.5490000006],[364173.59449999966,4307211.3289000001],[364174.4589999998,4307210.6184999999],[364175.43900000025,4307209.4185000006],[364177.59900000039,4307206.7585000005],[364195.16909999959,4307181.3990000002],[364207.82899999991,4307184.3690000009],[364208.00250000041,4307184.6604999993],[364208.15899999999,4307184.7090000007],[364213.3786000004,4307193.6840000004],[364215.39950000029,4307197.1585000008],[364215.66949999984,4307197.6129999999],[364216.52300000004,4307199.0490000006],[364216.56049999967,4307199.0244999994],[364218.86899999995,4307202.8986000009],[364224.31900000013,4307208.9684999995],[364231.16899999976,4307204.9683999997],[364234.26900000032,4307209.2984999996],[364244.16849999968,4307211.0185000002],[364299.54899999965,4307186.0390000008],[364308.31900000013,4307166.1995000001],[364329.16909999959,4307162.0995000005],[364350.64900000021,4307146.2200000007],[364355.96910000034,4307145.8563000001],[364360.42949999962,4307145.5513000004],[364364.02770000044,4307145.3054000009],[364364.93819999974,4307145.2432000004],[364366.01790000033,4307145.1693999991],[364368.87310000043,4307144.9741999991],[364373.02670000028,4307144.6901999991],[364373.46899999958,4307144.6600000001],[364373.98419999983,4307144.3795999996],[364403.5195000004,4307128.3004000001],[364411.19350000005,4307125.3870999999],[364420.40299999993,4307121.8904999997],[364445.53949999996,4307109.3509999998],[364446.04949999973,4307110.6609000005],[364446.63889999967,4307112.1951000001],[364453.24859999958,4307109.6487000007],[364457.96899999958,4307129.3606000002],[364490.76850000024,4307175.2596000005],[364494.57550000027,4307183.7294999994],[364495.58800000045,4307185.0979999993],[364500.67949999962,4307191.9801000003],[364505.06960000005,4307200.4220000003],[364507.09649999999,4307204.3184999991],[364517.46700000018,4307193.1475000009],[364522.54399999976,4307187.6778999995],[364528.81850000005,4307177.1294999998],[364574.99849999975,4307170.8595000003],[364575.0083999997,4307171.7060000002],[364575.32500000019,4307171.6538999993],[364576.29899999965,4307171.4945],[364579.22350000031,4307171.0159000009],[364578.46750000026,4307203.7991000004],[364578.42489999998,4307205.6270000003],[364603.2285000002,4307260.2236000001],[364605.3870000001,4307264.9745000005],[364606.46100000013,4307267.3378999997],[364604.06460000016,4307266.9163000006],[364604.42740000039,4307267.6875],[364583.2845999999,4307264.3131000008],[364573.79200000037,4307262.7980000004],[364572.03299999982,4307268.1335000005],[364569.70990000013,4307275.1799999997],[364540.48749999981,4307267.5975000001],[364522.50800000038,4307263.5374999996],[364510.33800000045,4307263.5374999996],[364501.63800000027,4307268.1769999992],[364495.83750000037,4307282.6771000009],[364486.55750000011,4307299.4866000004],[364461.04700000025,4307333.6954999994],[364447.1370000001,4307356.3049999997],[364438.13659999985,4307391.3945000004],[364428.8666000003,4307428.5034999996],[364417.26609999966,4307448.7928999998],[364400.45600000024,4307458.6528999992],[364376.0959999999,4307462.7029999997],[364343.62600000016,4307463.2825000007],[364317.53610000014,4307458.0731000006],[364314.68300000019,4307457.1555000003],[364301.30649999995,4307452.8530000001],[364285.6464999998,4307453.4329000004],[364269.99650000036,4307459.8129999992],[364259.8459999999,4307477.4924999997],[364251.14599999972,4307505.9014999997],[364240.71549999993,4307528.5110999998],[364227.37550000008,4307537.7908999994],[364215.20550000016,4307535.4710000008],[364193.16590000037,4307523.2910999991],[364152.58600000013,4307501.2614999991],[364122.43599999975,4307493.7219999991],[364107.93589999992,4307492.5620000008],[364094.02599999961,4307498.3619999997],[364083.58600000013,4307516.3416000009],[364074.88549999986,4307562.7204999998],[364076.62550000008,4307580.6899999995],[364089.09499999974,4307612.8790000007],[364106.48450000025,4307665.6380000003],[364118.0839999998,4307714.9166000001],[364118.05399999954,4307716.8664999995],[364117.78399999999,4307735.5065000001],[364114.30360000022,4307756.3759000003],[364102.12359999958,4307783.0449000001],[364056.32249999978,4307875.2430000007],[364038.22250000015,4307914.9519999996],[363992.24149999954,4308015.8395000007],[363941.79050000012,4308131.2263999991],[363903.04000000004,4308216.2544999998],[363879.16940000001,4308268.6335000005],[363830.16849999968,4308381.9804999996],[363785.37239999976,4308485.0711000003],[363781.16750000045,4308494.7479999997],[363756.51699999999,4308560.5559999999],[363720.73909999989,4308631.9145],[363705.20600000024,4308662.8939999994],[363701.93680000026,4308671.5394000001],[363687.18360000011,4308664.8099000007],[363686.93460000027,4308664.6963],[363669.76229999959,4308702.8474000003],[363658.53610000014,4308717.0106000006],[363657.25019999966,4308716.5086000003],[363655.61120000016,4308720.1066999994],[363656.90880000032,4308720.6818000004],[363650.09049999993,4308736.0658],[363649.73759999964,4308735.8504000008],[363648.83079999965,4308735.2969000004],[363596.28949999996,4308703.2294999994],[363586.14580000006,4308697.0381000005],[363571.28440000024,4308688.3701000009],[363531.53550000023,4308664.0823999997],[363522.79600000009,4308658.6370000001],[363514.15249999985,4308653.0399999991],[363505.60850000009,4308647.2929999996],[363497.1660000002,4308641.398],[363489.03390000015,4308635.5085000005],[363451.48849999998,4308607.8265000004],[363528.09800000023,4308517.0565000009],[363532.71349999961,4308511.0840000007],[363532.75250000041,4308511.0336000007],[363531.89309999999,4308510.4403000008],[363530.35800000001,4308509.3805],[363519.08550000004,4308501.2294999994],[363492.56099999975,4308480.2200000007],[363470.77550000045,4308461.3615000006],[363470.45480000041,4308461.0474999994],[363468.64329999965,4308459.2737000007],[363468.40789999999,4308459.0431999993],[363463.0466,4308453.7935000006],[363443.22319999989,4308434.3848000001],[363436.81309999991,4308427.5353999995],[363405.9291000003,4308390.8786999993],[363392.33169999998,4308378.4484000001],[363390.42949999962,4308377.4652999993],[363381.21109999996,4308373.3026999999],[363371.63889999967,4308369.9484000001],[363362.41849999968,4308367.5721000005],[363361.82380000036,4308367.4463999998],[363351.82799999975,4308365.8092],[363341.72200000007,4308365.0496999994],[363338.12999999989,4308365.1208999995],[363334.67250000034,4308365.7622999996],[363331.66210000031,4308366.8059999999],[363091.70199999958,4308496.4356999993],[362958.81900000013,4308566.3243000004],[362910.44550000038,4308592.8738000002],[362907.03899999987,4308594.7435999997],[362901.75899999961,4308597.2035000008],[362783.14879999962,4308661.2816000003],[362778.90660000034,4308663.6153999995],[362762.62700000033,4308672.5713999998],[362761.57849999983,4308673.7022999991],[362761.37090000045,4308673.9460000005],[362761.32050000038,4308674.0116000008],[362760.29949999973,4308675.3364000004],[362758.51150000002,4308677.3765999991],[362758.25700000022,4308677.6425000001],[362756.07749999966,4308679.7080000006],[362755.48099999968,4308681.1455000006],[362746.9495000001,4308688.2540000007],[362739.85300000012,4308692.6449999996],[362736.12420000043,4308694.8968000002],[362735.82149999961,4308694.6736999992],[362733.87949999981,4308693.2427999992],[362703.23629999999,4308711.2248999998],[362700.95239999983,4308712.5651999991],[362696.82100000046,4308714.9896000009],[362687.90730000008,4308720.4628999997],[362686.30999999959,4308719.3450000007],[362686.0859000003,4308719.1882000007],[362682.47900000028,4308716.6649999991],[362661.85699999984,4308702.2324999999],[362660.01900000032,4308703.0460000001],[362658.38860000018,4308703.6475000009],[362656.3554999996,4308704.2984999996],[362652.59700000007,4308705.227],[362648.7714999998,4308705.8245000001],[362648.72140000015,4308705.8359999992],[362645.41700000037,4308706.4316000007],[362642.07299999986,4308706.7369999997],[362638.71549999993,4308706.7499000002],[362635.3694000002,4308706.4699000008],[362632.06049999967,4308705.8993999995],[362629.5959999999,4308705.2770000007],[362628.81350000016,4308705.0426000003],[362624.0214999998,4308703.3385000005],[362619.3964999998,4308701.2235000003],[362614.97300000023,4308698.7135000005],[362610.96800000034,4308695.9645000007],[362610.78550000023,4308695.8269999996],[362581.3825000003,4308671.8609999996],[362577.61840000004,4308668.5095000006],[362558.65749999974,4308650.3684999999],[362549.05750000011,4308641.1840000004],[362538.81400000025,4308630.4890000001],[362503.47049999982,4308589.2311000004],[362454.82349999994,4308526.6930999998],[362393.46150000021,4308447.8094999995],[362392.65000000037,4308446.4875000007],[362391.83789999969,4308444.8154000007],[362391.21050000004,4308443.0655000005],[362390.77500000037,4308441.2579999994],[362390.53550000023,4308439.4145],[362390.49550000019,4308437.5560999997],[362390.65600000042,4308435.7035000008],[362390.86340000015,4308434.6449999996],[362391.01400000043,4308433.8794],[362391.56599999964,4308432.1044999994],[362392.30549999978,4308430.3984999992],[362392.36600000039,4308430.2789999992],[362393.22400000039,4308428.7829999998],[362394.31099999975,4308427.2744999994],[362393.51699999999,4308426.1754999999],[362390.89520000014,4308422.5471000001],[362448.05360000022,4308386.5103999991],[362487.39950000029,4308360.9979999997],[362554.72910000011,4308317.3399],[362559.77390000038,4308314.0689000003],[362581.85699999984,4308299.75],[362583.8359000003,4308298.4670000002],[362672.73940000031,4308239.7410000004],[362682.20150000043,4308235.9923999999],[362752.57600000035,4308191.3379999995],[362876.84999999963,4308108.4885000009],[362879.34949999955,4308105.9894999992],[362961.2910000002,4308052.6191000007],[362963.82510000002,4308051.3990000002],[362961.59190000035,4308048.2514999993],[362961.54800000042,4308048.1980000008],[362961.60610000044,4308048.1609000005],[362894.36649999954,4307925.0899999999],[362888.51900000032,4307914.3879000004],[362835.27850000001,4307779.5714999996],[362826.43950000033,4307775.8655999992],[362818.74149999954,4307771.3039999995],[362745.46499999985,4307788.409],[362674.55649999995,4307803.7529000007],[362674.33999999985,4307803.6380000003],[362599.56099999975,4307819.2495000008],[362497.35300000012,4307840.5885000005],[362447.85450000037,4307847.2050000001],[362372.61799999978,4307852.9609999992],[362353.66009999998,4307854.4114999995],[362342.61799999978,4307855.2565000001],[362267.71399999969,4307859.1585000008],[362210.15600000042,4307866.9694999997],[362152.31230000034,4307878.6060000006],[362152.14850000013,4307878.1495999992],[362151.40149999969,4307876.0669999998],[362150.85599999968,4307875.4570000004],[362149.02300000004,4307875.3690000009],[362147.21100000013,4307875.0825999994],[362145.44049999956,4307874.5999999996],[362145.18410000019,4307874.5123999994],[362144.28050000034,4307874.1484999992],[362143.73300000001,4307873.9280999992],[362141.45949999988,4307872.8199000005],[362139.29150000028,4307871.5175000001],[362137.24500000011,4307870.0314000007],[362135.33600000013,4307868.3719999995],[362134.32100000046,4307867.3599999994],[362133.57899999991,4307866.5528999995],[362131.31190000009,4307864.3606000002],[362128.86199999973,4307862.3740999997],[362126.24839999992,4307860.6088999994],[362125.27450000029,4307860.0319999997],[362123.49089999963,4307859.0775000006],[362120.61050000042,4307857.7928999998],[362120.20529999956,4307857.6531000007],[362116.69149999972,4307854.5295000002],[362116.15699999966,4307854.1154999994],[362116.12349999975,4307853.9735000003],[362115.70600000024,4307853.7189000007],[362114.00150000025,4307852.4464999996],[362113.56699999981,4307852.0795000009],[362112.42399999965,4307851.0199999996],[362110.9879999999,4307849.4509999994],[362109.70500000007,4307847.7540000007],[362108.58750000037,4307845.9440000001],[362108.01400000043,4307844.8374000005],[362074.45260000043,4307719.2990000006],[362062.65299999993,4307675.1615999993],[362062.54800000042,4307674.6854999997],[362053.66349999979,4307634.4260000009],[362041.69849999994,4307580.2074999996],[362041.11849999987,4307577.4175000004],[362035.4589999998,4307551.8783999998],[362032.48900000006,4307541.6984999999],[362030.31450000033,4307534.9985000007],[362028.95110000018,4307530.3060999997],[362018.47410000023,4307485.3074999992],[362008.83650000021,4307448.8454999998],[362006.09200000018,4307440.0380000006],[362004.01099999994,4307434.5130000003],[362000.12949999981,4307424.9622000009],[361997.88800000027,4307416.943],[361972.28399999999,4307325.1569999997],[361967.32100000046,4307318.3533999994],[361967.65649999958,4307318.4288999997],[361968.77199999988,4307318.8849999998],[361969.79710000008,4307319.5195000004],[361970.55399999954,4307320.1645999998],[361983.01099999994,4307330.7795000002],[361994.31749999989,4307306.7404999994],[361990.30999999959,4307303.7799999993],[361989.40610000025,4307302.8849999998],[361988.15299999993,4307301.6459999997],[361987.63129999954,4307301.1301000006],[361986.9040000001,4307300.4110000003],[361986.59999999963,4307300.1099999994],[361985.94000000041,4307299.2300000004],[361985.75299999956,4307299],[361985.25,4307298.3798999991],[361984.72200000007,4307297.7709999997],[361984.53000000026,4307297.5499000009],[361983.76999999955,4307296.75],[361983.17690000031,4307296.1655000001],[361982.99000000022,4307295.9803999998],[361982.20100000035,4307295.2785],[361982.16999999993,4307295.2504999992],[361981.33000000007,4307294.5401000008],[361981.15899999999,4307294.4085000008],[361980.45999999996,4307293.8699999992],[361980.05399999954,4307293.5779999997],[361979.5700000003,4307293.2300000004],[361978.65000000037,4307292.6199999992],[361978.11290000007,4307292.3000000007],[361977.70999999996,4307292.0599000007],[361977.36400000006,4307291.8559000008],[361976.63329999987,4307291.4262000006],[361976.51900000032,4307291.3588999994],[361975.62000000011,4307290.8300000001],[361975.0131000001,4307290.4726],[361974.70000000019,4307290.2880000006],[361974.3097000001,4307290.0583999995],[361973.96300000045,4307289.8544999994],[361973.80700000003,4307289.7630000003],[361973.30999999959,4307289.4700000007],[361972.99899999984,4307289.2511],[361972.33000000007,4307288.7788999993],[361969.64549999963,4307286.8852999993],[361969.01999999955,4307286.4440000001],[361968.12640000042,4307285.8135000002],[361967.87799999956,4307285.6384999994],[361967.2089999998,4307286.3945000004],[361967.08880000003,4307286.5298999995],[361966.88300000038,4307286.7620000001],[361966.69000000041,4307286.9804999996],[361965.98900000006,4307286.3605000004],[361965.25100000016,4307285.7070000004],[361964.54899999965,4307285.0855],[361964.19600000046,4307284.7734999992],[361963.58629999962,4307284.2334000003],[361963.3320000004,4307284.0079999994],[361962.50100000016,4307283.2719999999],[361961.68800000008,4307282.5518999994],[361960.88999999966,4307281.8460000008],[361960.10300000012,4307281.1500000004],[361959.32600000035,4307280.4620999992],[361954.16150000039,4307275.8913000003],[361950.81799999997,4307272.932],[361945.88999999966,4307268.5700000003],[361942.09800000023,4307265.2135000005],[361935.27649999969,4307260.4920000006],[361934.88549999986,4307260.1950000003],[361932.81049999967,4307258.7799999993],[361931.09449999966,4307257.7689999994],[361929.48900000006,4307256.591],[361929.25150000025,4307256.3949999996],[361928.00949999969,4307255.2579999994],[361926.67100000009,4307253.7835000008],[361925.48749999981,4307252.1824999992],[361924.47059999965,4307250.4700000007],[361923.94900000002,4307249.4060999993],[361922.73390000034,4307246.6290000007],[361922.64499999955,4307246.4045000002],[361921.16399999987,4307244.602],[361920.59049999993,4307243.9031000007],[361920,4307243.1834999993],[361919.62299999967,4307242.7239999995],[361917.91199999955,4307240.6418999992],[361915.62299999967,4307233.8424999993],[361914.44749999978,4307232.1834999993],[361887.54050000012,4307194.2028999999],[361887.21700000018,4307193.7459999993],[361867.1679999996,4307165.4453999996],[361866.37239999976,4307164.3223999999],[361842.11000000034,4307130.0755000003],[361836.10850000009,4307121.6034999993],[361842.29600000009,4307114.8798999991],[361846.6325000003,4307110.1679999996],[361837.93900000025,4307099.8554999996],[361838.38200000022,4307100.2056000009],[361839.41490000021,4307100.8350000009],[361840.53749999963,4307101.2860000003],[361841.71910000034,4307101.5454999991],[361842.92700000014,4307101.6071000006],[361843.16050000023,4307101.5954],[361844.12839999981,4307101.4684999995],[361845.29090000037,4307101.1335000005],[361846.3825000003,4307100.6119999997],[361876.48589999974,4307067.8455999997],[361930.67200000025,4307008.8671000004],[361927.1584999999,4307005.6394999996],[361957.2929999996,4306972.8399999999],[361957.81359999999,4306972.2740000002],[361961.32650000043,4306968.4499999993],[362110.99050000031,4306795.1254999992],[362116.44550000038,4306775.6899999995],[362121.09850000031,4306770.5934999995],[362120.13900000043,4306766.3420000002],[362119.98500000034,4306763.0800000001],[362119.93300000019,4306761.9885000009],[362120.48500000034,4306757.6648999993],[362121.78000000026,4306753.5040000007],[362123.73849999998,4306749.7060000002],[362123.77749999985,4306749.6300000008],[362126.41750000045,4306746.1620000005],[362129.62000000011,4306743.2050000001],[362133.28699999955,4306740.8495000005],[362136.47250000015,4306739.5154999997],[362159.9450000003,4306771.5730000008],[362180.92889999971,4306799.2785],[362211.88989999983,4306834.7585000005],[362219.82799999975,4306843.8554999996],[362239.36000000034,4306863.5384999998],[362262.46349999961,4306884.8719999995],[362266.97350000031,4306880.4719999991],[362271.93350000028,4306885.1421000008],[362280.42349999957,4306893.1314000003],[362289.40249999985,4306900.4960999992],[362319.56400000025,4306923.5144999996],[362340.9084999999,4306939.1538999993],[362352.08700000029,4306946.6180000007],[362386.5,4306966.7984999996],[362392.23300000001,4306969.7809999995],[362443.58650000021,4306992.6040000003],[362453.00399999972,4306996.3066000007],[362481.95249999966,4307006.6320999991],[362482.33139999956,4307006.8078000005],[362483.10450000037,4307007.1664000005],[362491.99089999963,4306988.5494999997],[362515.71750000026,4306941.2153999992],[362518.70100000035,4306935.9234999996],[362543.47950000037,4306896.1294999998],[362544.78450000007,4306894.2379999999],[362546.41459999979,4306891.8746000007],[362546.99189999979,4306891.0373999998],[362547.26900000032,4306890.6359999999],[362549.24050000031,4306887.7785],[362549.51350000035,4306887.4121000003],[362554.64460000023,4306880.5326000005],[362559.24550000019,4306874.3640000001],[362562.60259999987,4306870.0201999992],[362563.80250000022,4306868.4677000009],[362579.7854000004,4306847.7870000005],[362581.3004999999,4306845.9945],[362605.74349999987,4306819.6545000002],[362606.00310000032,4306819.3986000009],[362606.16849999968,4306819.2348999996],[362595.67250000034,4306810.6383999996],[362594.97910000011,4306810.0704999994],[362593.09740000032,4306808.5293000005],[362591.4852,4306807.2087999992],[362580.02649999969,4306797.8234999999],[362532.59750000015,4306758.9760999996],[362527.79800000042,4306755.0449999999],[362478.57349999994,4306714.7269000001],[362473.68250000011,4306710.7204999998],[362465.4375,4306703.9674999993],[362453.68549999967,4306698.3140999991],[362445.59549999982,4306694.4240000006],[362440.05549999978,4306699.0340999998],[362436.38549999986,4306702.8739999998],[362435.34499999974,4306703.9740999993],[362433.09499999974,4306706.3239999991],[362416.02500000037,4306724.1940000001],[362415.61490000039,4306724.6338999998],[362412.90500000026,4306727.4739999995],[362410.40500000026,4306730.0739999991],[362405.7949000001,4306734.8635000009],[362399.68499999959,4306741.2136000004],[362397.40940000024,4306743.5901999995],[362395.62490000017,4306745.4035],[362392.88499999978,4306748.1834999993],[362384.10450000037,4306757.0634000003],[362384.03450000007,4306757.1733999997],[362382.56450000033,4306758.7335000001],[362382.03600000031,4306759.2995999996],[362346.44039999973,4306744.4894999992],[362308.58650000021,4306728.7400000002],[362283.33000000007,4306720.1301000006],[362283.70729999989,4306719.1722999997],[362284.11600000039,4306718.1349999998],[362284.54499999993,4306717.0460000001],[362285.08490000013,4306715.7860000003],[362280.7248999998,4306713.9166000001],[362235.10500000045,4306695.3175000008],[362231.4450000003,4306694.7974999994],[362223.58700000029,4306691.7964999992],[362223.02099999972,4306691.9704999998],[362220.12449999992,4306692.591],[362217.18450000044,4306692.9560000002],[362214.68439999968,4306693.0638999995],[362214.43499999959,4306693.0749999993],[362214.22400000039,4306693.0639999993],[362213.38239999954,4306693.0209999997],[362220.38489999995,4306685.3080000002],[362239.41500000004,4306664.6180000007],[362240.03650000039,4306661.5889999997],[362183.12600000016,4306624.2489999998],[362141.56549999956,4306596.9814999998],[362140.1054999996,4306595.9114999995],[362138.76549999975,4306594.6816000007],[362137.56549999956,4306593.3214999996],[362136.53550000023,4306591.8420000002],[362136.09800000023,4306591.0435000006],[362134.62660000008,4306593.7965999991],[362134.26900000032,4306593.0195000004],[362133.26250000019,4306588.3969999999],[362133.35709999967,4306585.7721999995],[362133.39850000013,4306584.6235000007],[362133.58990000002,4306583.8890000004],[362148.16229999997,4306555.4020000007],[362150.99600000028,4306549.8624000009],[362151.04600000009,4306549.7524999995],[362151.48599999957,4306548.9625000004],[362159.20600000024,4306534.9028999992],[362168.43599999975,4306518.1030000001],[362170.32890000008,4306514.6591999996],[362172.64599999972,4306510.4434999991],[362181.82650000043,4306493.7335000001],[362165.10199999996,4306484.1005000006],[362150.31649999972,4306475.5844999999],[362144.77639999986,4306472.3949999996],[362135.84649999999,4306467.2650000006],[362135.48649999965,4306467.0549999997],[362138.29449999984,4306463.2469999995],[362137.45650000032,4306462.5950000007],[362107.64659999963,4306440.6261],[362107.52599999961,4306440.5318999998],[362090.88460000046,4306425.4122000001],[362091.24179999996,4306424.9825999998],[362085.77630000003,4306420.7756999992],[362023.3870000001,4306364.1494999994],[361958.32689999975,4306307.7119999994],[361956.83700000029,4306309.3619999997],[361956.30700000003,4306309.9420999996],[361911.96640000027,4306358.7413999997],[361906.03650000039,4306365.3914000001],[361894.7165000001,4306378.0415000003],[361888.36649999954,4306385.0114999991],[361887.76649999991,4306385.6614999995],[361873.99600000028,4306400.5609000009],[361872.32600000035,4306402.3509],[361861.88599999994,4306413.6710000001],[361851.37600000016,4306425.3008999992],[361848.88599999994,4306428.0810000002],[361840.90600000042,4306437.4604000002],[361823.75549999997,4306457.6605999991],[361811.95550000016,4306471.5500000007],[361808.30539999995,4306475.8499999996],[361807.75549999997,4306476.5098999999],[361807.66550000012,4306476.5899999999],[361807.50549999997,4306476.7100000009],[361807.34549999982,4306476.8399999999],[361807.20550000016,4306476.9800000004],[361807.07550000027,4306477.1300000008],[361806.93549999967,4306477.2799999993],[361806.80549999978,4306477.4399999995],[361806.01649999991,4306478.3148999996],[361799.16899999976,4306485.9104999993],[361796.61500000022,4306488.6580999997],[361770.81549999956,4306468.3809999991],[361761.86550000031,4306460.4114999995],[361735.7555999998,4306436.6225000005],[361715.05549999978,4306417.9035999998],[361690.65350000001,4306395.9113999996],[361671.05150000006,4306378.1070000008],[361670.26549999975,4306377.3935000002],[361658.8964999998,4306367.4239000008],[361645.8554999996,4306355.9876000006],[361639.27550000045,4306348.5728999991],[361639.09449999966,4306348.3695],[361631.9879999999,4306340.8579999991],[361630.07600000035,4306338.8370999992],[361633.50600000005,4306335.3969999999],[361655.1660000002,4306313.2970000003],[361764.69350000005,4306201.5680999998],[361820.39749999996,4306151.8385000005],[361826.81749999989,4306145.4484000001],[361839.13750000019,4306133.1585000008],[361876.0680999998,4306096.3488999996],[361889.79760000017,4306082.6645],[361961.84049999993,4306007.4920000006],[361975.39950000029,4305999.3309000004],[361979.47449999955,4306004.6125000007],[362002.54399999976,4305985.0824999996],[362002.93250000011,4305984.7533],[362003.12949999981,4305984.5864000004],[362006.11139999982,4305982.0618999992],[362007.03399999999,4305981.2809999995],[362010.81020000018,4305978.0844000001],[362053.55350000039,4305941.9001000002],[362086.97449999955,4305913.6079999991],[362093.3470999999,4305908.2135000005],[362094.11400000006,4305907.5635000002],[362095.38350000046,4305906.4875000007],[362119.73199999984,4305887.3808999993],[362120.36950000003,4305886.8805]],[[362430.25380000006,4308486.0607999992],[362429.62899999972,4308486.4458000008],[362429.63449999969,4308486.5201999992],[362436.84389999975,4308496.6513999999],[362468.93939999957,4308538.0489000008],[362512.59169999976,4308590.6535],[362539.41750000045,4308621.6750000007],[362548.89190000016,4308632.2667999994],[362552.37480000034,4308636.0653000008],[362552.72479999997,4308635.9930000007],[362552.94930000044,4308635.7147000004],[362552.45430000033,4308634.3728999998],[362473.27049999963,4308519.5497999992],[362430.25380000006,4308486.0607999992]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855629,"SIGPAC_FOGAIBA.DN_OID":1644650301,"SIGPAC_FOGAIBA.DN_SURFACE":3033322.3509760355,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":9000,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":73,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"ZU","COD_USOS_SIGPAC.Descripción":"ZONA URBANA","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00209000R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855630,"geometry":{"type":"Polygon","coordinates":[[[361699.23300000001,4306855.2219999991],[361717.49309999961,4306873.5112999994],[361718.09520000033,4306873.7730999999],[361716.57620000001,4306876.1015000008],[361716.47929999977,4306876.25],[361715.62789999973,4306877.5550999995],[361715.0652999999,4306876.9541999996],[361714.47620000038,4306874.6806000005],[361712.32100000046,4306875.7605000008],[361709.65130000003,4306875.2766999993],[361706.32180000003,4306881.5692999996],[361697.84250000026,4306877.7630000003],[361701.87170000002,4306869.0759999994],[361696.85639999993,4306866.2699999996],[361692.96800000034,4306863.8721999992],[361693.72530000005,4306857.7247000001],[361699.23300000001,4306855.2219999991]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855630,"SIGPAC_FOGAIBA.DN_OID":1188986841,"SIGPAC_FOGAIBA.DN_SURFACE":295.00104892808628,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":31,"SIGPAC_FOGAIBA.RECINTO":3,"SIGPAC_FOGAIBA.PENDIENTE_":47,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200031R0003","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855631,"geometry":{"type":"Polygon","coordinates":[[[361665.02120000031,4308331.2927999999],[361666.84049999993,4308331.4024999999],[361794.5234000003,4308339.1085000001],[361793.20399999991,4308395.4894999992],[361789.86409999989,4308397.8295000009],[361740.59399999958,4308432.3290999997],[361710.03399999999,4308439.0295000002],[361676.43850000016,4308464.1669999994],[361662.84410000034,4308474.3389999997],[361649.20409999974,4308484.5490000006],[361642.49399999995,4308489.7689999994],[361634.28399999999,4308494.9790000003],[361629.13949999958,4308498.2397000007],[361614.75999999978,4308493.9199999999],[361591.98990000039,4308485.2599999998],[361582.40000000037,4308483.2200000007],[361580.97900000028,4308484.1093000006],[361575.00549999997,4308487.8478999995],[361572.34999999963,4308489.5099999998],[361566.8200000003,4308491.9600000009],[361545.37999999989,4308499.0500000007],[361536.75299999956,4308500.0734999999],[361530.62999999989,4308500.8000000007],[361520.41009999998,4308511.9600000009],[361512.17989999987,4308524.6500000004],[361503.22009999957,4308534.4900000002],[361491.54000000004,4308542.5600000005],[361480.45999999996,4308548.0299999993],[361467,4308559.6400000006],[361459.13999999966,4308569.1099999994],[361450.21009999979,4308572.2200000007],[361445.52990000043,4308574.75],[361436.54000000004,4308579.5299999993],[361428.1799999997,4308586.5099999998],[361416.61010000017,4308593.9300999995],[361403.16999999993,4308601.6400000006],[361395.95000000019,4308606.6199999992],[361391.09009999968,4308611.9700000007],[361383.94000000041,4308613.0700000003],[361370.76999999955,4308611.5899999999],[361354.00999999978,4308611.8101000004],[361351.05999999959,4308612.1300000008],[361338.75,4308619.8900000006],[361329.26999999955,4308630.9399999995],[361325.04000000004,4308639.1600000001],[361322.08990000002,4308642.9000000004],[361314.94000000041,4308652.0299999993],[361305.5,4308659.3000000007],[361302.1799999997,4308661.5399999991],[361298.86000000034,4308663.7799999993],[361271.29999999981,4308681.6401000004],[361259.58000000007,4308688.4000000004],[361246.78000000026,4308695.8300000001],[361236.61000000034,4308704.0899999999],[361233.83000000007,4308708.9900000002],[361233.16999999993,4308710.7400000002],[361230.16999999993,4308713.5],[361209.06010000035,4308720.4500999991],[361204.74739999976,4308724.6442000009],[361144.6445000004,4308636.5120000001],[361246.49689999968,4308525.6465000007],[361264.7209999999,4308514.4670000002],[361292.71439999994,4308497.2931999993],[361300.92970000021,4308495.8147999998],[361321.65809999965,4308499.2662000004],[361335.47690000013,4308493.3943000007],[361355.16980000027,4308477.1559999995],[361392.48010000028,4308449.8616000004],[361447.76439999975,4308419.8050999995],[361487.60400000028,4308394.9551999997],[361487.61529999971,4308394.6779999994],[361487.38860000018,4308394.3520999998],[361488.90579999983,4308394.1432000007],[361519.95019999985,4308389.8701000009],[361531.28720000014,4308388.3096999992],[361559.45449999999,4308384.4328000005],[361611.00700000022,4308361.6197999995],[361619.56450000033,4308357.8329000007],[361663.04200000037,4308332.4483000003],[361665.02120000031,4308331.2927999999]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855631,"SIGPAC_FOGAIBA.DN_OID":1241848383,"SIGPAC_FOGAIBA.DN_SURFACE":84014.353011469124,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":73,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":433,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_FOGAIBA.INCIDENCIA":"231","SIGPAC_FOGAIBA.MOTIVO_MOD":1,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200073R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855632,"geometry":{"type":"Polygon","coordinates":[[[361723.85340000037,4306828.9707999993],[361723.92709999997,4306829.0222999994],[361726.76559999958,4306831.0065000001],[361729.52269999962,4306832.5107000005],[361735.83029999956,4306835.8630999997],[361743.65020000003,4306840.0194000006],[361743.46630000044,4306840.0388999991],[361733.79339999985,4306849.7116999999],[361722.62260000035,4306866.8337999992],[361720.25079999957,4306870.4693999998],[361719.92279999983,4306870.1609000005],[361711.01300000027,4306862.1115000006],[361704.52300000004,4306853.6620000005],[361719.47589999996,4306834.5603],[361719.91299999971,4306834.0019000005],[361723.85340000037,4306828.9707999993]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855632,"SIGPAC_FOGAIBA.DN_OID":1370681378,"SIGPAC_FOGAIBA.DN_SURFACE":757.35439638194828,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":31,"SIGPAC_FOGAIBA.RECINTO":6,"SIGPAC_FOGAIBA.PENDIENTE_":69,"SIGPAC_FOGAIBA.COEF_REGAD":100,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200031R0006","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855633,"geometry":{"type":"Polygon","coordinates":[[[361768.20179999992,4306775.557],[361769.29559999984,4306776.5057999995],[361779.67499999981,4306786.5610000007],[361780.08829999994,4306786.9420999996],[361779.12750000041,4306788.1681999993],[361741.17580000032,4306836.3333999999],[361725.1902999999,4306827.4101999998],[361725.13889999967,4306827.4757000003],[361725.08359999955,4306827.4000000004],[361734.68350000028,4306815.1425000001],[361735.03569999989,4306814.7229999993],[361738.30350000039,4306810.8324999996],[361754.11349999998,4306792.0325000007],[361756.47599999979,4306789.2260999996],[361756.55680000037,4306789.1301000006],[361760.12359999958,4306784.8929999992],[361764.97339999955,4306779.1228999998],[361768.20179999992,4306775.557]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855633,"SIGPAC_FOGAIBA.DN_OID":1370681363,"SIGPAC_FOGAIBA.DN_SURFACE":1144.6493928137277,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":199,"SIGPAC_FOGAIBA.RECINTO":5,"SIGPAC_FOGAIBA.PENDIENTE_":74,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"FY","COD_USOS_SIGPAC.Descripción":"FRUTAL","SIGPAC_FOGAIBA.INCIDENCIA":"199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200199R0005","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855634,"geometry":{"type":"Polygon","coordinates":[[[361754.40919999965,4306830.4817999993],[361763.3777999999,4306836.9035999998],[361759.35560000036,4306842.2499000002],[361758.56259999983,4306841.8078000005],[361758.10639999993,4306841.6261],[361758.03469999973,4306841.6944999993],[361758.03000000026,4306841.7936000004],[361757.36369999964,4306841.4487999994],[361757.04330000002,4306841.2830999997],[361756.97989999969,4306841.2502999995],[361756.93829999957,4306841.2288000006],[361756.85500000045,4306841.1856999993],[361756.80590000004,4306841.1602999996],[361756.74170000013,4306841.1271000002],[361756.69209999964,4306841.1015000008],[361756.56929999962,4306841.0379000008],[361756.43420000002,4306840.9680000003],[361756.50659999996,4306840.9157999996],[361756.52529999986,4306840.8286000006],[361750.61589999963,4306836.0286999997],[361751.34200000018,4306834.3038999997],[361754.40919999965,4306830.4817999993]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855634,"SIGPAC_FOGAIBA.DN_OID":1370681364,"SIGPAC_FOGAIBA.DN_SURFACE":77.060054106551377,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":199,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":71,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200199R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855635,"geometry":{"type":"Polygon","coordinates":[[[361804.23979999963,4306740.8721999992],[361864.10620000027,4306778.0089999996],[361879.49920000043,4306787.5579000004],[361887.33440000005,4306792.4184000008],[361881.07780000009,4306808.9235999994],[361879.90720000025,4306814.7688999996],[361871.1425999999,4306831.7081000004],[361863.52120000031,4306846.6842],[361859.90770000033,4306844.2671000008],[361831.99320000038,4306824.7586000003],[361828.71490000002,4306822.6283],[361819.99689999968,4306816.9628999997],[361787.64159999974,4306793.9057999998],[361780.08829999994,4306786.9420999996],[361779.67499999981,4306786.5610000007],[361769.29559999984,4306776.5057999995],[361768.20179999992,4306775.557],[361768.53450000007,4306775.1895000003],[361774.24349999987,4306768.8829999994],[361789.87399999984,4306751.6429999992],[361793.32400000002,4306747.8330000006],[361794.3339999998,4306746.7229999993],[361795.26410000026,4306745.7034000009],[361797.26510000043,4306743.4952000007],[361799.43630000018,4306745.4376999997],[361804.23979999963,4306740.8721999992]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855635,"SIGPAC_FOGAIBA.DN_OID":1370681334,"SIGPAC_FOGAIBA.DN_SURFACE":6120.3131353147828,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":202,"SIGPAC_FOGAIBA.RECINTO":9,"SIGPAC_FOGAIBA.PENDIENTE_":48,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200202R0009","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855636,"geometry":{"type":"Polygon","coordinates":[[[361643.44550000038,4306932.1171000004],[361643.63750000019,4306932.3893999998],[361644.15180000011,4306933.1192000005],[361644.33920000028,4306933.3848999999],[361644.24770000018,4306933.4147999994],[361644.29629999958,4306933.4965000004],[361642.35929999966,4306935.0004999992],[361643.22929999977,4306936.5206000004],[361633.14190000016,4306943.0522000007],[361628.52199999988,4306946.2224000003],[361614.39749999996,4306956.8259999994],[361612.86799999978,4306957.4832000006],[361611.37060000002,4306956.5804999992],[361608.78899999987,4306955.0244999994],[361633.27249999996,4306939.6205000002],[361643.44550000038,4306932.1171000004]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855636,"SIGPAC_FOGAIBA.DN_OID":1241848236,"SIGPAC_FOGAIBA.DN_SURFACE":136.06811398470617,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":34,"SIGPAC_FOGAIBA.RECINTO":7,"SIGPAC_FOGAIBA.PENDIENTE_":94,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200034R0007","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855637,"geometry":{"type":"Polygon","coordinates":[[[361644.33920000028,4306933.3848999999],[361644.37739999965,4306933.4392000008],[361644.99139999971,4306934.3103],[361645.0345999999,4306934.3717999998],[361645.22800000012,4306934.6459999997],[361645.25509999972,4306934.6843999997],[361646.21999999974,4306936.0534000006],[361652.2977,4306945.2463000007],[361656.25590000022,4306951.2334000003],[361654.86519999988,4306952.9066000003],[361651.57149999961,4306956.2313999999],[361648.00059999991,4306959.2566],[361644.8964999998,4306961.4894999992],[361644.17970000021,4306961.9591000006],[361640.13779999968,4306964.3181999996],[361636.02240000013,4306966.2608000003],[361635.90550000034,4306966.3159999996],[361631.96839999966,4306967.6807000004],[361631.41590000037,4306967.8721999992],[361630.58279999997,4306968.1609000005],[361613.11249999981,4306957.6305],[361612.86799999978,4306957.4832000006],[361614.39749999996,4306956.8259999994],[361628.52199999988,4306946.2224000003],[361633.14190000016,4306943.0522000007],[361643.22929999977,4306936.5206000004],[361642.35929999966,4306935.0004999992],[361644.29629999958,4306933.4965000004],[361644.24770000018,4306933.4147999994],[361644.33920000028,4306933.3848999999]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855637,"SIGPAC_FOGAIBA.DN_OID":1370681366,"SIGPAC_FOGAIBA.DN_SURFACE":729.71347547144774,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":34,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":98,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,195,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200034R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855638,"geometry":{"type":"Polygon","coordinates":[[[361611.37060000002,4306956.5804999992],[361612.86799999978,4306957.4832000006],[361613.11249999981,4306957.6305],[361630.58279999997,4306968.1609000005],[361629.89599999972,4306968.3990000002],[361627.8152999999,4306969.3498999998],[361617.50200000033,4306974.0631000008],[361616.09159999993,4306974.5143999998],[361614.48529999983,4306975.0284000002],[361606.43549999967,4306977.6041000001],[361601.02489999961,4306974.4549000002],[361600.67190000042,4306974.1604999993],[361598.81510000024,4306973.0477000009],[361595.81759999972,4306971.2511],[361595.67260000017,4306971.1642000005],[361595.62339999992,4306971.1347000003],[361595.44770000037,4306971.0293000005],[361595.24110000022,4306970.9056000002],[361590.24299999978,4306967.9100000001],[361588.71380000003,4306966.9934999999],[361590.5345999999,4306966.3313999996],[361611.37060000002,4306956.5804999992]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855638,"SIGPAC_FOGAIBA.DN_OID":1370681335,"SIGPAC_FOGAIBA.DN_SURFACE":450.35192219567551,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":32,"SIGPAC_FOGAIBA.RECINTO":3,"SIGPAC_FOGAIBA.PENDIENTE_":90,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200032R0003","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855639,"geometry":{"type":"Polygon","coordinates":[[[361635.09260000009,4306970.8794],[361635.32160000037,4306971.0174000002],[361636.59759999998,4306971.7864999995],[361636.63740000036,4306972.0598000009],[361635.49940000009,4306973.0939000007],[361635.30620000046,4306973.2741],[361633.78870000038,4306974.6500000004],[361627.91029999964,4306979.0424000006],[361624.41700000037,4306983.4396000002],[361620.31359999999,4306981.6317999996],[361619.40519999992,4306984.5694999993],[361624.02630000003,4306987.2894000001],[361625.48629999999,4306985.5425000004],[361642.03199999966,4306994.4926999994],[361646.39460000023,4306996.9846000001],[361648.66220000014,4306991.1013999991],[361650.60099999979,4306985.5403000005],[361651.31350000016,4306982.6248000003],[361651.37440000009,4306982.3631999996],[361645.84649999999,4306978.9331999999],[361646.00829999987,4306978.2046000008],[361646.30140000023,4306977.6357000005],[361654.68240000028,4306982.6874000002],[361644.82909999974,4306999.9511999991],[361613.12299999967,4306981.4967],[361612.37799999956,4306981.0631000008],[361619.13190000039,4306978.6050000004],[361628.66469999962,4306973.8633999992],[361632.78500000015,4306971.8139999993],[361635.09260000009,4306970.8794]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855639,"SIGPAC_FOGAIBA.DN_OID":1370681336,"SIGPAC_FOGAIBA.DN_SURFACE":213.30705439889772,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":32,"SIGPAC_FOGAIBA.RECINTO":6,"SIGPAC_FOGAIBA.PENDIENTE_":30,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"195,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200032R0006","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855640,"geometry":{"type":"Polygon","coordinates":[[[361659.60379999969,4306954.9674999993],[361659.82320000045,4306955.2058000006],[361659.98060000036,4306955.5011999998],[361660.00430000015,4306955.5456000008],[361660.40330000035,4306956.2945000008],[361660.80790000036,4306957.0539999995],[361664.90990000032,4306962.7688999996],[361682.11600000039,4306986.7405999992],[361692.51800000016,4307001.8970999997],[361705.34520000033,4307020.2360999994],[361706.49010000005,4307021.7855999991],[361694.89950000029,4307029.0944999997],[361694.10199999996,4307029.5975000001],[361646.29849999957,4307000.8065000009],[361644.82909999974,4306999.9511999991],[361654.68240000028,4306982.6874000002],[361646.30140000023,4306977.6357000005],[361636.59759999998,4306971.7864999995],[361635.32160000037,4306971.0174000002],[361635.09260000009,4306970.8794],[361636.08090000041,4306970.4791999999],[361637.66100000031,4306969.8391999993],[361638.93310000002,4306969.2580999993],[361644.83509999979,4306966.1761000007],[361650.44600000046,4306962.5913999993],[361655.72310000006,4306958.5311999992],[361657.94299999997,4306956.4925999995],[361659.60379999969,4306954.9674999993]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855640,"SIGPAC_FOGAIBA.DN_OID":1370681337,"SIGPAC_FOGAIBA.DN_SURFACE":2102.4199784985822,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":34,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":34,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199,194","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200034R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855641,"geometry":{"type":"Polygon","coordinates":[[[361572.54550000001,4306970.2456999999],[361576.29310000036,4306972.8553999998],[361586.46129999962,4306978.8557999991],[361595.06049999967,4306981.1989999991],[361602.62069999985,4306982.7602999993],[361606.79619999975,4306983.2828000002],[361610.1782999998,4306982.5069999993],[361610.89319999982,4306982.2246000003],[361611.0401999997,4306982.3150999993],[361613.12299999967,4306981.4967],[361644.82909999974,4306999.9511999991],[361646.29849999957,4307000.8065000009],[361694.10199999996,4307029.5975000001],[361709.64360000007,4307039.0485999994],[361709.83229999989,4307038.9238000009],[361723.96559999976,4307046.9979999997],[361724.80999999959,4307048.2715000007],[361744.64850000013,4307078.1961000003],[361751.35690000001,4307088.3166000005],[361734.68680000026,4307120.0991999991],[361731.58469999954,4307118.1989999991],[361714.34869999997,4307106.7575000003],[361687.59869999997,4307090.9509999994],[361659.84570000041,4307076.4367999993],[361638.85919999983,4307066.3267000001],[361632.94859999977,4307064.2899999991],[361614.32859999966,4307054.7990000006],[361589.44440000039,4307040.9419999998],[361573.35369999986,4307032.8787999991],[361573.47200000007,4307027.8893999998],[361573.48199999984,4307022.1394999996],[361573.36199999973,4307016.3094999995],[361573.14199999999,4307010.9495000001],[361572.92200000025,4307005.6899999995],[361572.77199999988,4306999.9000000004],[361572.52199999988,4306992.8299000002],[361572.02190000005,4306984.2705000006],[361571.47200000007,4306976.2905999999],[361571.2790000001,4306973.7670000009],[361571.05200000014,4306970.8010000009],[361572.54550000001,4306970.2456999999]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855641,"SIGPAC_FOGAIBA.DN_OID":440082087,"SIGPAC_FOGAIBA.DN_SURFACE":11217.035665236412,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":42,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":32,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199,231","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200042R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855642,"geometry":{"type":"Polygon","coordinates":[[[362611.12299999967,4309442.6355000008],[362611.8629999999,4309443.8156000003],[362568.43300000019,4309456.1954999994],[362552.20270000026,4309460.8210000005],[362556.84300000034,4309458.8958999999],[362574.1129999999,4309453.6854999997],[362611.12299999967,4309442.6355000008]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855642,"SIGPAC_FOGAIBA.DN_OID":1746640202,"SIGPAC_FOGAIBA.DN_SURFACE":57.040181864680903,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":998,"SIGPAC_FOGAIBA.PARCELA":3,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":116,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A998A00003R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855643,"geometry":{"type":"Polygon","coordinates":[[[361573.77649999969,4306969.7880000006],[361577.15589999966,4306972.1860000007],[361581.23599999957,4306974.8010000009],[361594.56900000013,4306980.2630000003],[361606.08499999996,4306982.4499999993],[361609.99700000044,4306981.9319000002],[361612.28809999954,4306981.0976999998],[361612.37799999956,4306981.0631000008],[361613.12299999967,4306981.4967],[361611.0401999997,4306982.3150999993],[361610.89319999982,4306982.2246000003],[361610.1782999998,4306982.5069999993],[361606.79619999975,4306983.2828000002],[361602.62069999985,4306982.7602999993],[361595.06049999967,4306981.1989999991],[361586.46129999962,4306978.8557999991],[361576.29310000036,4306972.8553999998],[361572.54550000001,4306970.2456999999],[361573.77649999969,4306969.7880000006]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855643,"SIGPAC_FOGAIBA.DN_OID":1370681338,"SIGPAC_FOGAIBA.DN_SURFACE":43.285151084311771,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":42,"SIGPAC_FOGAIBA.RECINTO":6,"SIGPAC_FOGAIBA.PENDIENTE_":25,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"CA","COD_USOS_SIGPAC.Descripción":"VIALES","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200042R0006","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855644,"geometry":{"type":"Polygon","coordinates":[[[361585.87249999959,4306965.2904000003],[361588.71380000003,4306966.9934999999],[361590.24299999978,4306967.9100000001],[361595.24110000022,4306970.9056000002],[361595.44770000037,4306971.0293000005],[361595.62339999992,4306971.1347000003],[361595.67260000017,4306971.1642000005],[361595.81759999972,4306971.2511],[361598.81510000024,4306973.0477000009],[361600.67190000042,4306974.1604999993],[361601.02489999961,4306974.4549000002],[361606.43549999967,4306977.6041000001],[361604.65890000015,4306977.4858999997],[361605.16069999989,4306977.9052000009],[361595.58110000007,4306975.2069000006],[361584.89859999996,4306971.8206999991],[361578.64169999957,4306967.9790000003],[361578.70280000009,4306967.9562999997],[361585.87249999959,4306965.2904000003]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855644,"SIGPAC_FOGAIBA.DN_OID":1370681369,"SIGPAC_FOGAIBA.DN_SURFACE":103.50854327557317,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":9000,"SIGPAC_FOGAIBA.RECINTO":28,"SIGPAC_FOGAIBA.PENDIENTE_":91,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00209000R0028","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855645,"geometry":{"type":"Polygon","coordinates":[[[361656.25590000022,4306951.2334000003],[361656.48699999973,4306951.5831000004],[361658.03289999999,4306953.2616000008],[361659.60379999969,4306954.9674999993],[361657.94299999997,4306956.4925999995],[361655.72310000006,4306958.5311999992],[361650.44600000046,4306962.5913999993],[361644.83509999979,4306966.1761000007],[361638.93310000002,4306969.2580999993],[361637.66100000031,4306969.8391999993],[361636.08090000041,4306970.4791999999],[361635.34439999983,4306969.6352999993],[361631.96839999966,4306967.6807000004],[361635.90550000034,4306966.3159999996],[361636.02240000013,4306966.2608000003],[361640.13779999968,4306964.3181999996],[361644.17970000021,4306961.9591000006],[361644.8964999998,4306961.4894999992],[361648.00059999991,4306959.2566],[361651.57149999961,4306956.2313999999],[361654.86519999988,4306952.9066000003],[361656.25590000022,4306951.2334000003]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855645,"SIGPAC_FOGAIBA.DN_OID":1370681339,"SIGPAC_FOGAIBA.DN_SURFACE":120.10700247291794,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":9000,"SIGPAC_FOGAIBA.RECINTO":29,"SIGPAC_FOGAIBA.PENDIENTE_":45,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00209000R0029","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855646,"geometry":{"type":"Polygon","coordinates":[[[361578.64169999957,4306967.9790000003],[361584.89859999996,4306971.8206999991],[361595.58110000007,4306975.2069000006],[361605.16069999989,4306977.9052000009],[361604.65890000015,4306977.4858999997],[361606.43549999967,4306977.6041000001],[361614.48529999983,4306975.0284000002],[361616.09159999993,4306974.5143999998],[361617.50200000033,4306974.0631000008],[361627.8152999999,4306969.3498999998],[361629.89599999972,4306968.3990000002],[361630.58279999997,4306968.1609000005],[361631.41590000037,4306967.8721999992],[361631.96839999966,4306967.6807000004],[361635.34439999983,4306969.6352999993],[361636.08090000041,4306970.4791999999],[361635.09260000009,4306970.8794],[361632.78500000015,4306971.8139999993],[361628.66469999962,4306973.8633999992],[361619.13190000039,4306978.6050000004],[361612.37799999956,4306981.0631000008],[361612.28809999954,4306981.0976999998],[361609.99700000044,4306981.9319000002],[361606.08499999996,4306982.4499999993],[361594.56900000013,4306980.2630000003],[361581.23599999957,4306974.8010000009],[361577.15589999966,4306972.1860000007],[361573.77649999969,4306969.7880000006],[361578.64169999957,4306967.9790000003]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855646,"SIGPAC_FOGAIBA.DN_OID":1370681368,"SIGPAC_FOGAIBA.DN_SURFACE":290.09847143267274,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":9000,"SIGPAC_FOGAIBA.RECINTO":27,"SIGPAC_FOGAIBA.PENDIENTE_":47,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"CA","COD_USOS_SIGPAC.Descripción":"VIALES","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00209000R0027","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855647,"geometry":{"type":"Polygon","coordinates":[[[361573.35369999986,4307032.8787999991],[361589.44440000039,4307040.9419999998],[361614.32859999966,4307054.7990000006],[361632.94859999977,4307064.2899999991],[361638.85919999983,4307066.3267000001],[361659.84570000041,4307076.4367999993],[361687.59869999997,4307090.9509999994],[361714.34869999997,4307106.7575000003],[361731.58469999954,4307118.1989999991],[361734.68680000026,4307120.0991999991],[361733.48099999968,4307122.3980999999],[361728.88970000017,4307119.1765999999],[361715.97759999987,4307110.9255999997],[361699.89489999972,4307102.2368999999],[361698.86230000015,4307104.3113000002],[361695.81790000014,4307108.1796000004],[361691.38129999954,4307110.1926000006],[361684.67480000015,4307109.6305999998],[361682.07670000009,4307106.9963000007],[361680.30289999954,4307103.6867999993],[361680.88960000034,4307100.6431000009],[361681.27730000019,4307097.0352999996],[361683.57809999958,4307093.0496999994],[361676.34109999985,4307089.5940000005],[361674.77400000021,4307091.4545000009],[361668.71559999976,4307106.3461000007],[361663.98209999967,4307117.1666999999],[361666.79220000003,4307119.4439000003],[361679.88609999977,4307126.4448000006],[361693.54079999961,4307134.3384000007],[361719.15639999975,4307149.7091000006],[361717.50530000031,4307152.8570000008],[361716.00810000021,4307151.8017999995],[361686.42150000017,4307133.4487999994],[361664.69099999964,4307122.3650000002],[361648.02699999977,4307114.9520999994],[361643.88889999967,4307114.0661999993],[361639.98390000034,4307112.3758000005],[361635.75609999988,4307109.2767999992],[361616.21920000017,4307099.3180999998],[361592.66540000029,4307087.9316000007],[361576.65940000024,4307081.1382999998],[361576.24810000043,4307077.2467],[361576.0887000002,4307075.7372999992],[361584.8300999999,4307079.3685999997],[361596.14850000013,4307085.4513000008],[361618.61459999997,4307096.1776000001],[361626.59719999973,4307097.7778999992],[361629.31759999972,4307097.4232000001],[361632.41640000045,4307094.5868999995],[361634.4291000003,4307092.8396000005],[361641.5223000003,4307095.1440999992],[361645.2751000002,4307096.4462000001],[361647.93780000042,4307094.0269000009],[361652.51609999966,4307085.9816999994],[361650.0959999999,4307084.3862999994],[361652.36739999987,4307077.0609000009],[361646.27969999984,4307073.2127999999],[361631.44330000039,4307065.9445999991],[361600.82259999961,4307049.1919],[361583.59119999968,4307040.1140999999],[361573.29789999966,4307035.0089999996],[361573.35199999996,4307032.9489999991],[361573.35369999986,4307032.8787999991]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855647,"SIGPAC_FOGAIBA.DN_OID":440278726,"SIGPAC_FOGAIBA.DN_SURFACE":2260.8772975028264,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":42,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":57,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200042R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855648,"geometry":{"type":"Polygon","coordinates":[[[361577.79789999966,4307099.4799000006],[361578.82299999986,4307100.0539999995],[361666.05040000007,4307148.9313999992],[361661.8328999998,4307162.5689000003],[361659.1381000001,4307161.1895000003],[361656.47690000013,4307161.6083000004],[361655.82610000018,4307164.7273999993],[361654.83559999987,4307165.4613000005],[361652.95650000032,4307165.2802000009],[361649.61950000003,4307164.4732000008],[361648.19259999972,4307169.3646000009],[361650.53490000032,4307169.8354000002],[361650.01649999991,4307171.7892000005],[361646.99129999988,4307181.3332000002],[361645.16480000038,4307181.2534999996],[361643.08129999973,4307181.4387999997],[361640.21920000017,4307182.0099999998],[361640.1643000003,4307184.6908],[361637.16669999994,4307194.1504999995],[361638.13269999996,4307197.8277000003],[361643.02649999969,4307201.6035999991],[361644.22549999971,4307206.5514000002],[361643.13399999961,4307209.4178999998],[361641.36359999981,4307210.0442999993],[361620.90899999999,4307197.9057],[361608.86479999963,4307191.0539999995],[361600.84109999985,4307187.091],[361600.0421000002,4307186.7235000003],[361599.47750000004,4307186.3487999998],[361598.67179999966,4307184.7519000005],[361593.67009999976,4307173.1874000002],[361590.96899999958,4307166.0098999999],[361589.25800000038,4307160.6958000008],[361587.57699999958,4307154.5705999993],[361586.52309999987,4307150.4245999996],[361586.26719999965,4307149.4189999998],[361586.25679999962,4307149.3783999998],[361586.24179999996,4307149.3189000003],[361586.07660000026,4307148.4572000001],[361585.99179999996,4307148.0150000006],[361585.80599999987,4307147.0459000003],[361585.76269999985,4307146.8204999994],[361585.64010000043,4307146.1809],[361585.4506000001,4307145.1921999995],[361582.65720000025,4307131.8586999997],[361582.56510000024,4307131.4737999998],[361582.40139999986,4307130.6301000006],[361577.85580000002,4307099.8724000007],[361577.79789999966,4307099.4799000006]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855648,"SIGPAC_FOGAIBA.DN_OID":1370681340,"SIGPAC_FOGAIBA.DN_SURFACE":4752.4441943211141,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":193,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":33,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200193R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855649,"geometry":{"type":"Polygon","coordinates":[[[361666.05040000007,4307148.9313999992],[361707.40899999999,4307172.1064999998],[361727.17320000008,4307182.9056000002],[361709.04989999998,4307251.2402999997],[361708.96499999985,4307251.5604999997],[361705.10599999968,4307250.6060000006],[361704.88119999971,4307250.5504000001],[361704.7078999998,4307250.5075000003],[361702.99500000011,4307250.0836999994],[361702.92879999988,4307250.0675000008],[361700.14940000046,4307249.3798999991],[361698.01169999968,4307248.8510999996],[361697.12459999975,4307248.6317999996],[361697.02130000014,4307248.6063000001],[361696.56799999997,4307248.4940000009],[361695.85280000046,4307248.3171999995],[361656.37009999994,4307219.4417000003],[361646.08129999973,4307213.5044],[361661.8328999998,4307162.5689000003],[361666.05040000007,4307148.9313999992]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855649,"SIGPAC_FOGAIBA.DN_OID":1370681342,"SIGPAC_FOGAIBA.DN_SURFACE":4928.2487651202464,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":194,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":35,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200194R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855650,"geometry":{"type":"Polygon","coordinates":[[[361704.37839999981,4306901.1685000006],[361704.51180000044,4306903.2443000004],[361708.62249999959,4306914.2079000007],[361717.77049999963,4306928.8243000004],[361740.63439999986,4306963.9787000008],[361750.23660000041,4306980.8761999998],[361752.52589999977,4306989.5548],[361761.20920000039,4307000.0571999997],[361767.15730000008,4307009.6490000002],[361777.58330000006,4307024.2237999998],[361777.52979999967,4307024.3128999993],[361777.42920000013,4307024.3392999992],[361754.42850000039,4306995.1436999999],[361752.34999999963,4306992.2139999997],[361752.30030000024,4306992.1394999996],[361740.84900000039,4306974.9539999999],[361733.98589999974,4306964.9245999996],[361727.12299999967,4306954.8949999996],[361719.25700000022,4306943.1810999997],[361698.58000000007,4306914.3703000005],[361697.99610000011,4306909.8892999999],[361701.69249999989,4306904.8104999997],[361704.37839999981,4306901.1685000006]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855650,"SIGPAC_FOGAIBA.DN_OID":1370681365,"SIGPAC_FOGAIBA.DN_SURFACE":692.51723313575076,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":33,"SIGPAC_FOGAIBA.RECINTO":3,"SIGPAC_FOGAIBA.PENDIENTE_":77,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200033R0003","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855651,"geometry":{"type":"Polygon","coordinates":[[[361709.83229999989,4307038.9238000009],[361709.64360000007,4307039.0485999994],[361694.10199999996,4307029.5975000001],[361694.89950000029,4307029.0944999997],[361706.49010000005,4307021.7855999991],[361713.88879999984,4307031.7973999996],[361715.93709999975,4307034.8873999994],[361709.83229999989,4307038.9238000009]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855651,"SIGPAC_FOGAIBA.DN_OID":1370681343,"SIGPAC_FOGAIBA.DN_SURFACE":181.30679522508191,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":94,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":50,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200094R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855652,"geometry":{"type":"Polygon","coordinates":[[[361717.50530000031,4307152.8570000008],[361732.76140000019,4307163.5120999999],[361736.0148,4307166.2002000008],[361730.8415000001,4307176.3958000001],[361730.57600000035,4307177.4332999997],[361730.3674999997,4307179.2327999994],[361756.4084999999,4307194.0098000001],[361758.83459999971,4307193.0368000008],[361763.12079999968,4307188.6630000006],[361770.94840000011,4307180.9799000006],[361776.71300000045,4307172.5790999997],[361780.79609999992,4307165.7245000005],[361781.08710000012,4307163.2442000005],[361810.51209999993,4307189.8539000005],[361815.30549999978,4307185.6894000005],[361817.07100000046,4307188.2429000009],[361826.53050000034,4307201.8436999992],[361833.42590000015,4307211.7579999994],[361835.65660000034,4307214.9651999995],[361835.47169999965,4307215.1738000009],[361816.70469999965,4307203.0517999995],[361817.14580000006,4307201.6669999994],[361810.94139999989,4307197.3741999995],[361806.80250000022,4307203.9412999991],[361809.70139999967,4307205.8912000004],[361801.95639999956,4307222.8870000001],[361802.05169999972,4307222.9377999995],[361801.96559999976,4307223.0986000001],[361800.85199999996,4307222.5130000003],[361789.87100000028,4307216.7410000004],[361769.16100000031,4307205.8475000001],[361768.27699999977,4307205.3644999992],[361754.61120000016,4307197.8975000009],[361727.17320000008,4307182.9056000002],[361707.40899999999,4307172.1064999998],[361717.50530000031,4307152.8570000008]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855652,"SIGPAC_FOGAIBA.DN_OID":1370681370,"SIGPAC_FOGAIBA.DN_SURFACE":2569.7269091968956,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":44,"SIGPAC_FOGAIBA.RECINTO":6,"SIGPAC_FOGAIBA.PENDIENTE_":44,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200044R0006","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855653,"geometry":{"type":"Polygon","coordinates":[[[361734.68680000026,4307120.0991999991],[361734.7229000004,4307120.1168000009],[361753.48620000016,4307131.5874000005],[361764.35840000026,4307136.7011999991],[361770.92420000024,4307137.9450000003],[361774.02419999987,4307136.8486000001],[361776.24170000013,4307133.0877999999],[361776.68640000001,4307132.3263000008],[361776.7714999998,4307129.2820999995],[361776.92349999957,4307128.5865000002],[361778.82079999987,4307131.7903000005],[361783.98489999957,4307139.7654999997],[361789.14190000016,4307147.5653000008],[361798.45399999991,4307161.6494999994],[361800.90199999977,4307165.352],[361807.83999999985,4307174.8920000009],[361815.30549999978,4307185.6894000005],[361810.51209999993,4307189.8539000005],[361781.08710000012,4307163.2442000005],[361780.79609999992,4307165.7245000005],[361776.71300000045,4307172.5790999997],[361770.94840000011,4307180.9799000006],[361763.12079999968,4307188.6630000006],[361758.83459999971,4307193.0368000008],[361756.4084999999,4307194.0098000001],[361730.3674999997,4307179.2327999994],[361730.57600000035,4307177.4332999997],[361730.8415000001,4307176.3958000001],[361736.0148,4307166.2002000008],[361732.76140000019,4307163.5120999999],[361717.50530000031,4307152.8570000008],[361719.15639999975,4307149.7091000006],[361720.88289999962,4307150.7393999994],[361736.84009999968,4307161.8217999991],[361737.8180999998,4307160.3717],[361740.83550000004,4307161.2029999997],[361739.08949999977,4307165.3090000004],[361754.01439999975,4307174.7437999994],[361765.10170000046,4307160.5274999999],[361769.91509999987,4307154.2833999991],[361768.94010000024,4307152.1603999995],[361767.25459999964,4307149.3238999993],[361766.87550000008,4307144.2686000001],[361766.42960000038,4307142.0525000002],[361757.94330000039,4307137.8276000004],[361740.85890000034,4307127.5651999991],[361733.48099999968,4307122.3980999999],[361734.68680000026,4307120.0991999991]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855653,"SIGPAC_FOGAIBA.DN_OID":1241848334,"SIGPAC_FOGAIBA.DN_SURFACE":2068.8098662615666,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":44,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":42,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200044R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855654,"geometry":{"type":"Polygon","coordinates":[[[361733.48099999968,4307122.3980999999],[361740.85890000034,4307127.5651999991],[361757.94330000039,4307137.8276000004],[361766.42960000038,4307142.0525000002],[361766.87550000008,4307144.2686000001],[361767.25459999964,4307149.3238999993],[361768.94010000024,4307152.1603999995],[361769.91509999987,4307154.2833999991],[361765.10170000046,4307160.5274999999],[361754.01439999975,4307174.7437999994],[361739.08949999977,4307165.3090000004],[361740.83550000004,4307161.2029999997],[361737.8180999998,4307160.3717],[361736.84009999968,4307161.8217999991],[361720.88289999962,4307150.7393999994],[361719.15639999975,4307149.7091000006],[361733.48099999968,4307122.3980999999]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855654,"SIGPAC_FOGAIBA.DN_OID":440278739,"SIGPAC_FOGAIBA.DN_SURFACE":1416.1602309436744,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":44,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":29,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200044R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855655,"geometry":{"type":"Polygon","coordinates":[[[361822.59169999976,4283114.3600999992],[361818.77390000038,4283119.5080999993],[361783.71009999979,4283146.5650999993],[361781.06960000005,4283140.1143999994],[361797.31599999964,4283123.8193999995],[361798.50119999982,4283125.4793999996],[361822.59169999976,4283114.3600999992]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855655,"SIGPAC_FOGAIBA.DN_OID":1774285216,"SIGPAC_FOGAIBA.DN_SURFACE":309.03985612945303,"COD_Municipis.NOM":"Formentera","SIGPAC_FOGAIBA.MUNICIPIO":24,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":1,"SIGPAC_FOGAIBA.RECINTO":47,"SIGPAC_FOGAIBA.PENDIENTE_":42,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"199,231","SIGPAC_FOGAIBA.MOTIVO_MOD":12,"SIGPAC_FOGAIBA.REFERENCIA":"07024A00200001R0047","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855656,"geometry":{"type":"Polygon","coordinates":[[[361751.35690000001,4307088.3166000005],[361766.8348000003,4307111.6637999993],[361770.0708999997,4307117.0142999999],[361776.92349999957,4307128.5865000002],[361776.7714999998,4307129.2820999995],[361776.68640000001,4307132.3263000008],[361776.24170000013,4307133.0877999999],[361774.02419999987,4307136.8486000001],[361770.92420000024,4307137.9450000003],[361764.35840000026,4307136.7011999991],[361753.48620000016,4307131.5874000005],[361734.7229000004,4307120.1168000009],[361734.68680000026,4307120.0991999991],[361751.35690000001,4307088.3166000005]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855656,"SIGPAC_FOGAIBA.DN_OID":1241848410,"SIGPAC_FOGAIBA.DN_SURFACE":1044.4746884999711,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":44,"SIGPAC_FOGAIBA.RECINTO":3,"SIGPAC_FOGAIBA.PENDIENTE_":34,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200044R0003","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855657,"geometry":{"type":"Polygon","coordinates":[[[361183.86029999983,4308328.4417000003],[361256.31599999964,4308495.1329999994],[361262.13129999954,4308508.5098000001],[361262.67179999966,4308509.7532000002],[361264.7209999999,4308514.4670000002],[361246.49689999968,4308525.6465000007],[361243.27489999961,4308527.6229999997],[361149.38210000005,4308616.3719999995],[361116.72300000023,4308655.4028999992],[361055.51099999994,4308722.341],[361038.18099999987,4308753.2990000006],[360997.36340000015,4308825.7837000005],[360996.37249999959,4308827.5434000008],[360992.02660000045,4308835.2609999999],[360987.91299999971,4308842.5659999996],[360985.82550000027,4308838.7607000005],[360984.77520000003,4308836.8461000007],[360917.85560000036,4308714.8557999991],[360902.05740000028,4308686.0572999995],[360898.25119999982,4308679.1190000009],[360896.53050000034,4308675.9822000004],[360887.18209999986,4308658.9411999993],[360886.34700000007,4308657.4189999998],[360875.42690000031,4308637.5232999995],[360874.65490000043,4308636.1169000007],[360932.96310000028,4308604.8910000008],[360953.72800000012,4308586.3259999994],[360961.28199999966,4308571.3560000006],[360966.15000000037,4308557.7179000005],[360967.67300000042,4308553.4509999994],[360977.38499999978,4308517.7929999996],[360981.78419999965,4308508.3797999993],[360984.64599999972,4308502.2559999991],[360989.31240000017,4308495.5416000001],[360992.21999999974,4308497.2200000007],[361008.80999999959,4308473.75],[361005.95459999982,4308471.5962000005],[361024.93699999992,4308444.2839000002],[361033.80159999989,4308434.1600000001],[361038.57899999991,4308428.7039000001],[361039.84399999958,4308428.1261999998],[361040.10520000011,4308428.0067999996],[361040.34449999966,4308427.8975000009],[361041.29910000041,4308427.4614000004],[361041.56680000015,4308427.3390999995],[361045.41000000015,4308425.5835999995],[361046.30979999993,4308425.1725999992],[361046.96289999969,4308424.8742999993],[361051.6074000001,4308422.7526999991],[361051.74029999971,4308422.6920999996],[361056.67899999954,4308420.4361000005],[361093.01099999994,4308408.432],[361121.49749999959,4308387.3607999999],[361122.77599999961,4308386.4149999991],[361140.32830000017,4308364.5359000005],[361140.98929999955,4308363.7118999995],[361150.5560999997,4308355.1393999998],[361151.11600000039,4308354.6195],[361154.66559999995,4308351.3429000005],[361158.00600000005,4308348.2595000006],[361175.84009999968,4308331.7811999992],[361183.40589999966,4308328.6011999995],[361183.86029999983,4308328.4417000003]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855657,"SIGPAC_FOGAIBA.DN_OID":1531316560,"SIGPAC_FOGAIBA.DN_SURFACE":83652.905572126532,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":212,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":483,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200212R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855658,"geometry":{"type":"Polygon","coordinates":[[[361487.38860000018,4308394.3520999998],[361487.61529999971,4308394.6779999994],[361487.60400000028,4308394.9551999997],[361447.76439999975,4308419.8050999995],[361392.48010000028,4308449.8616000004],[361355.16980000027,4308477.1559999995],[361335.47690000013,4308493.3943000007],[361321.65809999965,4308499.2662000004],[361300.92970000021,4308495.8147999998],[361292.71439999994,4308497.2931999993],[361325.81259999983,4308476.9879000001],[361335.61519999988,4308470.9739999995],[361366.57100000046,4308451.9829999991],[361365.60950000025,4308421.8000000007],[361365.22599999979,4308409.7638000008],[361369.59499999974,4308409.4749999996],[361442.18489999976,4308400.5739999991],[361487.38860000018,4308394.3520999998]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855658,"SIGPAC_FOGAIBA.DN_OID":1531316562,"SIGPAC_FOGAIBA.DN_SURFACE":4652.9650066952136,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":73,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":230,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_FOGAIBA.INCIDENCIA":"231","SIGPAC_FOGAIBA.MOTIVO_MOD":1,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200073R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855659,"geometry":{"type":"Polygon","coordinates":[[[361806.04710000008,4307498.4653999992],[361846.88179999962,4307525.6853],[361845.36060000025,4307527.6753000002],[361836.07510000002,4307539.2919999994],[361832.52850000001,4307537.7069000006],[361823.57899999991,4307549.8293999992],[361826.20889999997,4307551.7934000008],[361828.13690000027,4307555.2025000006],[361837.96679999959,4307563.9449000005],[361842.96410000045,4307567.8309000004],[361845.15720000025,4307571.8495000005],[361847.02469999995,4307576.7857000008],[361848.43200000003,4307581.0360000003],[361848.10879999958,4307580.5398999993],[361845.73840000015,4307577.1346000005],[361845.6481999997,4307577.0051000006],[361845.15550000034,4307576.2970000003],[361845.05080000032,4307576.1467000004],[361844.94900000002,4307576.0002999995],[361844.46899999958,4307575.3903000001],[361841.77850000001,4307571.9707999993],[361838.95210000034,4307568.7884999998],[361838.35879999958,4307568.1206999999],[361835.46169999987,4307565.1327999998],[361834.52880000044,4307564.1706000008],[361830.51900000032,4307560.1708000004],[361828.67690000031,4307558.3245000001],[361826.56879999954,4307556.2116],[361825.40560000017,4307555.0538999997],[361822.52929999959,4307552.1920999996],[361818.14890000038,4307548.0614999998],[361817.62189999968,4307547.6306999996],[361815.45210000034,4307545.8570000008],[361813.32870000042,4307544.1213000007],[361809.27639999986,4307541.4408],[361808.12909999955,4307540.6819000002],[361807.04320000019,4307540.0113999993],[361806.43620000035,4307539.6364999991],[361806.17329999991,4307539.4741999991],[361806.01090000011,4307539.3739],[361805.95289999992,4307539.3379999995],[361805.91469999962,4307539.3144000005],[361803.23919999972,4307537.6623],[361800.17899999954,4307535.5397999994],[361799.15899999999,4307534.8323999997],[361795.24880000018,4307531.7919999994],[361792.80169999972,4307529.8816],[361792.09570000041,4307529.3303999994],[361793.89940000046,4307525.0823999997],[361799.84900000039,4307511.9328000005],[361805.15990000032,4307500.1991000008],[361806.04710000008,4307498.4653999992]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855659,"SIGPAC_FOGAIBA.DN_OID":440278762,"SIGPAC_FOGAIBA.DN_SURFACE":1568.4549143821664,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":54,"SIGPAC_FOGAIBA.RECINTO":3,"SIGPAC_FOGAIBA.PENDIENTE_":43,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200054R0003","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855660,"geometry":{"type":"Polygon","coordinates":[[[361748.60960000008,4307504.3842999991],[361749.9478000002,4307507.8134000003],[361750.40649999958,4307508.9887000006],[361752.95870000031,4307510.7063999996],[361753.13860000018,4307510.7689999994],[361778.77950000018,4307519.6809],[361783.11820000038,4307522.8587999996],[361783.46690000035,4307523.1140999999],[361783.56350000016,4307523.1849000007],[361785.90369999968,4307524.8986000009],[361787.19400000013,4307525.7981000002],[361787.31859999988,4307525.8848999999],[361787.35890000034,4307525.9131000005],[361787.57679999992,4307526.0648999996],[361787.8273,4307526.2394999992],[361789.86909999978,4307527.6623999998],[361790.5214999998,4307528.1214000005],[361790.56599999964,4307528.1527999993],[361790.60429999977,4307528.1798],[361790.71040000021,4307528.2544],[361790.77819999959,4307528.3019999992],[361791.46889999975,4307528.8411999997],[361791.78450000007,4307529.0875000004],[361792.09570000041,4307529.3303999994],[361792.80169999972,4307529.8816],[361795.24880000018,4307531.7919999994],[361799.15899999999,4307534.8323999997],[361800.17899999954,4307535.5397999994],[361803.23919999972,4307537.6623],[361805.91469999962,4307539.3144000005],[361805.95289999992,4307539.3379999995],[361806.01090000011,4307539.3739],[361806.17329999991,4307539.4741999991],[361806.43620000035,4307539.6364999991],[361807.04320000019,4307540.0113999993],[361808.12909999955,4307540.6819000002],[361809.27639999986,4307541.4408],[361813.32870000042,4307544.1213000007],[361815.45210000034,4307545.8570000008],[361817.62189999968,4307547.6306999996],[361818.14890000038,4307548.0614999998],[361822.52929999959,4307552.1920999996],[361825.40560000017,4307555.0538999997],[361826.56879999954,4307556.2116],[361828.67690000031,4307558.3245000001],[361830.51900000032,4307560.1708000004],[361834.52880000044,4307564.1706000008],[361835.46169999987,4307565.1327999998],[361838.35879999958,4307568.1206999999],[361838.95210000034,4307568.7884999998],[361841.77850000001,4307571.9707999993],[361844.46899999958,4307575.3903000001],[361844.94900000002,4307576.0002999995],[361845.05080000032,4307576.1467000004],[361845.15550000034,4307576.2970000003],[361845.6481999997,4307577.0051000006],[361845.73840000015,4307577.1346000005],[361848.10879999958,4307580.5398999993],[361848.43200000003,4307581.0360000003],[361850.71210000012,4307584.5351999998],[361850.75549999997,4307584.6018000003],[361850.96490000002,4307584.9229000006],[361851.43850000016,4307585.6495999992],[361853.05599999987,4307588.2134000007],[361854.97740000021,4307591.2586000003],[361855.73539999966,4307592.5289999992],[361856.36139999982,4307593.5784000009],[361858.31869999971,4307596.8590999991],[361858.52579999994,4307597.2487000003],[361861.09860000014,4307602.0892999992],[361861.57060000021,4307603.0841000006],[361861.86930000037,4307603.7135000005],[361864.33609999996,4307607.7591999993],[361872.96860000025,4307621.9182999991],[361873.16000000015,4307622.4871999994],[361873.26840000041,4307622.8091000002],[361873.73319999967,4307624.3065000009],[361874.02869999968,4307625.2588999998],[361875.02850000001,4307630.5982000008],[361875.9140999997,4307634.7076999992],[361876.16860000044,4307635.8886999991],[361877.71839999966,4307641.3784999996],[361878.99859999958,4307642.7700999994],[361879.77799999993,4307643.6175999995],[361882.2182,4307643.2577],[361880.1473000003,4307644.4349000007],[361879.26659999974,4307644.9356999993],[361875.30339999963,4307647.1877999995],[361875.17100000009,4307647.2627000008],[361875.03849999979,4307647.3378999997],[361874.85400000028,4307645.9600000009],[361873.13850000035,4307633.1484999992],[361872.99490000028,4307631.3769000005],[361872.90749999974,4307630.3469999991],[361871.64549999963,4307626.3563999999],[361870.50050000008,4307623.1758999992],[361869.36280000024,4307620.9735000003],[361868.65199999977,4307619.591],[361867.01150000002,4307617.0133999996],[361864.88009999972,4307614.3405000009],[361856.59549999982,4307601.2365000006],[361855.36149999965,4307599.2379000001],[361851.58849999961,4307593.1300000008],[361847.60419999994,4307586.9123999998],[361839.25930000003,4307573.8889000006],[361826.89080000017,4307561.9461000003],[361818.8387000002,4307554.1710999999],[361817.90730000008,4307553.2718000002],[361812.91210000031,4307548.4480000008],[361782.07689999975,4307528.0588000007],[361780.50490000006,4307527.0193000007],[361777.51719999965,4307525.6399000008],[361777.29250000045,4307525.5362],[361774.20930000022,4307524.1129000001],[361761.69199999981,4307520.4910000004],[361750.59250000026,4307517.4545000009],[361749.80109999981,4307512.2393999994],[361748.60960000008,4307504.3842999991]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855660,"SIGPAC_FOGAIBA.DN_OID":1303109989,"SIGPAC_FOGAIBA.DN_SURFACE":787.75670750084373,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":9000,"SIGPAC_FOGAIBA.RECINTO":13,"SIGPAC_FOGAIBA.PENDIENTE_":86,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"CA","COD_USOS_SIGPAC.Descripción":"VIALES","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00209000R0013","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855661,"geometry":{"type":"Polygon","coordinates":[[[361774.20930000022,4307524.1129000001],[361777.29250000045,4307525.5362],[361777.51719999965,4307525.6399000008],[361780.50490000006,4307527.0193000007],[361782.07689999975,4307528.0588000007],[361781.91509999987,4307528.4119000006],[361776.0728000002,4307541.5130000003],[361781.7424999997,4307546.4293000009],[361764.37609999999,4307567.5309999995],[361754.66870000027,4307551.9225999992],[361753.87930000015,4307548.7727000006],[361753.82699999958,4307548.5642000008],[361753.25,4307546.2667999994],[361760.26400000043,4307547.4166000001],[361765.9907999998,4307548.3578999992],[361766.09819999989,4307548.3756000008],[361766.74909999967,4307548.4825999998],[361767.6297000004,4307545.5723000001],[361771.13960000034,4307534.1227000002],[361772.62629999965,4307529.2825000007],[361772.78899999987,4307528.7530000005],[361772.84379999992,4307528.5741000008],[361773.69010000024,4307525.8129999992],[361773.93969999999,4307525.0131000001],[361774.04959999956,4307524.6436000001],[361774.20930000022,4307524.1129000001]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855661,"SIGPAC_FOGAIBA.DN_OID":1161522644,"SIGPAC_FOGAIBA.DN_SURFACE":484.07897291161953,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":53,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":40,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200053R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855662,"geometry":{"type":"Polygon","coordinates":[[[361355.59690000024,4308243.5305000003],[361355.88929999992,4308243.9670000002],[361341.74000000022,4308250.2199000008],[361342.06950000022,4308257.2210000008],[361342.40160000045,4308264.2787999995],[361342.46229999978,4308265.5695999991],[361342.47070000041,4308265.7469999995],[361343.91179999989,4308296.3737000003],[361344.08999999985,4308300.1600000001],[361361.49170000013,4308292.4696999993],[361364.85400000028,4308398.0859999992],[361365.22599999979,4308409.7638000008],[361365.60950000025,4308421.8000000007],[361366.57100000046,4308451.9829999991],[361335.61519999988,4308470.9739999995],[361325.81259999983,4308476.9879000001],[361292.71439999994,4308497.2931999993],[361268.81950000022,4308501.5932999998],[361268.55289999954,4308501.4679000005],[361268.58349999972,4308501.1749000009],[361262.13129999954,4308508.5098000001],[361256.31599999964,4308495.1329999994],[361293.58249999955,4308472.7558999993],[361318.1799999997,4308457.9860999994],[361335.0120000001,4308447.8790000007],[361328.40340000018,4308434.7718000002],[361276.91569999978,4308332.6526999995],[361275.04449999984,4308328.9414000008],[361268.79600000009,4308316.5484999996],[361259.17700000014,4308297.4710000008],[361259.49450000003,4308297.2382999994],[361259.5970999999,4308297.1723999996],[361265.90579999983,4308293.5328000002],[361335.57600000035,4308252.8144000005],[361351.19400000013,4308245.4859999996],[361352.7949000001,4308244.7751000002],[361355.59690000024,4308243.5305000003]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855662,"SIGPAC_FOGAIBA.DN_OID":1531316563,"SIGPAC_FOGAIBA.DN_SURFACE":14182.521581913881,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":208,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":382,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200208R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855663,"geometry":{"type":"Polygon","coordinates":[[[361211.77680000011,4308318.6190000009],[361231.54470000044,4308365.4307000004],[361261.76439999975,4308351.2228999995],[361263.86720000021,4308355.2025000006],[361283.89140000008,4308347.3252000008],[361276.73809999973,4308332.7411000002],[361276.80869999994,4308332.6602999996],[361276.91569999978,4308332.6526999995],[361328.40340000018,4308434.7718000002],[361335.0120000001,4308447.8790000007],[361318.1799999997,4308457.9860999994],[361293.58249999955,4308472.7558999993],[361256.31599999964,4308495.1329999994],[361183.86029999983,4308328.4417000003],[361211.77680000011,4308318.6190000009]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855663,"SIGPAC_FOGAIBA.DN_OID":1531316564,"SIGPAC_FOGAIBA.DN_SURFACE":12244.264210028557,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":72,"SIGPAC_FOGAIBA.RECINTO":4,"SIGPAC_FOGAIBA.PENDIENTE_":483,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200072R0004","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855664,"geometry":{"type":"Polygon","coordinates":[[[361259.49450000003,4308297.2382999994],[361259.17700000014,4308297.4710000008],[361268.79600000009,4308316.5484999996],[361275.04449999984,4308328.9414000008],[361276.91569999978,4308332.6526999995],[361276.80869999994,4308332.6602999996],[361276.73809999973,4308332.7411000002],[361283.89140000008,4308347.3252000008],[361263.86720000021,4308355.2025000006],[361261.76439999975,4308351.2228999995],[361231.54470000044,4308365.4307000004],[361211.77680000011,4308318.6190000009],[361216.13729999959,4308317.0847999994],[361238.68219999969,4308307.8046000004],[361243.51979999989,4308305.8133000005],[361247.35800000001,4308304.2335000001],[361247.53239999991,4308304.1328999996],[361259.49450000003,4308297.2382999994]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855664,"SIGPAC_FOGAIBA.DN_OID":1303110094,"SIGPAC_FOGAIBA.DN_SURFACE":2763.6358505266835,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":72,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":337,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200072R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855665,"geometry":{"type":"Polygon","coordinates":[[[361359.38999999966,4308242.4199999999],[361361.74000000022,4308292.3599999994],[361361.49170000013,4308292.4696999993],[361344.08999999985,4308300.1600000001],[361343.91179999989,4308296.3737000003],[361342.47070000041,4308265.7469999995],[361342.46229999978,4308265.5695999991],[361342.40160000045,4308264.2787999995],[361342.06950000022,4308257.2210000008],[361341.74000000022,4308250.2199000008],[361355.88929999992,4308243.9670000002],[361359.38999999966,4308242.4199999999]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855665,"SIGPAC_FOGAIBA.DN_OID":1579621846,"SIGPAC_FOGAIBA.DN_SURFACE":899.7706150997783,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":214,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":309,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200214R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855666,"geometry":{"type":"Polygon","coordinates":[[[457350.59190000035,4392958.2361999992],[457351.79949999973,4392956.0448000003],[457354.95430000033,4392956.0447000004],[457357.83100000024,4392957.3778000008],[457361.99569999985,4392959.3074999992],[457366.47319999989,4392959.3074999992],[457368.4581000004,4392964.1210999992],[457371.14010000043,4392970.6254999992],[457371.09999999963,4392970.6563000008],[457371.04420000035,4392970.6749000009],[457368.85109999962,4392968.9638],[457351.2089999998,4392959.3583000004],[457350.59190000035,4392958.2361999992]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855666,"SIGPAC_FOGAIBA.DN_OID":1449792552,"SIGPAC_FOGAIBA.DN_SURFACE":107.44046495527688,"COD_Municipis.NOM":"Banyalbufar","SIGPAC_FOGAIBA.MUNICIPIO":7,"SIGPAC_FOGAIBA.POLIGONO":1,"SIGPAC_FOGAIBA.PARCELA":41,"SIGPAC_FOGAIBA.RECINTO":3,"SIGPAC_FOGAIBA.PENDIENTE_":1399,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"MT","COD_USOS_SIGPAC.Descripción":"MATORRAL","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07007A00100041R0003","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855667,"geometry":{"type":"Polygon","coordinates":[[[361822.91610000003,4307461.9092999995],[361824.4160000002,4307462.5764000006],[361875.36899999995,4307485.2219999991],[361881.37770000007,4307487.9013],[361888.30900000036,4307490.9921000004],[361888.41660000011,4307491.0322999991],[361889.86479999963,4307491.5723000001],[361889.97709999979,4307491.6140999999],[361890.09779999964,4307491.6590999998],[361890.23139999993,4307491.7087999992],[361890.34750000015,4307491.7522],[361894.18859999999,4307493.1843999997],[361895.53920000046,4307493.6675000004],[361911.05319999997,4307499.2160999998],[361911.14020000026,4307499.2471999992],[361911.22690000013,4307499.2783000004],[361911.60369999986,4307499.4130000006],[361912.16970000044,4307499.6154999994],[361919.14890000038,4307502.1116000004],[361927.76740000024,4307507.2901000008],[361935.76860000007,4307512.0975000001],[361936.73680000007,4307512.6793000009],[361942.74700000044,4307516.2938999999],[361952.83079999965,4307522.3583000004],[361959.17939999979,4307527.8099000007],[361960.21439999994,4307526.6857999992],[361971.99430000037,4307540.3956000004],[361975.76219999976,4307544.6072000004],[361989.05310000014,4307562.8853999991],[361988.36259999964,4307563.2862999998],[361986.49859999958,4307564.3685999997],[361965.87820000015,4307578.8300999999],[361950.61870000046,4307588.8388],[361943.46140000038,4307593.1667999998],[361943.41399999987,4307593.1954999994],[361938.93300000019,4307595.9053000007],[361938.72869999986,4307596.0287999995],[361934.92860000022,4307598.9583000001],[361931.66330000013,4307601.1607000008],[361931.40930000041,4307601.1237000003],[361931.36319999956,4307601.1265999991],[361930.26499999966,4307601.3203999996],[361929.85850000009,4307601.3648000006],[361925.5672000004,4307600.0161000006],[361916.44790000003,4307592.8150999993],[361917.02570000011,4307592.1815000009],[361912.29440000001,4307588.5329],[361913.64379999973,4307587.1136000007],[361908.07110000029,4307582.7539000008],[361903.0111999996,4307580.6928000003],[361896.99260000046,4307583.6917000003],[361897.28289999999,4307582.8306000009],[361907.03129999992,4307569.4101],[361899.95490000024,4307563.8670000006],[361900.1007000003,4307563.4736000001],[361896.15089999977,4307560.8719999995],[361897.91029999964,4307557.5287999995],[361892.43620000035,4307553.8187000006],[361890.13790000044,4307556.2781000007],[361878.2536000004,4307548.1204000004],[361877.61110000033,4307540.4737],[361878.52740000002,4307535.4795999993],[361879.13019999955,4307531.6912999991],[361878.01939999964,4307529.7007999998],[361873.79640000034,4307527.2715000007],[361868.66189999972,4307525.1095000003],[361865.35599999968,4307524.4042000007],[361862.82230000012,4307526.2908999994],[361861.63669999968,4307528.7587000001],[361861.9757000003,4307531.9352000002],[361864.78199999966,4307536.9294000007],[361868.6810999997,4307542.4628999997],[361863.89890000038,4307548.818],[361867.27799999993,4307551.2153999992],[361868.8685999997,4307549.4569000006],[361874.37100000028,4307552.7011999991],[361875.21679999959,4307551.5886000004],[361882.39800000004,4307556.8877000008],[361869.20320000034,4307578.6314000003],[361871.61120000016,4307580.3758000005],[361869.58920000028,4307583.6678999998],[361886.64250000007,4307597.2159000002],[361890.75129999965,4307592.6868999992],[361890.2790000001,4307593.5326000005],[361911.0429999996,4307609.7421000004],[361907.66469999962,4307611.9692000002],[361905.8805999998,4307615.1453000009],[361904.52960000001,4307618.5559999999],[361904.52520000003,4307621.2172999997],[361904.91779999994,4307623.4716999996],[361888.49959999975,4307637.7829],[361882.2182,4307643.2577],[361879.77799999993,4307643.6175999995],[361878.99859999958,4307642.7700999994],[361877.71839999966,4307641.3784999996],[361876.16860000044,4307635.8886999991],[361875.9140999997,4307634.7076999992],[361875.02850000001,4307630.5982000008],[361874.02869999968,4307625.2588999998],[361873.73319999967,4307624.3065000009],[361873.26840000041,4307622.8091000002],[361873.16000000015,4307622.4871999994],[361872.96860000025,4307621.9182999991],[361864.33609999996,4307607.7591999993],[361861.86930000037,4307603.7135000005],[361861.57060000021,4307603.0841000006],[361861.09860000014,4307602.0892999992],[361858.52579999994,4307597.2487000003],[361858.31869999971,4307596.8590999991],[361856.36139999982,4307593.5784000009],[361855.73539999966,4307592.5289999992],[361854.97740000021,4307591.2586000003],[361853.05599999987,4307588.2134000007],[361851.43850000016,4307585.6495999992],[361850.96490000002,4307584.9229000006],[361850.75549999997,4307584.6018000003],[361850.71210000012,4307584.5351999998],[361848.43200000003,4307581.0360000003],[361847.02469999995,4307576.7857000008],[361845.15720000025,4307571.8495000005],[361842.96410000045,4307567.8309000004],[361837.96679999959,4307563.9449000005],[361828.13690000027,4307555.2025000006],[361826.20889999997,4307551.7934000008],[361823.57899999991,4307549.8293999992],[361832.52850000001,4307537.7069000006],[361836.07510000002,4307539.2919999994],[361845.36060000025,4307527.6753000002],[361846.88179999962,4307525.6853],[361806.04710000008,4307498.4653999992],[361805.15990000032,4307500.1991000008],[361805.66949999984,4307499.0731000006],[361805.89510000031,4307498.5747999996],[361805.93090000004,4307498.4955000002],[361805.99419999961,4307498.3559000008],[361814.52969999984,4307479.5035999995],[361816.17960000038,4307475.8531999998],[361822.91610000003,4307461.9092999995]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855667,"SIGPAC_FOGAIBA.DN_OID":1241848445,"SIGPAC_FOGAIBA.DN_SURFACE":13793.485122217953,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":54,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":43,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199,231","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200054R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855668,"geometry":{"type":"Polygon","coordinates":[[[361720.2098000003,4307272.3892999999],[361734.62569999974,4307280.1744999997],[361740.3189000003,4307283.2491999995],[361755.16179999989,4307289.2555999998],[361781.6668999996,4307297.7361999992],[361796.11390000023,4307302.7274999991],[361809.51860000007,4307307.3585999999],[361810.61010000017,4307307.7357000001],[361810.8395999996,4307307.8853999991],[361815.90130000003,4307311.1897999998],[361821.3200000003,4307314.7271999996],[361824.11950000003,4307316.7005000003],[361834.53529999964,4307324.0423000008],[361835.5270999996,4307324.1908],[361837.41899999976,4307324.4738999996],[361837.27479999978,4307324.5755000003],[361837.13040000014,4307324.6772000007],[361830.36270000041,4307326.4702000003],[361827.36199999973,4307327.2653000001],[361812.06659999955,4307331.193],[361802.68340000045,4307333.3522999994],[361802.23790000007,4307333.4549000002],[361801.81130000018,4307333.5529999994],[361801.14759999979,4307333.7057000007],[361801.00609999988,4307333.7383999992],[361795.20490000024,4307335.0738999993],[361783.88449999969,4307337.6786000002],[361783.92650000006,4307335.9690000005],[361784.81799999997,4307332.0464999992],[361785.05850000028,4307331.1530000009],[361757.78830000013,4307323.6353999991],[361725.49179999996,4307314.6918000001],[361715.69579999987,4307312.3739999998],[361712.87330000009,4307311.6490000002],[361709.4589999998,4307312.2803000007],[361708.48029999994,4307309.5174000002],[361707.66150000039,4307307.2060000002],[361717.20399999991,4307280.7284999993],[361719.44720000029,4307274.5051000006],[361719.47410000023,4307274.4302999992],[361719.50289999973,4307274.3506000005],[361719.58040000033,4307274.1355000008],[361719.99600000028,4307272.9824999999],[361720.2098000003,4307272.3892999999]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855668,"SIGPAC_FOGAIBA.DN_OID":440278754,"SIGPAC_FOGAIBA.DN_SURFACE":3654.5768599406479,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":48,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":45,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,12,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200048R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855669,"geometry":{"type":"Polygon","coordinates":[[[361810.94139999989,4307197.3741999995],[361817.14580000006,4307201.6669999994],[361816.70469999965,4307203.0517999995],[361835.47169999965,4307215.1738000009],[361835.65660000034,4307214.9651999995],[361840.22310000006,4307221.5309999995],[361846.16459999979,4307230.0734999999],[361844.98730000015,4307230.8911000006],[361840.85400000028,4307226.5249000005],[361829.06670000032,4307237.3012000006],[361828.97759999987,4307237.2537999991],[361828.89240000024,4307237.4138999991],[361828.54090000037,4307237.2194999997],[361803.68099999987,4307224.0004999992],[361801.96559999976,4307223.0986000001],[361802.05169999972,4307222.9377999995],[361801.95639999956,4307222.8870000001],[361809.70139999967,4307205.8912000004],[361806.80250000022,4307203.9412999991],[361810.94139999989,4307197.3741999995]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855669,"SIGPAC_FOGAIBA.DN_OID":1370681371,"SIGPAC_FOGAIBA.DN_SURFACE":845.55413627019016,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":44,"SIGPAC_FOGAIBA.RECINTO":8,"SIGPAC_FOGAIBA.PENDIENTE_":44,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200044R0008","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855670,"geometry":{"type":"Polygon","coordinates":[[[361854.93169999961,4307306.0102999993],[361859.39250000007,4307307.9734000005],[361860.21910000034,4307308.3445999995],[361857.94230000023,4307311.7514999993],[361857.54320000019,4307312.3486000001],[361857.41349999979,4307312.5427000001],[361857.33040000033,4307312.6670999993],[361848.97020000033,4307325.1765000001],[361848.70959999971,4307325.2798999995],[361848.67370000016,4307325.3386000004],[361844.28650000039,4307327.7673000004],[361841.43049999978,4307329.3465999998],[361839.30869999994,4307329.8151999991],[361838.53029999975,4307329.9871999994],[361817.57039999962,4307336.1773000006],[361817.2368999999,4307336.2392999995],[361817.08829999994,4307336.2670000009],[361816.85929999966,4307336.3092999998],[361815.6381000001,4307336.5362],[361815.09250000026,4307336.6375999991],[361809.82569999993,4307337.6148000006],[361785.56020000018,4307342.1170000006],[361776.65799999982,4307344.3063999992],[361766.56089999992,4307346.7898999993],[361740.89859999996,4307353.1007000003],[361732.75910000037,4307355.1022999994],[361732.42310000025,4307355.1849000007],[361732.08800000045,4307355.2672000006],[361730.5800999999,4307355.6378000006],[361729.71169999987,4307355.9000000004],[361729.51979999989,4307355.9580000006],[361729.31419999991,4307356.0557000004],[361728.5103000002,4307356.4379999992],[361728.1651999997,4307357.0379000008],[361728.14020000026,4307357.0811000001],[361728.10240000021,4307357.1469000001],[361727.8200000003,4307357.6375999991],[361727.71530000027,4307359.5491000004],[361727.01350000035,4307356.1410000008],[361726.46729999967,4307353.4874000009],[361725.7834999999,4307350.1649999991],[361725.72449999955,4307349.8794999998],[361725.94600000046,4307349.8625000007],[361726.01229999959,4307349.8574999999],[361726.26020000037,4307349.8384000007],[361727.62980000023,4307349.6580999997],[361728.29360000044,4307349.5237000007],[361728.36710000038,4307349.5088],[361728.96229999978,4307349.3882999998],[361729.04069999978,4307349.3723000009],[361736.42690000031,4307347.8760000002],[361740.64709999971,4307346.9693],[361741.05999999959,4307346.8805999998],[361741.75459999964,4307346.7313999999],[361743.65319999959,4307346.3234999999],[361745.3200000003,4307345.9653999992],[361745.37480000034,4307345.9537000004],[361745.45559999999,4307345.9363000002],[361745.58849999961,4307345.9078000002],[361745.82660000026,4307345.8566999994],[361747.1425999999,4307345.5738999993],[361750.40660000034,4307344.8727000002],[361753.22910000011,4307344.2662000004],[361753.96380000003,4307344.1084000003],[361768.2229000004,4307341.0450999998],[361769.90259999968,4307340.6842999998],[361783.75999999978,4307337.7072000001],[361783.88449999969,4307337.6786000002],[361795.20490000024,4307335.0738999993],[361801.00609999988,4307333.7383999992],[361801.14759999979,4307333.7057000007],[361801.81130000018,4307333.5529999994],[361802.23790000007,4307333.4549000002],[361802.68340000045,4307333.3522999994],[361812.06659999955,4307331.193],[361827.36199999973,4307327.2653000001],[361830.36270000041,4307326.4702000003],[361837.13040000014,4307324.6772000007],[361837.27479999978,4307324.5755000003],[361837.41899999976,4307324.4738999996],[361837.54449999984,4307324.4922000002],[361838.18510000035,4307324.2122000009],[361838.41810000036,4307324.1103000008],[361838.61060000025,4307324.0261000004],[361839.88190000039,4307323.4699000008],[361842.67339999974,4307321.4090999998],[361845.41509999987,4307318.2301000003],[361846.71129999962,4307316.7270999998],[361848.00769999996,4307315.2240999993],[361854.9020999996,4307306.0494999997],[361854.93169999961,4307306.0102999993]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855670,"SIGPAC_FOGAIBA.DN_OID":1746640394,"SIGPAC_FOGAIBA.DN_SURFACE":821.00019750595675,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":9004,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":70,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"CA","COD_USOS_SIGPAC.Descripción":"VIALES","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00209004R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855671,"geometry":{"type":"Polygon","coordinates":[[[365555.22250000015,4308489.4921000004],[365570.11249999981,4308495.8320000004],[365595.69249999989,4308506.7214000002],[365594.64250000007,4308509.1015000008],[365592.69419999979,4308513.5073000006],[365591.43200000003,4308516.3615000006],[365587.67200000025,4308524.8709999993],[365586.66490000021,4308527.1533000004],[365586.43200000003,4308527.6809999999],[365580.35199999996,4308541.4409999996],[365523.09250000026,4308516.4509999994],[365536.14250000007,4308505.5014999993],[365537.95249999966,4308503.9813999999],[365549.34240000043,4308494.4214999992],[365550.59250000026,4308493.3819999993],[365551.52249999996,4308492.602],[365555.22250000015,4308489.4921000004]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855671,"SIGPAC_FOGAIBA.DN_OID":1746640674,"SIGPAC_FOGAIBA.DN_SURFACE":2007.9888579274786,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":1,"SIGPAC_FOGAIBA.PARCELA":64002,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":26,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"ZU","COD_USOS_SIGPAC.Descripción":"ZONA URBANA","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00164002R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855672,"geometry":{"type":"Polygon","coordinates":[[[365603.18250000011,4308489.7818999998],[365604.97250000015,4308490.5119000003],[365608.10120000038,4308491.7915000003],[365608.32249999978,4308491.8819999993],[365608.79050000012,4308492.0730000008],[365617.43250000011,4308495.602],[365630.57249999978,4308500.9719999991],[365643.4020999996,4308506.2214000002],[365645.5120000001,4308507.0814999994],[365646.25200000033,4308507.3816],[365621.84140000027,4308559.5304000005],[365580.35199999996,4308541.4409999996],[365586.43200000003,4308527.6809999999],[365586.66490000021,4308527.1533000004],[365587.67200000025,4308524.8709999993],[365591.43200000003,4308516.3615000006],[365592.69419999979,4308513.5073000006],[365594.64250000007,4308509.1015000008],[365595.69249999989,4308506.7214000002],[365598.92250000034,4308499.4220000003],[365600.15249999985,4308496.6418999992],[365603.18250000011,4308489.7818999998]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855672,"SIGPAC_FOGAIBA.DN_OID":1746640675,"SIGPAC_FOGAIBA.DN_SURFACE":2616.0750474782772,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":1,"SIGPAC_FOGAIBA.PARCELA":64003,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":23,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"ZU","COD_USOS_SIGPAC.Descripción":"ZONA URBANA","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00164003R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855673,"geometry":{"type":"Polygon","coordinates":[[[365655.57249999978,4308487.3420000002],[365677.35149999987,4308499.9134999998],[365676.85199999996,4308500.9920000006],[365672.63200000022,4308510.0615999997],[365671.29200000037,4308512.9415000007],[365644.95150000043,4308569.6104000006],[365621.84140000027,4308559.5304000005],[365646.25200000033,4308507.3816],[365647.96200000029,4308503.7019999996],[365648.87189999968,4308501.7420000006],[365649.8125,4308499.7320000008],[365655.57249999978,4308487.3420000002]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855673,"SIGPAC_FOGAIBA.DN_OID":1746640676,"SIGPAC_FOGAIBA.DN_SURFACE":1965.1000497133375,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":1,"SIGPAC_FOGAIBA.PARCELA":64004,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":23,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"ZU","COD_USOS_SIGPAC.Descripción":"ZONA URBANA","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00164004R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855674,"geometry":{"type":"Polygon","coordinates":[[[365586.48209999967,4308556.7705000006],[365616.15139999986,4308569.9299999997],[365615.79150000028,4308571.1199999992],[365598.67109999992,4308626.8690000009],[365591.23039999977,4308651.1184999999],[365585.4001000002,4308670.1381000001],[365577.95000000019,4308694.3870000001],[365576.44000000041,4308699.3269999996],[365548.91999999993,4308686.1675000004],[365550.70000000019,4308680.0175000001],[365555.71050000004,4308662.7579999994],[365557.64049999975,4308656.1081000008],[365569.57100000046,4308614.9890000001],[365585.91139999963,4308558.7204999998],[365586.48209999967,4308556.7705000006]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855674,"SIGPAC_FOGAIBA.DN_OID":1746640570,"SIGPAC_FOGAIBA.DN_SURFACE":4209.1917521707674,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":1,"SIGPAC_FOGAIBA.PARCELA":91015,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":17,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"ZU","COD_USOS_SIGPAC.Descripción":"ZONA URBANA","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00191015R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855675,"geometry":{"type":"Polygon","coordinates":[[[365669.59100000001,4308593.4499999993],[365690.40099999961,4308602.5395],[365690.71210000012,4308602.6776000001],[365690.76099999994,4308602.6995000001],[365692.27099999972,4308603.3595000003],[365693.21100000013,4308603.7695000004],[365664.80999999959,4308683.4674999993],[365655.42949999962,4308709.7670000009],[365650.10900000017,4308734.6465000007],[365628.72950000037,4308724.3764999993],[365629.39950000029,4308722.2366000004],[365630.62949999981,4308718.2770000007],[365644.91009999998,4308672.4879999999],[365648.80999999959,4308659.9580000006],[365669.08110000007,4308595.0700000003],[365669.59100000001,4308593.4499999993]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855675,"SIGPAC_FOGAIBA.DN_OID":1746640566,"SIGPAC_FOGAIBA.DN_SURFACE":3191.3535645116262,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":1,"SIGPAC_FOGAIBA.PARCELA":91011,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":27,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"ZU","COD_USOS_SIGPAC.Descripción":"ZONA URBANA","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00191011R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855676,"geometry":{"type":"Polygon","coordinates":[[[365604.69940000027,4308712.8268999998],[365605.61950000003,4308709.8670000006],[365607.08949999977,4308705.1070000008],[365620.29000000004,4308662.4879999999],[365645.02099999972,4308582.7400000002],[365669.59100000001,4308593.4499999993],[365669.08110000007,4308595.0700000003],[365648.80999999959,4308659.9580000006],[365644.91009999998,4308672.4879999999],[365630.62949999981,4308718.2770000007],[365629.39950000029,4308722.2366000004],[365628.72950000037,4308724.3764999993],[365604.69940000027,4308712.8268999998]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855676,"SIGPAC_FOGAIBA.DN_OID":1746640567,"SIGPAC_FOGAIBA.DN_SURFACE":3622.3476976789225,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":1,"SIGPAC_FOGAIBA.PARCELA":91012,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":17,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"ZU","COD_USOS_SIGPAC.Descripción":"ZONA URBANA","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00191012R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855677,"geometry":{"type":"Polygon","coordinates":[[[361690.80510000046,4307247.0684999991],[361695.85280000046,4307248.3171999995],[361696.56799999997,4307248.4940000009],[361697.02130000014,4307248.6063000001],[361697.12459999975,4307248.6317999996],[361698.01169999968,4307248.8510999996],[361700.14940000046,4307249.3798999991],[361702.92879999988,4307250.0675000008],[361702.99500000011,4307250.0836999994],[361704.7078999998,4307250.5075000003],[361704.88119999971,4307250.5504000001],[361705.10599999968,4307250.6060000006],[361708.96499999985,4307251.5604999997],[361709.66079999972,4307251.7325999998],[361709.73730000015,4307251.7515999991],[361710.10049999971,4307251.8413999993],[361714.81940000039,4307253.0088999998],[361714.96480000019,4307253.0448000003],[361717.91999999993,4307253.7760000005],[361750.69130000006,4307261.8823000006],[361752.05800000019,4307262.2201000005],[361753.16610000003,4307262.4941000007],[361753.19450000022,4307262.4079999998],[361753.25650000013,4307262.4209000003],[361764.74139999971,4307264.8990000002],[361765.45889999997,4307264.8474000003],[361767.91760000028,4307264.6703999992],[361773.07239999995,4307264.2994999997],[361775.32870000042,4307264.1370000001],[361790.86770000029,4307268.3838999998],[361799.14099999983,4307272.2120999992],[361799.63080000039,4307272.4387999997],[361802.85680000018,4307273.9313999992],[361811.59059999976,4307276.1274999995],[361811.69629999995,4307276.1538999993],[361821.28210000042,4307278.5643000007],[361821.87399999984,4307278.7130999994],[361821.92080000043,4307278.7249999996],[361821.96619999968,4307278.7364000008],[361822.09350000042,4307278.7683000006],[361822.16629999969,4307278.7865999993],[361822.24770000018,4307278.8070999999],[361822.66830000002,4307278.9126999993],[361822.88159999996,4307278.9664999992],[361822.96079999954,4307278.9864000008],[361835.31460000016,4307282.0931000002],[361835.0987999998,4307282.7622999996],[361856.97219999973,4307288.1724999994],[361875.71140000038,4307292.7478999998],[361878.15799999982,4307293.3452000003],[361878.32830000017,4307293.3867000006],[361878.51140000019,4307293.4315000009],[361878.58990000002,4307293.4505000003],[361878.63439999986,4307293.4614000004],[361879.54169999994,4307293.6829000004],[361879.82589999959,4307293.7522999998],[361879.9495000001,4307293.7826000005],[361880.01489999983,4307293.7984999996],[361880.32799999975,4307293.8749000002],[361880.5689000003,4307293.7741],[361880.64800000004,4307293.7411000002],[361880.73300000001,4307293.7056000009],[361880.77979999967,4307293.6859000009],[361880.82899999991,4307293.6654000003],[361880.97140000015,4307293.6059000008],[361881.07880000025,4307293.5610000007],[361881.18520000018,4307293.5165999997],[361881.22860000003,4307293.4984000009],[361881.63100000005,4307293.3300000001],[361881.78550000023,4307293.2378000002],[361881.87930000015,4307293.1818000004],[361881.99670000002,4307293.1115000006],[361882.04200000037,4307293.0844000001],[361882.10730000027,4307293.0453999992],[361882.29949999973,4307292.9306000005],[361882.5736999996,4307292.7665999997],[361882.84339999966,4307292.6054999996],[361883.3925999999,4307292.1619000006],[361883.47039999999,4307292.0989999995],[361883.94180000015,4307291.7182],[361884.42279999983,4307291.2007999998],[361884.9040000001,4307290.6833999995],[361885.14329999965,4307290.3384000007],[361885.18829999957,4307290.2737000007],[361885.59420000017,4307289.3871999998],[361885.63200000022,4307289.3046000004],[361885.65170000028,4307289.2617000006],[361885.8256000001,4307288.8817999996],[361886.20519999973,4307287.7370999996],[361886.24959999975,4307287.6030000001],[361886.2648,4307287.5572999995],[361886.29239999969,4307287.4739999995],[361886.30559999961,4307287.4341000002],[361886.59219999984,4307285.9374000002],[361886.6484000003,4307284.9616],[361886.65160000045,4307284.9068],[361886.65510000009,4307284.8461000007],[361886.67989999987,4307284.4153000005],[361886.63190000039,4307283.7628000006],[361886.62650000025,4307283.6884000003],[361886.56819999963,4307282.8945000004],[361887.10649999976,4307284.1225000005],[361887.80939999968,4307286.2289000005],[361888.79399999976,4307290.9780999999],[361889.03100000042,4307291.5250000004],[361889.78600000031,4307296.9069999997],[361889.85699999984,4307297.8081],[361889.95550000016,4307299.0629999992],[361890.06950000022,4307302.3350000009],[361889.88150000013,4307307.6775000002],[361889.87849999964,4307307.7670000009],[361889.48849999998,4307312.1940000001],[361889.23400000017,4307313.0940000005],[361889.21499999985,4307313.1614999995],[361887.21389999986,4307312.8576999996],[361884.96740000043,4307312.6271000002],[361883.96810000017,4307312.5741000008],[361883.82459999993,4307312.5664000008],[361883.44010000024,4307312.5460000001],[361883.10950000025,4307312.5285999998],[361882.69790000003,4307312.5066999998],[361882.55109999981,4307312.5057999995],[361882.44369999971,4307312.5053000003],[361880.37210000027,4307312.4959999993],[361879.07270000037,4307312.4759],[361878.72520000022,4307312.4707999993],[361878.67760000005,4307312.4700000007],[361878.37949999981,4307312.4655000009],[361878.0390999997,4307312.4605],[361877.12339999992,4307312.4467999991],[361874.0876000002,4307312.1867999993],[361873.82110000029,4307312.1640000008],[361871.51539999992,4307311.7985999994],[361871.43709999975,4307311.7862],[361871.2966,4307311.7639000006],[361871.12490000017,4307311.7368999999],[361870.5307,4307311.6426999997],[361867.29220000003,4307310.8896999992],[361865.61699999962,4307310.3712000009],[361865.55730000045,4307310.3527000006],[361865.43850000016,4307310.3159999996],[361864.1166000003,4307309.9068],[361861.04050000012,4307308.7126000002],[361860.32689999975,4307308.3928999994],[361860.2873999998,4307308.3751999997],[361860.21910000034,4307308.3445999995],[361859.39250000007,4307307.9734000005],[361854.93169999961,4307306.0102999993],[361850.55179999955,4307304.1899999995],[361847.01150000002,4307302.7186999992],[361838.2790000001,4307299.7934000008],[361834.28679999989,4307298.6799999997],[361832.31039999984,4307298.1287999991],[361831.42679999955,4307297.9120000005],[361830.89020000026,4307297.7804000005],[361830.66119999997,4307297.7240999993],[361829.89570000023,4307297.5362999998],[361829.80769999977,4307297.5147999991],[361829.74039999954,4307297.4982999992],[361829.32589999959,4307297.3967000004],[361828.3443,4307297.1560999993],[361827.85699999984,4307297.0366999991],[361827.20079999976,4307296.8759000003],[361826.89049999975,4307296.8000000007],[361826.74220000021,4307296.7635999992],[361826.56060000043,4307296.7190000005],[361818.74990000017,4307292.8598999996],[361809.65230000019,4307290.648],[361809.10929999966,4307290.5162000004],[361802.57479999959,4307288.9275000002],[361796.0401999997,4307287.3388999999],[361791.98550000042,4307287.0625999998],[361787.66210000031,4307286.7684000004],[361787.16839999985,4307286.7346999999],[361784.84059999976,4307286.5760999992],[361777.4944000002,4307284.8420000002],[361775.5569000002,4307284.3846000005],[361772.86629999988,4307283.7492999993],[361772.69469999988,4307283.6711999997],[361768.05279999971,4307281.5549999997],[361763.41089999955,4307279.4388999995],[361763.03440000024,4307279.3405000009],[361761.69359999988,4307278.9898000006],[361758.76250000019,4307278.2771000005],[361754.37849999964,4307277.2113000005],[361753.80790000036,4307277.0725999996],[361753.74110000022,4307277.0562999994],[361753.69610000029,4307277.0452999994],[361753.65380000044,4307277.0351],[361753.51919999998,4307277.0022999998],[361753.47039999999,4307276.9903999995],[361753.05119999964,4307276.8884999994],[361752.83150000032,4307276.8352000006],[361752.13960000034,4307276.6668999996],[361748.8814000003,4307275.8747000005],[361744.93120000046,4307274.9143000003],[361721.36440000031,4307269.1849000007],[361721.56840000022,4307268.6192000005],[361721.64529999997,4307268.4057999998],[361714.39690000005,4307266.4050999992],[361714.25219999999,4307266.3651000001],[361714.17980000004,4307266.3037],[361714.13360000029,4307266.2645999994],[361714.07510000002,4307266.2149],[361714.0290000001,4307266.1758999992],[361713.98290000018,4307266.1367000006],[361713.94070000015,4307266.1009],[361713.59049999993,4307265.8004999999],[361706.07050000038,4307259.4309999999],[361703.5717000002,4307257.3150999993],[361697.19039999973,4307251.9115999993],[361696.53050000034,4307251.3515000008],[361690.80510000046,4307247.0684999991]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855677,"SIGPAC_FOGAIBA.DN_OID":1746640396,"SIGPAC_FOGAIBA.DN_SURFACE":3125.4257698186229,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":9018,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":32,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"CA","COD_USOS_SIGPAC.Descripción":"VIALES","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00209018R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855678,"geometry":{"type":"Polygon","coordinates":[[[361721.36440000031,4307269.1849000007],[361744.93120000046,4307274.9143000003],[361748.8814000003,4307275.8747000005],[361752.13960000034,4307276.6668999996],[361752.83150000032,4307276.8352000006],[361753.05119999964,4307276.8884999994],[361753.47039999999,4307276.9903999995],[361753.51919999998,4307277.0022999998],[361753.65380000044,4307277.0351],[361753.69610000029,4307277.0452999994],[361753.74110000022,4307277.0562999994],[361753.80790000036,4307277.0725999996],[361754.37849999964,4307277.2113000005],[361758.76250000019,4307278.2771000005],[361761.69359999988,4307278.9898000006],[361763.03440000024,4307279.3405000009],[361763.41089999955,4307279.4388999995],[361768.05279999971,4307281.5549999997],[361772.69469999988,4307283.6711999997],[361772.86629999988,4307283.7492999993],[361775.5569000002,4307284.3846000005],[361777.4944000002,4307284.8420000002],[361784.84059999976,4307286.5760999992],[361790.63559999969,4307287.4564999994],[361789.75239999965,4307298.9170999993],[361804.10340000037,4307302.5650999993],[361804.95710000023,4307300.6520000007],[361806.80480000004,4307301.9595999997],[361806.12160000019,4307305.7214000002],[361809.51860000007,4307307.3585999999],[361796.11390000023,4307302.7274999991],[361781.6668999996,4307297.7361999992],[361755.16179999989,4307289.2555999998],[361740.3189000003,4307283.2491999995],[361734.62569999974,4307280.1744999997],[361720.2098000003,4307272.3892999999],[361720.22350000031,4307272.3509999998],[361720.69369999971,4307271.0459000003],[361721.09269999992,4307269.9386],[361721.15739999991,4307269.7592999991],[361721.36440000031,4307269.1849000007]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855678,"SIGPAC_FOGAIBA.DN_OID":1241848336,"SIGPAC_FOGAIBA.DN_SURFACE":749.84018001334084,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":47,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":34,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,195,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200047R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855679,"geometry":{"type":"Polygon","coordinates":[[[361784.84059999976,4307286.5760999992],[361787.16839999985,4307286.7346999999],[361787.66210000031,4307286.7684000004],[361791.98550000042,4307287.0625999998],[361796.0401999997,4307287.3388999999],[361802.57479999959,4307288.9275000002],[361809.10929999966,4307290.5162000004],[361809.65230000019,4307290.648],[361818.74990000017,4307292.8598999996],[361826.56060000043,4307296.7190000005],[361826.74220000021,4307296.7635999992],[361826.89049999975,4307296.8000000007],[361827.20079999976,4307296.8759000003],[361827.85699999984,4307297.0366999991],[361828.3443,4307297.1560999993],[361829.32589999959,4307297.3967000004],[361829.74039999954,4307297.4982999992],[361829.80769999977,4307297.5147999991],[361829.89570000023,4307297.5362999998],[361830.66119999997,4307297.7240999993],[361830.89020000026,4307297.7804000005],[361831.42679999955,4307297.9120000005],[361822.36930000037,4307314.3143000007],[361812.20500000007,4307307.6714999992],[361810.8395999996,4307307.8853999991],[361810.61010000017,4307307.7357000001],[361809.51860000007,4307307.3585999999],[361806.12160000019,4307305.7214000002],[361806.80480000004,4307301.9595999997],[361804.95710000023,4307300.6520000007],[361804.10340000037,4307302.5650999993],[361789.75239999965,4307298.9170999993],[361790.63559999969,4307287.4564999994],[361784.84059999976,4307286.5760999992]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855679,"SIGPAC_FOGAIBA.DN_OID":1241848337,"SIGPAC_FOGAIBA.DN_SURFACE":577.22113491889888,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":47,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":42,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200047R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855680,"geometry":{"type":"Polygon","coordinates":[[[361757.78830000013,4307323.6353999991],[361785.05850000028,4307331.1530000009],[361784.81799999997,4307332.0464999992],[361783.92650000006,4307335.9690000005],[361783.88449999969,4307337.6786000002],[361783.75999999978,4307337.7072000001],[361769.90259999968,4307340.6842999998],[361768.2229000004,4307341.0450999998],[361753.96380000003,4307344.1084000003],[361753.95040000044,4307339.3915999997],[361759.14080000017,4307339.3767000008],[361757.78830000013,4307323.6353999991]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855680,"SIGPAC_FOGAIBA.DN_OID":1303109995,"SIGPAC_FOGAIBA.DN_SURFACE":354.76114039922237,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":171,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":37,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200171R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855681,"geometry":{"type":"Polygon","coordinates":[[[361713.94070000015,4307266.1009],[361713.98290000018,4307266.1367000006],[361714.0290000001,4307266.1758999992],[361714.07510000002,4307266.2149],[361714.13360000029,4307266.2645999994],[361714.17980000004,4307266.3037],[361714.25219999999,4307266.3651000001],[361714.39690000005,4307266.4050999992],[361721.64529999997,4307268.4057999998],[361721.56840000022,4307268.6192000005],[361721.36440000031,4307269.1849000007],[361721.15739999991,4307269.7592999991],[361721.09269999992,4307269.9386],[361720.69369999971,4307271.0459000003],[361720.22350000031,4307272.3509999998],[361720.2098000003,4307272.3892999999],[361719.99600000028,4307272.9824999999],[361719.58040000033,4307274.1355000008],[361719.50289999973,4307274.3506000005],[361719.47410000023,4307274.4302999992],[361719.44720000029,4307274.5051000006],[361717.20399999991,4307280.7284999993],[361707.66150000039,4307307.2060000002],[361708.48029999994,4307309.5174000002],[361707.78330000024,4307309.2832999993],[361707.27219999954,4307309.1116000004],[361707.00700000022,4307309.0225000009],[361701.95249999966,4307307.3249999993],[361701.54700000025,4307307.1889999993],[361713.56300000008,4307267.6579999998],[361713.65510000009,4307267.3544999994],[361713.94070000015,4307266.1009]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855681,"SIGPAC_FOGAIBA.DN_OID":1303109996,"SIGPAC_FOGAIBA.DN_SURFACE":295.80217192255856,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":9000,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":42,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"CA","COD_USOS_SIGPAC.Descripción":"VIALES","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00209000R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855682,"geometry":{"type":"Polygon","coordinates":[[[361723.47240000032,4307204.9141000006],[361728.55740000028,4307206.7326999996],[361733.1138000004,4307212.8314999994],[361737.93859999999,4307215.1478000004],[361751.85340000037,4307219.6314000003],[361759.01489999983,4307222.9398999996],[361754.97869999986,4307239.5452999994],[361751.77500000037,4307243.0348000005],[361750.54710000008,4307245.5872000009],[361749.37669999991,4307250.1764000002],[361748.64489999972,4307260.3128999993],[361752.05800000019,4307262.2201000005],[361750.69130000006,4307261.8823000006],[361717.91999999993,4307253.7760000005],[361714.96480000019,4307253.0448000003],[361714.81940000039,4307253.0088999998],[361710.10049999971,4307251.8413999993],[361709.73730000015,4307251.7515999991],[361709.66079999972,4307251.7325999998],[361708.96499999985,4307251.5604999997],[361709.04989999998,4307251.2402999997],[361711.93180000037,4307251.8640000001],[361723.47240000032,4307204.9141000006]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855682,"SIGPAC_FOGAIBA.DN_OID":1370681345,"SIGPAC_FOGAIBA.DN_SURFACE":1635.0892592439698,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":195,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":41,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200195R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855683,"geometry":{"type":"Polygon","coordinates":[[[361727.17320000008,4307182.9056000002],[361754.61120000016,4307197.8975000009],[361768.27699999977,4307205.3644999992],[361753.25650000013,4307262.4209000003],[361753.19450000022,4307262.4079999998],[361753.16610000003,4307262.4941000007],[361752.05800000019,4307262.2201000005],[361748.64489999972,4307260.3128999993],[361749.37669999991,4307250.1764000002],[361750.54710000008,4307245.5872000009],[361751.77500000037,4307243.0348000005],[361754.97869999986,4307239.5452999994],[361759.01489999983,4307222.9398999996],[361751.85340000037,4307219.6314000003],[361737.93859999999,4307215.1478000004],[361733.1138000004,4307212.8314999994],[361728.55740000028,4307206.7326999996],[361723.47240000032,4307204.9141000006],[361711.93180000037,4307251.8640000001],[361709.04989999998,4307251.2402999997],[361727.17320000008,4307182.9056000002]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855683,"SIGPAC_FOGAIBA.DN_OID":1370681346,"SIGPAC_FOGAIBA.DN_SURFACE":1327.614690965004,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":195,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":45,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200195R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855684,"geometry":{"type":"Polygon","coordinates":[[[361768.27699999977,4307205.3644999992],[361769.16100000031,4307205.8475000001],[361789.87100000028,4307216.7410000004],[361800.85199999996,4307222.5130000003],[361801.96559999976,4307223.0986000001],[361803.68099999987,4307224.0004999992],[361828.54090000037,4307237.2194999997],[361828.89240000024,4307237.4138999991],[361829.11870000046,4307237.5392000005],[361844.17219999991,4307245.8693000004],[361840.7106999997,4307260.0245999992],[361839.61809999961,4307259.8674999997],[361834.48589999974,4307269.0946999993],[361821.71729999967,4307269.8761],[361822.96079999954,4307278.9864000008],[361822.88159999996,4307278.9664999992],[361822.66830000002,4307278.9126999993],[361822.24770000018,4307278.8070999999],[361822.16629999969,4307278.7865999993],[361822.09350000042,4307278.7683000006],[361821.96619999968,4307278.7364000008],[361821.92080000043,4307278.7249999996],[361821.87399999984,4307278.7130999994],[361821.28210000042,4307278.5643000007],[361811.69629999995,4307276.1538999993],[361811.59059999976,4307276.1274999995],[361802.85680000018,4307273.9313999992],[361799.63080000039,4307272.4387999997],[361799.14099999983,4307272.2120999992],[361790.86770000029,4307268.3838999998],[361775.32870000042,4307264.1370000001],[361773.07239999995,4307264.2994999997],[361767.91760000028,4307264.6703999992],[361765.45889999997,4307264.8474000003],[361764.74139999971,4307264.8990000002],[361753.25650000013,4307262.4209000003],[361768.27699999977,4307205.3644999992]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855684,"SIGPAC_FOGAIBA.DN_OID":1370681347,"SIGPAC_FOGAIBA.DN_SURFACE":3768.8267560467693,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":196,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":58,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200196R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855685,"geometry":{"type":"Polygon","coordinates":[[[361712.87330000009,4307311.6490000002],[361715.69579999987,4307312.3739999998],[361725.49179999996,4307314.6918000001],[361757.78830000013,4307323.6353999991],[361759.14080000017,4307339.3767000008],[361753.95040000044,4307339.3915999997],[361753.96380000003,4307344.1084000003],[361753.22910000011,4307344.2662000004],[361750.40660000034,4307344.8727000002],[361747.1425999999,4307345.5738999993],[361745.82660000026,4307345.8566999994],[361745.58849999961,4307345.9078000002],[361745.45559999999,4307345.9363000002],[361745.37480000034,4307345.9537000004],[361745.3200000003,4307345.9653999992],[361743.65319999959,4307346.3234999999],[361741.75459999964,4307346.7313999999],[361741.05999999959,4307346.8805999998],[361740.64709999971,4307346.9693],[361736.42690000031,4307347.8760000002],[361729.04069999978,4307349.3723000009],[361728.96229999978,4307349.3882999998],[361728.36710000038,4307349.5088],[361728.29360000044,4307349.5237000007],[361727.62980000023,4307349.6580999997],[361726.26020000037,4307349.8384000007],[361726.01229999959,4307349.8574999999],[361725.94600000046,4307349.8625000007],[361725.72449999955,4307349.8794999998],[361721.23709999956,4307340.8035000004],[361720.33660000004,4307338.6327999998],[361709.77049999963,4307313.1594999991],[361709.4589999998,4307312.2803000007],[361712.87330000009,4307311.6490000002]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855685,"SIGPAC_FOGAIBA.DN_OID":1303109994,"SIGPAC_FOGAIBA.DN_SURFACE":1182.2405449633011,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":49,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":40,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200049R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855686,"geometry":{"type":"Polygon","coordinates":[[[361815.09250000026,4307336.6375999991],[361814.95309999958,4307337.3522999994],[361810.22030000016,4307361.6283],[361791.38289999962,4307358.7910999991],[361788.81460000016,4307370.3090000004],[361771.25019999966,4307368.5601000004],[361768.21690000035,4307368.2580999993],[361766.72790000029,4307348.9546000008],[361766.56089999992,4307346.7898999993],[361776.65799999982,4307344.3063999992],[361785.56020000018,4307342.1170000006],[361809.82569999993,4307337.6148000006],[361815.09250000026,4307336.6375999991]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855686,"SIGPAC_FOGAIBA.DN_OID":1241848414,"SIGPAC_FOGAIBA.DN_SURFACE":1054.2197604593166,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":50,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":45,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200050R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855687,"geometry":{"type":"Polygon","coordinates":[[[361817.08829999994,4307336.2670000009],[361816.9693,4307336.8610999994],[361812.82320000045,4307357.5453999992],[361810.65020000003,4307368.3864999991],[361810.15500000026,4307376.4197000004],[361809.73649999965,4307377.7752999999],[361809.70289999992,4307377.8840999994],[361809.68939999957,4307377.9280999992],[361807.82050000038,4307383.9849999994],[361807.74980000034,4307384.2117999997],[361805.71380000003,4307384.0905000009],[361795.85840000026,4307383.5032000002],[361772.61010000017,4307382.1173999999],[361772.4299999997,4307382.1064999998],[361769.26970000006,4307381.9169999994],[361768.21690000035,4307368.2580999993],[361771.25019999966,4307368.5601000004],[361788.81460000016,4307370.3090000004],[361791.38289999962,4307358.7910999991],[361810.22030000016,4307361.6283],[361814.95309999958,4307337.3522999994],[361815.09250000026,4307336.6375999991],[361815.6381000001,4307336.5362],[361816.85929999966,4307336.3092999998],[361817.08829999994,4307336.2670000009]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855687,"SIGPAC_FOGAIBA.DN_OID":1241848411,"SIGPAC_FOGAIBA.DN_SURFACE":802.12104387389968,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":149,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":45,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200149R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855688,"geometry":{"type":"Polygon","coordinates":[[[361740.89859999996,4307353.1007000003],[361740.96360000037,4307353.6205000002],[361740.92410000041,4307353.6278000008],[361742.05250000022,4307367.0351],[361743.77670000028,4307369.1730000004],[361743.96150000021,4307379.3400999997],[361731.54360000044,4307378.5430999994],[361731.71380000003,4307379.6300000008],[361730.19060000032,4307379.5373],[361730.17019999959,4307379.4054000005],[361730.12999999989,4307379.1374999993],[361728.92690000031,4307369.9629999995],[361728.85690000001,4307369.4289999995],[361727.67090000026,4307360.3776999991],[361727.69409999996,4307359.9411999993],[361727.69799999986,4307359.8691000007],[361727.71530000027,4307359.5491000004],[361727.8200000003,4307357.6375999991],[361728.10240000021,4307357.1469000001],[361728.14020000026,4307357.0811000001],[361728.1651999997,4307357.0379000008],[361728.5103000002,4307356.4379999992],[361729.31419999991,4307356.0557000004],[361729.51979999989,4307355.9580000006],[361729.71169999987,4307355.9000000004],[361730.5800999999,4307355.6378000006],[361732.08800000045,4307355.2672000006],[361732.42310000025,4307355.1849000007],[361732.75910000037,4307355.1022999994],[361740.89859999996,4307353.1007000003]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855688,"SIGPAC_FOGAIBA.DN_OID":1241848420,"SIGPAC_FOGAIBA.DN_SURFACE":338.75241768749731,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":51,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":47,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200051R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855689,"geometry":{"type":"Polygon","coordinates":[[[361766.56089999992,4307346.7898999993],[361766.72790000029,4307348.9546000008],[361768.21690000035,4307368.2580999993],[361769.26970000006,4307381.9169999994],[361731.71380000003,4307379.6300000008],[361731.54360000044,4307378.5430999994],[361743.96150000021,4307379.3400999997],[361743.77670000028,4307369.1730000004],[361742.05250000022,4307367.0351],[361740.92410000041,4307353.6278000008],[361740.96360000037,4307353.6205000002],[361740.89859999996,4307353.1007000003],[361766.56089999992,4307346.7898999993]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855689,"SIGPAC_FOGAIBA.DN_OID":1241848419,"SIGPAC_FOGAIBA.DN_SURFACE":811.24940781065493,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":51,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":41,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"12,195,199","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200051R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855690,"geometry":{"type":"Polygon","coordinates":[[[361730.19060000032,4307379.5373],[361731.71380000003,4307379.6300000008],[361732.21490000002,4307382.8395000007],[361733.36600000039,4307390.0493000001],[361735.77919999976,4307407.9098000005],[361737.35620000027,4307417.8571000006],[361739.8777999999,4307436.0972000007],[361741.26709999982,4307444.8754999992],[361743.83239999972,4307446.0495999996],[361749.02749999985,4307442.9344999995],[361757.12019999977,4307437.5451999996],[361755.31879999954,4307433.8917999994],[361755.87880000006,4307431.4068999998],[361765.34449999966,4307422.1970000006],[361771.13449999969,4307426.5064000003],[361762.0251000002,4307433.6349999998],[361760.68659999967,4307431.9277999997],[361757.81159999967,4307434.2482999992],[361758.9430999998,4307436.1733999997],[361768.16810000036,4307444.4144000001],[361771.78330000024,4307443.6720000003],[361774.14570000023,4307444.0587000009],[361775.43969999999,4307445.2923000008],[361776.05190000031,4307447.4589000009],[361775.6827999996,4307450.4708999991],[361781.56869999971,4307453.6062000003],[361778.87750000041,4307456.4633000009],[361773.45720000006,4307453.3477999996],[361768.21970000025,4307451.5318999998],[361763.58040000033,4307456.9167999998],[361759.68479999993,4307452.8347999994],[361752.26009999961,4307456.5098000001],[361750.84819999989,4307454.7665999997],[361748.35790000018,4307456.2151999995],[361745.95120000001,4307452.0514000002],[361741.8646999998,4307453.2767999992],[361743.71779999975,4307465.7128999997],[361747.62160000019,4307490.2469999995],[361749.9478000002,4307507.8134000003],[361748.60960000008,4307504.3842999991],[361748.59669999965,4307504.2818999998],[361748.58469999954,4307504.1868999992],[361748.40759999957,4307502.7783000004],[361748.30840000045,4307501.9893999994],[361748.29349999968,4307501.8743999992],[361748.2695000004,4307501.6840000004],[361747.99959999975,4307500.1239999998],[361746.53949999996,4307490.2740000002],[361743.47950000037,4307469.5350000001],[361740.16050000023,4307447.0584999993],[361730.67279999983,4307382.8013000004],[361730.19060000032,4307379.5373]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855690,"SIGPAC_FOGAIBA.DN_OID":1241848358,"SIGPAC_FOGAIBA.DN_SURFACE":678.68695880662335,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":52,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":56,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200052R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855691,"geometry":{"type":"Polygon","coordinates":[[[361731.71380000003,4307379.6300000008],[361769.26970000006,4307381.9169999994],[361772.4299999997,4307382.1064999998],[361772.61010000017,4307382.1173999999],[361795.85840000026,4307383.5032000002],[361805.71380000003,4307384.0905000009],[361807.74980000034,4307384.2117999997],[361819.71980000008,4307384.9256999996],[361836.84109999985,4307386.8011000007],[361839.68969999999,4307387.1130999997],[361839.84609999973,4307387.1302000005],[361841.23849999998,4307387.2828000002],[361841.63360000029,4307387.3259999994],[361841.93840000033,4307387.3593000006],[361842.13379999995,4307387.3807999995],[361842.19809999969,4307387.3878000006],[361842.28239999991,4307387.3969999999],[361842.39510000031,4307387.4092999995],[361843.33669999987,4307387.5124999993],[361843.46119999979,4307387.5261000004],[361843.50549999997,4307387.5309999995],[361843.60580000002,4307387.5419999994],[361843.78249999974,4307387.5614],[361844.00090000033,4307387.5853000004],[361844.14080000017,4307387.6006000005],[361844.35680000018,4307387.6242999993],[361844.47879999969,4307387.6375999991],[361844.54629999958,4307387.6448999997],[361844.60039999988,4307387.6509000007],[361844.65539999958,4307387.6568999998],[361844.84109999985,4307387.6772000007],[361844.94259999972,4307387.6884000003],[361845.10759999976,4307387.7063999996],[361845.19049999956,4307387.7155000009],[361845.25299999956,4307387.7224000003],[361845.3328999998,4307387.7312000003],[361845.73010000028,4307387.7747000009],[361846.02170000039,4307387.8067000005],[361858.05999999959,4307389.1250999998],[361848.71549999993,4307408.4780000001],[361823.04949999973,4307461.6333000008],[361822.91610000003,4307461.9092999995],[361816.17960000038,4307475.8531999998],[361814.52969999984,4307479.5035999995],[361805.99419999961,4307498.3559000008],[361805.93090000004,4307498.4955000002],[361805.89510000031,4307498.5747999996],[361805.66949999984,4307499.0731000006],[361805.15990000032,4307500.1991000008],[361799.84900000039,4307511.9328000005],[361793.89940000046,4307525.0823999997],[361792.09570000041,4307529.3303999994],[361791.78450000007,4307529.0875000004],[361791.46889999975,4307528.8411999997],[361790.77819999959,4307528.3019999992],[361790.71040000021,4307528.2544],[361790.60429999977,4307528.1798],[361790.56599999964,4307528.1527999993],[361790.5214999998,4307528.1214000005],[361789.86909999978,4307527.6623999998],[361787.8273,4307526.2394999992],[361787.57679999992,4307526.0648999996],[361787.35890000034,4307525.9131000005],[361787.31859999988,4307525.8848999999],[361787.19400000013,4307525.7981000002],[361785.90369999968,4307524.8986000009],[361783.56350000016,4307523.1849000007],[361783.46690000035,4307523.1140999999],[361783.11820000038,4307522.8587999996],[361778.77950000018,4307519.6809],[361753.13860000018,4307510.7689999994],[361752.95870000031,4307510.7063999996],[361750.40649999958,4307508.9887000006],[361749.9478000002,4307507.8134000003],[361747.62160000019,4307490.2469999995],[361743.71779999975,4307465.7128999997],[361741.8646999998,4307453.2767999992],[361745.95120000001,4307452.0514000002],[361748.35790000018,4307456.2151999995],[361750.84819999989,4307454.7665999997],[361752.26009999961,4307456.5098000001],[361759.68479999993,4307452.8347999994],[361763.58040000033,4307456.9167999998],[361768.21970000025,4307451.5318999998],[361773.45720000006,4307453.3477999996],[361778.87750000041,4307456.4633000009],[361781.56869999971,4307453.6062000003],[361775.6827999996,4307450.4708999991],[361776.05190000031,4307447.4589000009],[361775.43969999999,4307445.2923000008],[361774.14570000023,4307444.0587000009],[361771.78330000024,4307443.6720000003],[361768.16810000036,4307444.4144000001],[361758.9430999998,4307436.1733999997],[361757.81159999967,4307434.2482999992],[361760.68659999967,4307431.9277999997],[361762.0251000002,4307433.6349999998],[361771.13449999969,4307426.5064000003],[361765.34449999966,4307422.1970000006],[361755.87880000006,4307431.4068999998],[361755.31879999954,4307433.8917999994],[361757.12019999977,4307437.5451999996],[361749.02749999985,4307442.9344999995],[361743.83239999972,4307446.0495999996],[361741.26709999982,4307444.8754999992],[361739.8777999999,4307436.0972000007],[361737.35620000027,4307417.8571000006],[361735.77919999976,4307407.9098000005],[361733.36600000039,4307390.0493000001],[361732.21490000002,4307382.8395000007],[361731.71380000003,4307379.6300000008]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855691,"SIGPAC_FOGAIBA.DN_OID":440278757,"SIGPAC_FOGAIBA.DN_SURFACE":11113.288604188829,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":52,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":49,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,12,199,231","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200052R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855692,"geometry":{"type":"Polygon","coordinates":[[[361782.07689999975,4307528.0588000007],[361812.91210000031,4307548.4480000008],[361817.90730000008,4307553.2718000002],[361818.8387000002,4307554.1710999999],[361826.89080000017,4307561.9461000003],[361839.25930000003,4307573.8889000006],[361847.60419999994,4307586.9123999998],[361851.58849999961,4307593.1300000008],[361851.19909999985,4307593.4329000004],[361851.14070000034,4307593.4781999998],[361850.7611999996,4307593.7732999995],[361850.68769999966,4307593.8306000009],[361850.21850000042,4307594.1896000002],[361846.71630000044,4307596.8693000004],[361845.11000000034,4307598.0972000007],[361843.1370000001,4307599.6111999992],[361835.09080000035,4307605.7872000001],[361829.75310000032,4307609.8896999992],[361829.39039999992,4307610.1684000008],[361828.4598000003,4307610.8811000008],[361828.18300000019,4307611.0930000003],[361826.49579999968,4307612.3910000008],[361826.01559999958,4307612.7601999994],[361825.20990000013,4307613.3794],[361822.9841,4307615.0943],[361822.85109999962,4307615.1981000006],[361822.68640000001,4307615.3258999996],[361820.50169999991,4307616.9945999999],[361820.17169999983,4307617.2465000004],[361805.05869999994,4307628.3264000006],[361805.01669999957,4307628.3574999999],[361804.92009999976,4307628.4284000006],[361804.60470000003,4307628.0589000005],[361804.32510000002,4307627.7287000008],[361803.86840000004,4307627.1889999993],[361802.11290000007,4307625.1111999992],[361801.82550000027,4307624.7711999994],[361801.7368999999,4307624.6664000005],[361801.69299999997,4307624.6142999995],[361801.63870000001,4307624.5501000006],[361801.4841,4307624.3671000004],[361796.95469999965,4307619.0048999991],[361795.56780000031,4307617.3651000001],[361794.82849999983,4307616.4901999999],[361794.72279999964,4307616.3204999994],[361792.82349999994,4307613.2699999996],[361792.34210000001,4307612.4968999997],[361791.80929999985,4307611.6403000001],[361791.22219999973,4307610.6958000008],[361791.11930000037,4307610.5299999993],[361790.95029999968,4307610.2547999993],[361790.92860000022,4307610.2194999997],[361790.80240000039,4307610.0171000008],[361790.7631000001,4307609.9540999997],[361790.3189000003,4307609.2412999999],[361790.20160000026,4307609.0539999995],[361789.86890000012,4307608.5206000004],[361764.37609999999,4307567.5309999995],[361781.7424999997,4307546.4293000009],[361776.0728000002,4307541.5130000003],[361781.91509999987,4307528.4119000006],[361782.07689999975,4307528.0588000007]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855692,"SIGPAC_FOGAIBA.DN_OID":1241848421,"SIGPAC_FOGAIBA.DN_SURFACE":4446.0746102550156,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":53,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":43,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,199,117","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200053R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855693,"geometry":{"type":"Polygon","coordinates":[[[362070.56620000023,4307908.7774999999],[362071.94450000022,4307911.4269999992],[362073.08949999977,4307913.3184999991],[362074.23300000001,4307915.0859999992],[362076.65899999999,4307918.8364000004],[362082.59250000026,4307916.2355000004],[362082.89800000004,4307915.9605],[362083.69350000005,4307915.4364999998],[362084.58150000032,4307915.0899999999],[362085.52199999988,4307914.9364999998],[362085.9785000002,4307914.9334999993],[362086.47350000031,4307914.9824999999],[362087.32249999978,4307915.1710000001],[362087.62949999981,4307915.2394999992],[362088.72549999971,4307915.6870000008],[362089.62550000008,4307916.2355000004],[362089.73110000044,4307916.3129999992],[362090.61649999954,4307917.0989999995],[362092.16150000039,4307918.6568999998],[362093.55850000028,4307920.3489999995],[362094.79499999993,4307922.1614999995],[362094.83449999988,4307922.2255000006],[362095.86149999965,4307924.0789999999],[362096.74949999992,4307926.0855],[362097.31159999967,4307928.0583999995],[362098.14879999962,4307929.6620000005],[362107.61849999987,4307962.9564999994],[362120.13949999958,4308001.9719999991],[362123.22549999971,4308012.0549999997],[362126.54399999976,4308022.0105000008],[362141.87999999989,4308059.8574999999],[362147.53450000007,4308072.7740000002],[362171.40450000018,4308127.3010000009],[362194.1091,4308176.6789999995],[362221.03299999982,4308235.0755000003],[362219.13599999994,4308235.9525000006],[362210.92410000041,4308239.7476000004],[362208.93400000036,4308240.6675000004],[362207.89690000005,4308241.1455000006],[362201.8459999999,4308243.9344999995],[362201.25399999972,4308244.2074999996],[362200.45399999991,4308244.5776000004],[362199.59399999958,4308244.9774999991],[362190.71439999994,4308249.0969999991],[362185.06400000025,4308251.7180000003],[362178.2686999999,4308254.8631999996],[362168.71399999969,4308259.2881000005],[362159.94400000013,4308263.3579999991],[362159.74399999995,4308263.4580000006],[362158.62949999981,4308263.9715],[362155.9040000001,4308265.2280999999],[362153.75399999972,4308266.2180000003],[362153.61400000006,4308266.2880000006],[362146.69900000002,4308269.5130000003],[362145.28749999963,4308270.1319999993],[362144.48809999973,4308270.4730999991],[362144.08849999961,4308270.6435000002],[362137.79349999968,4308273.3279999997],[362137.65089999977,4308273.3955000006],[362105.23350000009,4308288.6778999995],[362106.7034,4308290.6678999998],[362116.14800000004,4308303.9839999992],[362139.08999999985,4308336.0709000006],[362141.5438000001,4308339.5029000007],[362141.72589999996,4308339.7575000003],[362141.89749999996,4308339.9975000005],[362142.58650000021,4308340.9612000007],[362142.74010000005,4308341.1761000007],[362142.79169999994,4308341.2482999992],[362142.86689999979,4308341.3533999994],[362143.05599999987,4308341.6177999992],[362143.1305999998,4308341.7221000008],[362143.45689999964,4308342.1787],[362146.54590000026,4308346.4989],[362150.43300000019,4308351.9354999997],[362151.42349999957,4308353.3332000002],[362153.54920000024,4308356.3328000009],[362159.5279000001,4308364.7696000002],[362165.23759999964,4308372.8265000004],[362164.44299999997,4308373.2750000004],[362153.28450000007,4308379.5649999995],[362153.20150000043,4308379.9039999992],[362150.93300000019,4308380.9450000003],[362145.22300000023,4308384.1549999993],[362143.95299999975,4308384.1349999998],[362121.65299999993,4308394.3386000004],[362125.7949000001,4308397.4274000004],[362125.95999999996,4308397.5504000001],[362128.56369999982,4308399.4915999994],[362129.37719999999,4308400.0980999991],[362129.98000000045,4308400.5474999994],[362138.30250000022,4308410.2565000001],[362138.57330000028,4308410.5477000009],[362181.36990000028,4308456.5879999995],[362183.99349999987,4308459.4104999993],[362181.33150000032,4308461.2239999995],[362176.28000000026,4308465.6295999996],[362176.20999999996,4308465.6905000005],[362175.43900000025,4308466.0175000001],[362167.75239999965,4308469.2791000009],[362167.71239999961,4308469.2961999997],[362167.66299999971,4308469.3173999991],[362167.48080000002,4308469.3958000001],[362167.30080000032,4308469.4732000008],[362167.26400000043,4308469.4890000001],[362164.4450000003,4308470.7009999994],[362162.25100000016,4308471.6439999994],[362156.54200000037,4308474.0979999993],[362156.22620000038,4308474.2335000001],[362156.14699999988,4308474.2674000002],[362155.98000000045,4308474.3389999997],[362155.9375,4308474.3574999999],[362155.68599999975,4308474.4649],[362139.53000000026,4308481.4099000003],[362139.39300000016,4308481.4669000003],[362137.09210000001,4308482.4328000005],[362137.05370000005,4308482.4489999991],[362134.84300000034,4308483.3770000003],[362134.58509999979,4308483.4850999992],[362134.50210000016,4308483.5199999996],[362134.42949999962,4308483.5500000007],[362134.15350000001,4308483.6657999996],[362134.06390000042,4308483.7034000009],[362133.45000000019,4308483.9609999992],[362131.90799999982,4308484.6079999991],[362131.51499999966,4308484.7729000002],[362131.43690000009,4308484.8057000004],[362131.3814000003,4308484.8289000001],[362130.52909999993,4308485.1860000007],[362127.33100000024,4308486.5280000009],[362126.80700000003,4308486.7479999997],[362126.10610000044,4308487.0419999994],[362125.375,4308487.3489999995],[362124.73919999972,4308487.6158000007],[362124.65369999968,4308487.6516999993],[362124.33770000003,4308487.7842999995],[362124.24990000017,4308487.8211000003],[362124.18819999974,4308487.8471000008],[362123.45199999958,4308488.1559999995],[362123.38169999979,4308488.1854999997],[362123.28799999971,4308488.2249999996],[362122.29700000025,4308488.6409000009],[362121.50100000016,4308488.9749999996],[362120.13760000002,4308489.5465999991],[362120.08550000004,4308489.5684999991],[362120.03419999965,4308489.5899],[362119.95309999958,4308489.6239999998],[362119.89159999974,4308489.6498000007],[362119.81520000007,4308489.6819000002],[362118.17100000009,4308490.3719999995],[362118.11099999957,4308490.3969999999],[362118.03600000031,4308490.4279999994],[362117.08499999996,4308490.8269999996],[362116.47389999963,4308491.0837999992],[362116.42129999958,4308491.1059000008],[362116.15199999977,4308491.2190000005],[362116.0549999997,4308491.2589999996],[362115.2070000004,4308491.6151000001],[362113.98400000017,4308492.1281000003],[362113.93350000028,4308492.1494999994],[362113.3245000001,4308492.4049999993],[362113.16999999993,4308492.4701000005],[362112.79200000037,4308492.6339999996],[362112.33980000019,4308492.8308000006],[362111.99490000028,4308492.9810000006],[362111.55099999998,4308493.1741000004],[362111.07899999991,4308493.3790000007],[362110.83820000011,4308493.4835999999],[362110.78380000032,4308493.5072000008],[362110.33000000007,4308493.7039999999],[362110.02850000001,4308493.8355],[362109.80700000003,4308493.9319000002],[362109.00800000038,4308494.2789999992],[362108.56400000025,4308494.4719999991],[362107.71300000045,4308494.8419000003],[362107.66100000031,4308494.8640000001],[362107.54930000007,4308494.9129000008],[362107.50800000038,4308494.9310999997],[362107.3805999998,4308494.9861999992],[362107.33889999986,4308495.0043000001],[362106.65500000026,4308495.3010000009],[362105.93800000008,4308495.6129999999],[362105.67729999963,4308495.7267000005],[362105.55700000003,4308495.7788999993],[362105.38910000026,4308495.852],[362105.03699999955,4308496.0050000008],[362104.69830000028,4308496.1521000005],[362104.64749999996,4308496.1741000004],[362104.04899999965,4308496.4340000004],[362103.93699999992,4308496.4828999992],[362102.5131000001,4308497.102],[362102.19940000027,4308497.2381999996],[362102.12160000019,4308497.2719999999],[362102.05620000046,4308497.3004999999],[362102.00650000013,4308497.3221000005],[362101.94550000038,4308497.3486000001],[362101.40500000026,4308497.5830000006],[362101.15000000037,4308497.6941],[362100.71760000009,4308497.8822000008],[362100.24700000044,4308498.0869999994],[362099.70799999963,4308498.3210000005],[362099.02799999993,4308498.6169000007],[362098.54009999987,4308498.8286000006],[362098.1911000004,4308498.9800000004],[362097.92200000025,4308499.0969999991],[362097.40899999999,4308499.3200000003],[362096.28399999999,4308499.8090000004],[362095.95999999996,4308499.9499999993],[362095.43800000008,4308500.1760000009],[362094.16199999955,4308500.7290000003],[362094.10360000003,4308500.7545999996],[362093.79629999958,4308500.8878000006],[362093.73350000009,4308500.9151000008],[362093.68240000028,4308500.9372000005],[362093.62609999999,4308500.9616],[362092.8049999997,4308501.318],[362092.47460000031,4308501.4606999997],[362092.1660000002,4308501.5940000005],[362091.54810000025,4308501.8622999992],[362091.50779999979,4308501.8797999993],[362091.37600000016,4308501.9370000008],[362090.89120000042,4308502.1469999999],[362090.40199999977,4308502.3589999992],[362090.29220000003,4308502.4066000003],[362090.08899999969,4308502.4949999992],[362088.95100000035,4308502.9879999999],[362088.60199999996,4308503.1391000003],[362088.4570000004,4308503.2019999996],[362087.40079999994,4308503.6599000003],[362087.27280000038,4308503.7153999992],[362087.19649999961,4308503.7485000007],[362087.1185999997,4308503.7822999991],[362086.99039999954,4308503.8377999999],[362086.81699999981,4308503.9130000006],[362086.72780000046,4308503.9517000001],[362086.53679999989,4308504.0343999993],[362086.4868999999,4308504.0560999997],[362086.41949999984,4308504.0852000006],[362085.67899999954,4308504.4059999995],[362084.88999999966,4308504.7479999997],[362082.69799999986,4308505.6980000008],[362082.14140000008,4308505.9396000002],[362081.44699999969,4308506.2410000004],[362080.56190000009,4308506.6241999995],[362080.49980000034,4308506.6511000004],[362080.45920000039,4308506.6686000004],[362079.85099999979,4308506.932],[362078.45500000007,4308507.5370000005],[362075.28799999971,4308508.9100000001],[362074.90919999965,4308509.0743000004],[362074.84999999963,4308509.0999999996],[362074.61799999978,4308509.1998999994],[362072.88889999967,4308509.9499999993],[362072.82340000011,4308509.9783999994],[362072.61699999962,4308510.068],[362072.40950000007,4308510.1579999998],[362071.91999999993,4308510.3699999992],[362071.4879999999,4308510.5020000003],[362070.7285000002,4308510.7335000001],[362070.32299999986,4308510.8570000008],[362070.2182,4308510.8890000004],[362069.91299999971,4308510.9821000006],[362069.78880000021,4308511.0199999996],[362069.57909999974,4308511.0839000009],[362069.06070000026,4308511.2419000007],[362067.00409999955,4308511.8690000009],[362066.26009999961,4308512.0960000008],[362065.58789999969,4308512.3010000009],[362065.44010000024,4308512.3460000008],[362065.28299999982,4308512.3939999994],[362065.00989999995,4308512.4773999993],[362064.81799999997,4308512.5360000003],[362063.69000000041,4308512.8798999991],[362049.21250000037,4308517.1724999994],[362046.66249999963,4308518.2725000009],[362043.43250000011,4308519.6625999995],[362040.3125,4308521.0024999995],[362036.46250000037,4308522.6524999999],[362035.43250000011,4308523.1024999991],[362032.66249999963,4308524.2925000004],[362027.89250000007,4308526.3430000003],[362026.42250000034,4308526.9729999993],[362023.24239999987,4308528.3430000003],[362022.62249999959,4308528.6129999999],[362021.98259999976,4308528.8730999995],[362017.93240000028,4308530.523],[362015.71250000037,4308531.4330000002],[362012.14250000007,4308532.8929999992],[362009.63260000013,4308533.9130000006],[362006.07249999978,4308535.3729999997],[362002.57249999978,4308536.8029999994],[362000.30250000022,4308537.7329999991],[361996.73249999993,4308539.193],[361994.40249999985,4308540.1429999992],[361991.3125,4308541.4031000007],[361989.46250000037,4308542.1528999992],[361988.4924999997,4308542.5529999994],[361984.42250000034,4308544.2030999996],[361982.8825000003,4308544.8230000008],[361980.73249999993,4308545.693],[361978.21250000037,4308546.7129999995],[361975.3825000003,4308547.8629999999],[361973.89250000007,4308548.4628999997],[361973.46250000037,4308548.6429999992],[361969.65249999985,4308550.273],[361966.18250000011,4308551.7530000005],[361964.59449999966,4308552.4287],[361963.90240000002,4308552.7230999991],[361963.54009999987,4308552.8779000007],[361962.52249999996,4308553.3129999992],[361960.71250000037,4308554.0831000004],[361957.70249999966,4308555.3730999995],[361954.76250000019,4308556.6229999997],[361950.68250000011,4308558.3629999999],[361949.00250000041,4308559.0829000007],[361947.11249999981,4308559.8829999994],[361945.61249999981,4308560.523],[361943.10250000004,4308561.5930000003],[361939.08249999955,4308563.3129999992],[361938.05260000005,4308563.7531000003],[361936.84250000026,4308564.2631000001],[361927.69249999989,4308570.023],[361923.82249999978,4308572.4630999994],[361920.15259999968,4308574.7629000004],[361919.57249999978,4308575.1329999994],[361917.73249999993,4308576.2929999996],[361915.48249999993,4308577.7129999995],[361912.15249999985,4308579.8230000008],[361909.48249999993,4308581.5130000003],[361907.85240000021,4308582.5443999991],[361907.79289999977,4308582.5821000002],[361907.72620000038,4308582.6241999995],[361906.54239999969,4308583.3729999997],[361906.02249999996,4308583.7028999999],[361899.5625,4308589.4530999996],[361898.70249999966,4308590.2129999995],[361897.21250000037,4308591.5429999996],[361876.76250000019,4308603.3430000003],[361860.39250000007,4308612.7830999997],[361857.26250000019,4308614.5930000003],[361850.55250000022,4308618.4829999991],[361841.66249999963,4308623.6830000002],[361831.29250000045,4308629.7430000007],[361801.87249999959,4308646.9630999994],[361801.72250000015,4308647.0530999992],[361793.68460000027,4308651.7623999994],[361784.14250000007,4308657.3530000001],[361782.04250000045,4308658.5830000006],[361758.80510000046,4308672.3288000003],[361756.04250000045,4308673.9629999995],[361755.82249999978,4308673.6530000009],[361754.44209999964,4308671.6788999997],[361753.03249999974,4308669.6630000006],[361752.48819999956,4308668.8902000003],[361752.22250000015,4308668.5131000001],[361747.59250000026,4308661.9035],[361742.9824000001,4308655.3234999999],[361741.8825000003,4308653.7634999994],[361740.59250000026,4308651.9134999998],[361739.10259999987,4308649.7935000006],[361737.76250000019,4308647.8739999998],[361737.45249999966,4308647.4340000004],[361735.71250000037,4308644.9540999997],[361734.36249999981,4308643.0240000002],[361734.21250000037,4308642.8039999995],[361733.03249999974,4308641.1240999997],[361732.76250000019,4308640.7339999992],[361732.87249999959,4308640.8139999993],[361733.30250000022,4308641.0738999993],[361734.07739999983,4308641.5388999991],[361734.80250000022,4308641.8939999994],[361735.82249999978,4308642.1741000004],[361736.4924999997,4308642.2338999994],[361737.01250000019,4308642.2740000002],[361737.52249999996,4308642.2740000002],[361738.21250000037,4308642.1740000006],[361738.61249999981,4308642.0739999991],[361740.72250000015,4308641.2740000002],[361740.94249999989,4308641.1139000002],[361742.01250000019,4308640.3640000001],[361742.0549999997,4308640.3333999999],[361740.88009999972,4308638.7400000002],[361734.95449999999,4308630.7050999999],[361732.39269999973,4308627.2313999999],[361722.1640999997,4308613.3617000002],[361709.04970000032,4308595.5787000004],[361708.99000000022,4308595.5899999999],[361707.25999999978,4308592.8699999992],[361685.26999999955,4308559.1699999999],[361685.15620000008,4308557.9718999993],[361685.0214999998,4308556.5556000005],[361685,4308556.3300999999],[361684.17989999987,4308556.4131000005],[361679.79999999981,4308549.4299999997],[361669.33710000012,4308550.9882999994],[361662.66249999963,4308523.4395000003],[361771.10099999979,4308457.0795000009],[361771.11440000031,4308456.8004999999],[361770.90000000037,4308456.4880999997],[361772.32469999976,4308456.3306000009],[361890.70889999997,4308384.4185000006],[361891.34229999967,4308384.4725000001],[361895.57199999969,4308381.8957000002],[361896.15270000044,4308381.2664000001],[361896.18200000003,4308381.0928000007],[361895.67590000015,4308380.7584000006],[361897.14049999975,4308380.1009],[361897.32019999996,4308380.0006000008],[361898.63310000021,4308379.2675000001],[361899.22149999999,4308378.9388999995],[361900.03249999974,4308378.4859999996],[361900.92750000022,4308377.9165000003],[361902.77300000004,4308376.6256000008],[361904.42850000039,4308375.3190000001],[361936.84399999958,4308342.4883999992],[361943.23400000017,4308334.9090999998],[361947.01400000043,4308328.9289999995],[361948.0839999998,4308325.7589999996],[361949.00399999972,4308322.4290999994],[361947.84449999966,4308316.4639999997],[361946.56350000016,4308313.0720000006],[361944.99100000039,4308310.2835000008],[361939.82849999983,4308304.9047999997],[361937.79849999957,4308302.7899999991],[361930.98400000017,4308295.6899999995],[361914.6445000004,4308282.841],[361873.36450000014,4308247.6125000007],[361861.05449999962,4308237.1226000004],[361860.17140000034,4308236.3863999993],[361858.80399999954,4308235.2467],[361853.5186999999,4308230.8414999992],[361853.34559999965,4308230.6972000003],[361828.87980000023,4308210.3052999992],[361805.85500000045,4308191.1144999992],[361819.81510000024,4308173.2148000002],[361820.41700000037,4308172.5052000005],[361820.52799999993,4308172.3741999995],[361820.94749999978,4308171.8795999996],[361821.24610000011,4308171.5274999999],[361821.40629999992,4308171.3385000005],[361821.92300000042,4308170.7291999999],[361822.2592000002,4308170.3326999992],[361822.29629999958,4308170.2888999991],[361822.33299999963,4308170.2456999999],[361822.56950000022,4308169.9669000003],[361823.84080000035,4308168.4678000007],[361828.73770000041,4308162.6930999998],[361829.53440000024,4308161.7536999993],[361835.78299999982,4308154.3851999994],[361835.81080000009,4308154.3522999994],[361839.99490000028,4308149.6555000003],[361840.86429999955,4308148.6171000004],[361853.38310000021,4308133.6640000008],[361853.72589999996,4308133.2546999995],[361855.39659999963,4308131.2589999996],[361855.62540000025,4308130.9856000002],[361903.38549999986,4308079.8864999991],[361908.18560000043,4308073.7862999998],[361908.34769999981,4308073.5800000001],[361927.71590000018,4308048.9368999992],[361927.80080000032,4308048.8100000005],[361928.24430000037,4308048.1471999995],[361928.28770000022,4308048.0823999997],[361929.31140000001,4308046.5525000002],[361929.37320000026,4308046.4602000006],[361929.41150000039,4308046.4030000009],[361929.45760000031,4308046.3337999992],[361929.48450000025,4308046.2912000008],[361929.51260000002,4308046.2465000004],[361929.7126000002,4308045.9286000002],[361932.84819999989,4308040.9444999993],[361936.96079999954,4308033.7274999991],[361938.58660000004,4308031.3198000006],[361941.25270000007,4308027.3697999995],[361941.79200000037,4308026.6425000001],[361942.15689999983,4308026.1500000004],[361948.93869999982,4308017.7398000006],[361949.42499999981,4308017.1369000003],[361950.07050000038,4308016.3361000009],[361959.67789999954,4308004.4221000001],[361961.83299999963,4308001.9762999993],[361968.13190000039,4307995.6320999991],[361968.96079999954,4307994.8994999994],[361969.12660000008,4307994.7531000003],[361971.45760000031,4307992.6931999996],[361974.96050000004,4307989.8602000009],[362002.53600000031,4307967.5583999995],[362002.7575000003,4307967.3793000001],[362002.79930000007,4307967.3455999997],[362002.86490000039,4307967.2925000004],[362003.16370000038,4307967.0508999992],[362003.39910000004,4307966.8605000004],[362004.13389999978,4307966.2662000004],[362005.23529999983,4307965.3303999994],[362006.48010000028,4307964.2728000004],[362006.5401999997,4307964.2216999996],[362016.47630000021,4307955.7791000009],[362020.14410000015,4307952.7644999996],[362020.95430000033,4307952.0987],[362021.17260000017,4307951.9191999994],[362021.33540000021,4307951.7853999995],[362023.75210000016,4307949.7992000002],[362023.34130000044,4307949.3001000006],[362031.85419999994,4307941.5504999999],[362040.20540000033,4307936.4079999998],[362045.77010000031,4307930.7371999994],[362052.66229999997,4307925.3132000007],[362060.80470000021,4307915.6986999996],[362068.11490000039,4307911.3188000005],[362070.56620000023,4307908.7774999999]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855693,"SIGPAC_FOGAIBA.DN_OID":1303110095,"SIGPAC_FOGAIBA.DN_SURFACE":187141.05573946721,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":9000,"SIGPAC_FOGAIBA.RECINTO":12,"SIGPAC_FOGAIBA.PENDIENTE_":171,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"ZU","COD_USOS_SIGPAC.Descripción":"ZONA URBANA","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00209000R0012","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855694,"geometry":{"type":"Polygon","coordinates":[[[361603.34269999992,4308129.8288000003],[361611.30009999964,4308132.5633000005],[361620.88599999994,4308135.8659000006],[361624.86849999987,4308137.5467000008],[361623.92100000009,4308143.4949999992],[361623.71310000028,4308143.4750999995],[361617.18900000025,4308142.8499999996],[361611.72599999979,4308142.4629999995],[361597.82699999958,4308141.4590000007],[361586.03589999955,4308143.5559999999],[361584.99380000029,4308143.7412999999],[361586.06670000032,4308143.3442000002],[361593.83600000013,4308140.4691000003],[361601.96810000017,4308137.0940000005],[361602.65550000034,4308136.7573000006],[361603.34229999967,4308135.8502999991],[361603.34229999967,4308130.6997999996],[361603.34269999992,4308129.8288000003]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855694,"SIGPAC_FOGAIBA.DN_OID":1579621850,"SIGPAC_FOGAIBA.DN_SURFACE":231.56907525796379,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":133,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":163,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200133R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855695,"geometry":{"type":"Polygon","coordinates":[[[361624.86849999987,4308137.5467000008],[361632.26599999983,4308140.6684000008],[361638.72149999999,4308143.2844999991],[361642.18549999967,4308144.6886],[361643.25700000022,4308144.8170999996],[361643.23000000045,4308145.8579999991],[361643.09900000039,4308146.5359000005],[361642.29000000004,4308152.5058999993],[361642.66299999971,4308152.5308999997],[361641.83100000024,4308158.3210000005],[361641.65600000042,4308158.2799999993],[361641.38210000005,4308161.2122000009],[361641.08499999996,4308164.3929999992],[361641.00239999965,4308164.6698000003],[361639.71899999958,4308168.966],[361638.43310000002,4308172.8469999991],[361638.68400000036,4308172.9190999996],[361637.10900000017,4308178.6050000004],[361635.54999999981,4308184.0409999993],[361632.33690000046,4308196.3249999993],[361613.22400000039,4308194.8340000007],[361613.89309999999,4308191.6093000006],[361621.12669999991,4308156.75],[361622.40809999965,4308150.5749999993],[361623.92100000009,4308143.4949999992],[361624.86849999987,4308137.5467000008]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855695,"SIGPAC_FOGAIBA.DN_OID":1579621851,"SIGPAC_FOGAIBA.DN_SURFACE":1107.866194707075,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":216,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":214,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200216R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855696,"geometry":{"type":"Polygon","coordinates":[[[361592.42789999954,4308203.1076999996],[361592.46789999958,4308203.0287999995],[361592.44489999954,4308202.9432999995],[361590.80929999985,4308202.5963000003],[361590.43350000028,4308201.8957000002],[361591.17779999971,4308199.9750999995],[361592.83889999986,4308198.9319000002],[361596.35589999985,4308198.4144000001],[361611.51680000033,4308199.8237999994],[361612.1763000004,4308199.8688999992],[361610.97300000023,4308205.6521000005],[361596.49930000026,4308203.6103000008],[361593.78359999973,4308203.2272999994],[361592.92399999965,4308203.1060000006],[361592.42789999954,4308203.1076999996]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855696,"SIGPAC_FOGAIBA.DN_OID":1579621852,"SIGPAC_FOGAIBA.DN_SURFACE":107.55596393665277,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":217,"SIGPAC_FOGAIBA.RECINTO":3,"SIGPAC_FOGAIBA.PENDIENTE_":224,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"199,195","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200217R0003","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855697,"geometry":{"type":"Polygon","coordinates":[[[361871.00800000038,4307812.9938999992],[361875.22649999987,4307816.3436999992],[361907.01279999968,4307844.8861999996],[361961.89639999997,4307894.1699000001],[362019.00200000033,4307847.8981999997],[362024.27589999977,4307847.1351999994],[362042.09740000032,4307835.9747000001],[362056.15319999959,4307823.1676000003],[362060.64790000021,4307820.3443],[362062.10130000021,4307819.4432999995],[362062.92090000026,4307820.0521000009],[362063.45399999991,4307820.4480000008],[362063.49129999988,4307820.4758000001],[362064.34360000025,4307821.1086999997],[362064.39429999981,4307821.1465000007],[362064.46619999968,4307821.1998999994],[362065.60099999979,4307822.0427000001],[362066.01559999958,4307822.3506000005],[362066.2285000002,4307822.5086000003],[362066.80989999976,4307822.9404000007],[362066.84910000023,4307822.9695999995],[362069.68140000012,4307825.0732000005],[362069.84329999983,4307825.1934999991],[362070.39740000013,4307825.6050000004],[362070.6529000001,4307825.7948000003],[362070.76709999982,4307825.8794999998],[362071.19460000005,4307826.1970000006],[362071.5680999998,4307826.4744000006],[362071.72039999999,4307826.5877],[362071.90579999983,4307826.7254000008],[362074.98940000031,4307829.0156999994],[362077.80429999996,4307839.1153999995],[362077.84810000006,4307839.2723999992],[362077.9637000002,4307839.6872000005],[362077.97670000046,4307839.7338999994],[362078.07610000018,4307840.0905000009],[362078.13260000013,4307840.2932999991],[362078.1445000004,4307840.3362000007],[362078.16390000004,4307840.4054000005],[362078.2452999996,4307840.6974999998],[362078.3925999999,4307841.2259],[362079.74799999967,4307846.0891999993],[362084.2890999997,4307862.0795000009],[362085.55850000028,4307866.5415000003],[362082.23529999983,4307872.4680000003],[362080.8638000004,4307875.1688999999],[362080.59389999975,4307875.7004000004],[362080.13719999976,4307876.7104000002],[362080.11089999974,4307876.7685000002],[362080.08710000012,4307876.8209000006],[362080.03139999975,4307876.9440000001],[362080.01240000036,4307876.9860999994],[362078.8367999997,4307879.5851000007],[362077.80150000006,4307882.3266000003],[362077.77670000028,4307882.3924000002],[362077.73599999957,4307882.5001999997],[362077.71870000008,4307882.5462999996],[362077.70260000043,4307882.5888999999],[362077.65899999999,4307882.7043999992],[362077.64030000009,4307882.7536999993],[362077.31070000026,4307883.6268000007],[362077.07220000029,4307884.4821000006],[362077.02909999993,4307884.6366000008],[362077.01630000025,4307884.6822999995],[362077.00019999966,4307884.7402999997],[362076.98859999981,4307884.7818999998],[362076.35809999984,4307887.0425000004],[362076.1612999998,4307887.7215999998],[362076.1481999997,4307887.7667999994],[362076.09399999958,4307887.9538000003],[362075.46320000011,4307890.1298999991],[362074.94880000036,4307892.8871999998],[362074.93630000018,4307892.9536000006],[362074.92590000015,4307893.0098999999],[362074.88320000004,4307893.2382999994],[362074.87239999976,4307893.2964999992],[362074.85560000036,4307893.3866000008],[362074.84269999992,4307893.4553999994],[362074.83139999956,4307893.5162000004],[362074.44979999959,4307895.5620000008],[362074.13210000005,4307897.5282000005],[362074.11919999961,4307897.6073000003],[362074.10099999979,4307897.7204999998],[362074.09219999984,4307897.7750000004],[362074.08100000024,4307897.8445999995],[362074.15299999993,4307899.3460000008],[362073.92349999957,4307899.8644999992],[362072.91530000046,4307901.6249000002],[362071.8666000003,4307903.0697000008],[362070.71169999987,4307904.5515999999],[362070.3956000004,4307904.8341000006],[362070.34609999973,4307904.8783999998],[362070.3088999996,4307904.9116999991],[362069.11180000007,4307905.9816999994],[362068.18539999984,4307906.6934999991],[362066.5290000001,4307907.9659000002],[362063.31300000008,4307910.0945999995],[362063.27120000031,4307910.1215000004],[362062.80209999997,4307910.4190999996],[362062.59030000027,4307910.5534000006],[362062.53579999972,4307910.5879999995],[362062.49940000009,4307910.6111999992],[362062.42219999991,4307910.6601],[362062.38750000019,4307910.6820999999],[362061.97950000037,4307910.9410999995],[362059.57699999958,4307912.4660999998],[362051.57710000034,4307919.4857000001],[362046.72800000012,4307922.9649],[362040.71999999974,4307927.3062999994],[362035.25119999982,4307931.4762999993],[362033.14269999973,4307936.2474000007],[362033.05759999994,4307936.4397999998],[362032.50989999995,4307937.6789999995],[362032.31799999997,4307938.1130999997],[362031.89580000006,4307939.0680999998],[362029.86610000022,4307940.5253999997],[362029.38200000022,4307940.8820999991],[362029.33930000011,4307940.9134],[362027.78230000008,4307942.0606999993],[362025.71860000025,4307943.6227000002],[362023.67349999957,4307945.2095999997],[362022.61990000028,4307946.0473999996],[362022.55289999954,4307946.1007000003],[362022.44710000046,4307946.1848000009],[362021.64699999988,4307946.8212000001],[362021.56639999989,4307946.8873999994],[362021.44350000005,4307946.9885000009],[362022.56549999956,4307948.3561000004],[362022.60859999992,4307948.4085000008],[362022.79910000041,4307948.6406999994],[362022.91220000014,4307948.7782000005],[362022.95299999975,4307948.8278999999],[362023.34130000044,4307949.3001000006],[362023.75210000016,4307949.7992000002],[362021.33540000021,4307951.7853999995],[362021.17260000017,4307951.9191999994],[362020.95430000033,4307952.0987],[362020.14410000015,4307952.7644999996],[362016.47630000021,4307955.7791000009],[362006.5401999997,4307964.2216999996],[362006.48010000028,4307964.2728000004],[362005.23529999983,4307965.3303999994],[362004.13389999978,4307966.2662000004],[362003.39910000004,4307966.8605000004],[362003.16370000038,4307967.0508999992],[362002.86490000039,4307967.2925000004],[362002.79930000007,4307967.3455999997],[362002.7575000003,4307967.3793000001],[362002.53600000031,4307967.5583999995],[361974.96050000004,4307989.8602000009],[361971.45760000031,4307992.6931999996],[361969.12660000008,4307994.7531000003],[361968.96079999954,4307994.8994999994],[361964.15340000018,4307998.6643000003],[361954.97790000029,4308007.8037],[361948.85470000003,4308012.7120999992],[361946.12110000011,4308012.7131999992],[361943.57980000041,4308012.0691],[361936.41500000004,4308003.9406000003],[361913.1922000004,4307975.9196000006],[361887.98900000006,4307948.9937999994],[361880.33800000045,4307942.5862000007],[361879.21210000012,4307940.9774999991],[361886.25540000014,4307932.9732000008],[361893.70199999958,4307923.9102999996],[361872.76840000041,4307902.9397],[361868.54140000045,4307907.7685000002],[361864.48869999964,4307904.6755999997],[361868.34250000026,4307901.3701000009],[361861.09420000017,4307893.8852999993],[361847.01009999961,4307912.9646000005],[361850.14639999997,4307919.3673999999],[361859.0410000002,4307928.7030999996],[361867.82050000038,4307937.2777999993],[361876.07249999978,4307945.2103000004],[361881.10780000035,4307947.5416999999],[361891.8515999997,4307958.6965999994],[361918.50499999989,4307988.3233000003],[361924.34159999993,4307994.0742000006],[361915.27929999959,4308005.9567000009],[361914.36560000014,4308006.9218000006],[361898.37449999992,4308023.7825000007],[361914.3546000002,4308043.7975999992],[361922.29270000011,4308055.4111000001],[361907.98269999959,4308073.6196999997],[361870.9319000002,4308043.2069000006],[361870.89199999999,4308043.1742000002],[361870.85830000043,4308043.1466000006],[361870.80109999981,4308043.0996000003],[361870.66959999967,4308042.9915999994],[361868.12260000035,4308040.9010000005],[361849.24139999971,4308025.4025999997],[361774.99610000011,4307964.4605999999],[361773.32990000024,4307963.0993000008],[361781.09329999983,4307955.3236999996],[361786.11990000028,4307950.2892000005],[361786.91700000037,4307949.4910000004],[361785.51460000034,4307948.1221999992],[361785.19660000037,4307947.8116999995],[361791.50600000005,4307940.4488999993],[361796.87739999965,4307934.1813999992],[361799.54640000034,4307930.5142000001],[361801.6716,4307927.5950000007],[361803.40649999958,4307925.2119999994],[361803.85089999996,4307924.4883999992],[361805.58910000045,4307921.6583999991],[361805.75250000041,4307921.3925000001],[361805.9188000001,4307921.1217999998],[361806.39769999962,4307920.3424999993],[361809.21690000035,4307915.7522999998],[361815.04590000026,4307905.7871000003],[361815.28019999992,4307905.3861999996],[361816.51699999999,4307903.2719999999],[361820.17119999975,4307895.4656000007],[361824.65739999991,4307885.8823000006],[361840.34509999957,4307851.0077],[361842.41739999969,4307847.6832999997],[361843.36419999972,4307846.2951999996],[361843.72300000023,4307845.7695000004],[361844.88800000027,4307844.0636999998],[361846.90309999976,4307842.2628000006],[361846.95729999989,4307842.2138999999],[361847.04690000042,4307842.1338],[361850.54729999974,4307837.2432000004],[361851.25169999991,4307836.4082999993],[361868.42750000022,4307816.0539999995],[361870.33619999979,4307813.7902000006],[361870.8543999996,4307813.1754999999],[361871.00800000038,4307812.9938999992]],[[361839.41110000014,4307896.6275999993],[361836.49199999962,4307901.8335999995],[361845.16830000002,4307907.4045000002],[361848.43630000018,4307902.2017999999],[361839.41110000014,4307896.6275999993]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855697,"SIGPAC_FOGAIBA.DN_OID":1161522693,"SIGPAC_FOGAIBA.DN_SURFACE":37076.783201160433,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":64,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":50,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,12,199,231","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200064R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855698,"geometry":{"type":"Polygon","coordinates":[[[361643.25700000022,4308144.8170999996],[361646.99349999987,4308145.2654999997],[361649.13750000019,4308145.5232999995],[361649.16860000044,4308145.7729000002],[361644.68560000043,4308145.9257999994],[361643.05759999994,4308155.1010999996],[361647.27139999997,4308157.0186000001],[361646.90589999966,4308160.6446000002],[361655.99880000018,4308162.1976999994],[361655.63329999987,4308165.8235999998],[361642.31900000013,4308164.4188999999],[361633.22070000041,4308196.6616999991],[361692.9776999997,4308200.6500000004],[361698.58499999996,4308179.1413000003],[361702.44419999979,4308164.6280000005],[361704.41509999987,4308156.534],[361704.51530000009,4308156.5156999994],[361704.60020000022,4308156.5723000001],[361700.53550000023,4308180.2164999992],[361700.16550000012,4308183.0264999997],[361695.35699999984,4308204.7586000003],[361694.79550000001,4308207.2960000001],[361667.1445000004,4308330.0530999992],[361666.84049999993,4308331.4024999999],[361665.02120000031,4308331.2927999999],[361663.04200000037,4308332.4483000003],[361619.56450000033,4308357.8329000007],[361611.00700000022,4308361.6197999995],[361559.45449999999,4308384.4328000005],[361567.66909999959,4308251.5635000002],[361567.67590000015,4308251.4530999996],[361570.28899999987,4308209.1870000008],[361570.74000000022,4308208.8539000005],[361577.21100000013,4308205.6460999995],[361579.03430000041,4308204.7640000004],[361579.47900000028,4308204.5490000006],[361581.9450000003,4308203.2990000006],[361582.35400000028,4308203.1409000009],[361592.42789999954,4308203.1076999996],[361592.92399999965,4308203.1060000006],[361593.78359999973,4308203.2272999994],[361596.49930000026,4308203.6103000008],[361596.44529999979,4308203.6967999991],[361596.4665000001,4308203.7964999992],[361599.68259999994,4308204.4787000008],[361599.49540000036,4308206.6593999993],[361586.63109999988,4308205.6284999996],[361579.71140000038,4308205.7030999996],[361578.92709999997,4308205.8560000006],[361578.26209999993,4308212.6327999998],[361582.37459999975,4308214.9801000003],[361595.79810000025,4308217.6481999997],[361612.14279999956,4308218.1623],[361624.08739999961,4308219.8234999999],[361625.94060000032,4308210.2162999995],[361627.78479999956,4308200.9349000007],[361612.1763000004,4308199.8688999992],[361613.22400000039,4308194.8340000007],[361632.33690000046,4308196.3249999993],[361635.54999999981,4308184.0409999993],[361637.10900000017,4308178.6050000004],[361638.68400000036,4308172.9190999996],[361638.43310000002,4308172.8469999991],[361639.71899999958,4308168.966],[361641.00239999965,4308164.6698000003],[361641.08499999996,4308164.3929999992],[361641.38210000005,4308161.2122000009],[361641.65600000042,4308158.2799999993],[361641.83100000024,4308158.3210000005],[361642.66299999971,4308152.5308999997],[361642.29000000004,4308152.5058999993],[361643.09900000039,4308146.5359000005],[361643.23000000045,4308145.8579999991],[361643.25700000022,4308144.8170999996]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855698,"SIGPAC_FOGAIBA.DN_OID":1241848310,"SIGPAC_FOGAIBA.DN_SURFACE":17555.374585330392,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":67,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":327,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200067R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855699,"geometry":{"type":"Polygon","coordinates":[[[361465.07419999968,4308195.0889999997],[361464.94600000046,4308195.9894999992],[361464.40649999958,4308201.3938999996],[361461.02550000045,4308235.2585000005],[361459.30719999969,4308250.3352000006],[361442.18489999976,4308400.5739999991],[361369.59499999974,4308409.4749999996],[361365.22599999979,4308409.7638000008],[361364.85400000028,4308398.0859999992],[361361.49170000013,4308292.4696999993],[361361.74000000022,4308292.3599999994],[361359.38999999966,4308242.4199999999],[361355.88929999992,4308243.9670000002],[361355.59690000024,4308243.5305000003],[361375.26150000002,4308234.7970000003],[361405.1026999997,4308221.8905999996],[361416.39759999979,4308217.0055999998],[361420.59669999965,4308215.1895000003],[361431.18599999975,4308210.6094000004],[361436.5959999999,4308208.3595000003],[361465.07419999968,4308195.0889999997]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855699,"SIGPAC_FOGAIBA.DN_OID":1579621847,"SIGPAC_FOGAIBA.DN_SURFACE":16804.356888488022,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":71,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":345,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200071R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855700,"geometry":{"type":"Polygon","coordinates":[[[361581.75090000033,4308156.4887000006],[361578.67200000025,4308173.2510000002],[361575.12999999989,4308186.9199999999],[361570.28899999987,4308209.1870000008],[361567.67590000015,4308251.4530999996],[361553.18709999975,4308254.2519000005],[361545.91889999993,4308258.0112999994],[361535.64329999965,4308260.5175999999],[361525.36770000029,4308261.0188999996],[361515.34269999992,4308258.5125999991],[361483.26269999985,4308258.2620999999],[361464.46590000018,4308254.2520000003],[361459.30719999969,4308250.3352000006],[361461.02550000045,4308235.2585000005],[361464.40649999958,4308201.3938999996],[361464.94600000046,4308195.9894999992],[361465.07419999968,4308195.0889999997],[361475.7648,4308190.1073000003],[361475.83600000013,4308190.2804000005],[361475.875,4308190.4463],[361479.71949999966,4308208.2173999995],[361530.19429999962,4308188.6207999997],[361537.33270000014,4308185.2577],[361538.81680000015,4308182.4030000009],[361537.96169999987,4308180.4825999998],[361536.29820000008,4308178.4832000006],[361532.34499999974,4308176.0866],[361526.79559999984,4308175.1229999997],[361521.99060000014,4308173.9046],[361517.05449999962,4308171.8374000005],[361517.84420000017,4308171.4963000007],[361523.76960000023,4308168.9362000003],[361524.91119999997,4308170.0569000002],[361533.85929999966,4308172.0495999996],[361539.32930000033,4308171.3861999996],[361553.63860000018,4308168.1674000006],[361563.36560000014,4308163.9866000004],[361577.79069999978,4308159.0722000003],[361581.75090000033,4308156.4887000006]],[[361543.47130000032,4308199.1170000006],[361525.79389999993,4308205.9587999992],[361513.03639999963,4308211.4395000003],[361503.42219999991,4308215.8322999999],[361488.4450000003,4308218.2720999997],[361482.71659999993,4308219.1261],[361481.71420000028,4308222.0841000006],[361484.30800000019,4308231.9576999992],[361485.41210000031,4308234.3948999997],[361487.44820000045,4308235.2524999995],[361500.39169999957,4308232.9229000006],[361511.42040000018,4308231.5842000004],[361511.46420000028,4308231.6531000007],[361512.48510000017,4308231.4548000004],[361526.08889999986,4308228.2203000002],[361531.71250000037,4308225.1163999997],[361538.92320000008,4308217.5738999993],[361541.88320000004,4308213.0649999995],[361542.62409999967,4308204.2960999999],[361543.47130000032,4308199.1170000006]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855700,"SIGPAC_FOGAIBA.DN_OID":1628782730,"SIGPAC_FOGAIBA.DN_SURFACE":6742.6529654935466,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":68,"SIGPAC_FOGAIBA.RECINTO":13,"SIGPAC_FOGAIBA.PENDIENTE_":182,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":"231","SIGPAC_FOGAIBA.MOTIVO_MOD":1,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200068R0013","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855701,"geometry":{"type":"Polygon","coordinates":[[[361459.30719999969,4308250.3352000006],[361464.46590000018,4308254.2520000003],[361483.26269999985,4308258.2620999999],[361515.34269999992,4308258.5125999991],[361525.36770000029,4308261.0188999996],[361535.64329999965,4308260.5175999999],[361545.91889999993,4308258.0112999994],[361553.18709999975,4308254.2519000005],[361567.67590000015,4308251.4530999996],[361567.66909999959,4308251.5635000002],[361559.45449999999,4308384.4328000005],[361531.28720000014,4308388.3096999992],[361519.95019999985,4308389.8701000009],[361488.90579999983,4308394.1432000007],[361487.38860000018,4308394.3520999998],[361442.18489999976,4308400.5739999991],[361459.30719999969,4308250.3352000006]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855701,"SIGPAC_FOGAIBA.DN_OID":1161522666,"SIGPAC_FOGAIBA.DN_SURFACE":15189.786704473956,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":68,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":365,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_FOGAIBA.INCIDENCIA":"231","SIGPAC_FOGAIBA.MOTIVO_MOD":1,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200068R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855702,"geometry":{"type":"Polygon","coordinates":[[[482045.66289999988,4394761.5592],[482051.13489999995,4394763.0908000004],[482052.50370000023,4394764.6225000005],[482051.79330000002,4394771.1826000009],[482048.24370000046,4394768.2048000004],[482041.93549999967,4394762.4609999992],[482045.66289999988,4394761.5592]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855702,"SIGPAC_FOGAIBA.DN_OID":583199094,"SIGPAC_FOGAIBA.DN_SURFACE":48.169385055989977,"COD_Municipis.NOM":"Alaró","SIGPAC_FOGAIBA.MUNICIPIO":1,"SIGPAC_FOGAIBA.POLIGONO":4,"SIGPAC_FOGAIBA.PARCELA":546,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":99,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"IM","COD_USOS_SIGPAC.Descripción":"IMPRODUCTIVOS","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07001A00400546R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855703,"geometry":{"type":"Polygon","coordinates":[[[361481.71420000028,4308222.0841000006],[361482.71659999993,4308219.1261],[361488.4450000003,4308218.2720999997],[361503.42219999991,4308215.8322999999],[361513.03639999963,4308211.4395000003],[361525.79389999993,4308205.9587999992],[361543.47130000032,4308199.1170000006],[361542.62409999967,4308204.2960999999],[361541.88320000004,4308213.0649999995],[361538.92320000008,4308217.5738999993],[361531.71250000037,4308225.1163999997],[361526.08889999986,4308228.2203000002],[361512.48510000017,4308231.4548000004],[361511.46420000028,4308231.6531000007],[361511.42040000018,4308231.5842000004],[361500.39169999957,4308232.9229000006],[361487.44820000045,4308235.2524999995],[361485.41210000031,4308234.3948999997],[361484.30800000019,4308231.9576999992],[361481.71420000028,4308222.0841000006]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855703,"SIGPAC_FOGAIBA.DN_OID":440278873,"SIGPAC_FOGAIBA.DN_SURFACE":1101.0554704407577,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":68,"SIGPAC_FOGAIBA.RECINTO":4,"SIGPAC_FOGAIBA.PENDIENTE_":157,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"231,199","SIGPAC_FOGAIBA.MOTIVO_MOD":1,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200068R0004","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855704,"geometry":{"type":"Polygon","coordinates":[[[361517.05449999962,4308171.8374000005],[361521.99060000014,4308173.9046],[361526.79559999984,4308175.1229999997],[361532.34499999974,4308176.0866],[361536.29820000008,4308178.4832000006],[361537.96169999987,4308180.4825999998],[361538.81680000015,4308182.4030000009],[361537.33270000014,4308185.2577],[361530.19429999962,4308188.6207999997],[361479.71949999966,4308208.2173999995],[361475.875,4308190.4463],[361475.83600000013,4308190.2804000005],[361475.7648,4308190.1073000003],[361480.55649999995,4308187.8743999992],[361485.37160000019,4308185.6305999998],[361488.46509999968,4308184.1892000008],[361517.05449999962,4308171.8374000005]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855704,"SIGPAC_FOGAIBA.DN_OID":440278872,"SIGPAC_FOGAIBA.DN_SURFACE":1122.6875116714764,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":68,"SIGPAC_FOGAIBA.RECINTO":5,"SIGPAC_FOGAIBA.PENDIENTE_":122,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"231,199","SIGPAC_FOGAIBA.MOTIVO_MOD":1,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200068R0005","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855705,"geometry":{"type":"Polygon","coordinates":[[[361584.02670000028,4308144.0993000008],[361581.75090000033,4308156.4887000006],[361577.79069999978,4308159.0722000003],[361563.36560000014,4308163.9866000004],[361553.63860000018,4308168.1674000006],[361539.32930000033,4308171.3861999996],[361533.85929999966,4308172.0495999996],[361524.91119999997,4308170.0569000002],[361523.76960000023,4308168.9362000003],[361553.14489999972,4308156.2449999992],[361574.54590000026,4308147.8223000001],[361583.67599999998,4308144.2291000001],[361584.02670000028,4308144.0993000008]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855705,"SIGPAC_FOGAIBA.DN_OID":1303110097,"SIGPAC_FOGAIBA.DN_SURFACE":591.5707180159003,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":68,"SIGPAC_FOGAIBA.RECINTO":2,"SIGPAC_FOGAIBA.PENDIENTE_":187,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"231,199","SIGPAC_FOGAIBA.MOTIVO_MOD":1,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200068R0002","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855706,"geometry":{"type":"Polygon","coordinates":[[[361597.82699999958,4308141.4590000007],[361611.72599999979,4308142.4629999995],[361617.18900000025,4308142.8499999996],[361623.71310000028,4308143.4750999995],[361623.92100000009,4308143.4949999992],[361622.40809999965,4308150.5749999993],[361621.12669999991,4308156.75],[361613.89309999999,4308191.6093000006],[361613.22400000039,4308194.8340000007],[361612.1763000004,4308199.8688999992],[361611.51680000033,4308199.8237999994],[361596.35589999985,4308198.4144000001],[361592.83889999986,4308198.9319000002],[361591.17779999971,4308199.9750999995],[361590.43350000028,4308201.8957000002],[361590.80929999985,4308202.5963000003],[361592.44489999954,4308202.9432999995],[361592.46789999958,4308203.0287999995],[361592.42789999954,4308203.1076999996],[361582.35400000028,4308203.1409000009],[361581.9450000003,4308203.2990000006],[361579.47900000028,4308204.5490000006],[361579.03430000041,4308204.7640000004],[361577.21100000013,4308205.6460999995],[361570.74000000022,4308208.8539000005],[361570.28899999987,4308209.1870000008],[361575.12999999989,4308186.9199999999],[361578.67200000025,4308173.2510000002],[361581.75090000033,4308156.4887000006],[361584.02670000028,4308144.0993000008],[361584.99380000029,4308143.7412999999],[361586.03589999955,4308143.5559999999],[361597.82699999958,4308141.4590000007]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855706,"SIGPAC_FOGAIBA.DN_OID":1579621849,"SIGPAC_FOGAIBA.DN_SURFACE":2342.3784925834361,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":217,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":196,"SIGPAC_FOGAIBA.COEF_REGAD":null,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"FO","COD_USOS_SIGPAC.Descripción":"FORESTAL","SIGPAC_FOGAIBA.INCIDENCIA":null,"SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200217R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}},{"type":"Feature","id":7855707,"geometry":{"type":"Polygon","coordinates":[[[361773.32990000024,4307963.0993000008],[361774.99610000011,4307964.4605999999],[361849.24139999971,4308025.4025999997],[361868.12260000035,4308040.9010000005],[361870.66959999967,4308042.9915999994],[361870.80109999981,4308043.0996000003],[361870.85830000043,4308043.1466000006],[361870.89199999999,4308043.1742000002],[361870.9319000002,4308043.2069000006],[361907.98269999959,4308073.6196999997],[361908.07160000037,4308073.6926000006],[361908.18560000043,4308073.7862999998],[361903.38549999986,4308079.8864999991],[361855.62540000025,4308130.9856000002],[361855.42929999996,4308130.8421999998],[361846.53660000023,4308124.341],[361846.49729999993,4308124.3122000005],[361846.46420000028,4308124.2880000006],[361846.40820000041,4308124.2471999992],[361841.71549999993,4308120.8164000008],[361832.76699999999,4308114.5796000008],[361819.04550000001,4308105.0164000001],[361807.74569999985,4308118.4937999994],[361807.13850000035,4308119.2180000003],[361806.67569999956,4308119.7699999996],[361806.63009999972,4308119.8244000003],[361806.38669999968,4308120.1146000009],[361806.02830000035,4308120.5420999993],[361805.08530000038,4308121.6668999996],[361804.86969999969,4308121.5233999994],[361803.48819999956,4308120.6050000004],[361803.36070000008,4308120.5201999992],[361803.32589999959,4308120.4969999995],[361803.07589999959,4308120.3309000004],[361802.70490000024,4308120.0842000004],[361792.31319999974,4308113.1744999997],[361789.86519999988,4308111.5468000006],[361782.62170000002,4308106.7261999995],[361778.08600000013,4308103.7075999994],[361757.61799999978,4308090.5195000004],[361746.25600000005,4308083.1986999996],[361745.39690000005,4308082.6274999995],[361744.28100000042,4308081.8856000006],[361743.65340000018,4308081.4683999997],[361742.20210000034,4308080.5033],[361729.63609999977,4308072.1483999994],[361711.09539999999,4308059.5491000004],[361690.43510000035,4308045.5092999991],[361690.34350000042,4308045.4418000001],[361690.29540000018,4308045.4063000008],[361689.53289999999,4308044.8432999998],[361697.97599999979,4308036.5810000002],[361728.69799999986,4308005.1765000001],[361740.78749999963,4307992.4499999993],[361747.38650000002,4307989.0809000004],[361747.61649999954,4307988.8509999998],[361773.32990000024,4307963.0993000008]]]},"properties":{"SIGPAC_FOGAIBA.OBJECTID":7855707,"SIGPAC_FOGAIBA.DN_OID":1161522669,"SIGPAC_FOGAIBA.DN_SURFACE":18176.560433492774,"COD_Municipis.NOM":"Eivissa","SIGPAC_FOGAIBA.MUNICIPIO":26,"SIGPAC_FOGAIBA.POLIGONO":2,"SIGPAC_FOGAIBA.PARCELA":131,"SIGPAC_FOGAIBA.RECINTO":1,"SIGPAC_FOGAIBA.PENDIENTE_":47,"SIGPAC_FOGAIBA.COEF_REGAD":0,"SIGPAC_FOGAIBA.COEF_ADMIS":null,"SIGPAC_FOGAIBA.USO_SIGPAC":"TA","COD_USOS_SIGPAC.Descripción":"TIERRA ARABLE","SIGPAC_FOGAIBA.INCIDENCIA":"11,12,199,231","SIGPAC_FOGAIBA.MOTIVO_MOD":null,"SIGPAC_FOGAIBA.REFERENCIA":"07026A00200131R0001","SIGPAC_FOGAIBA.Catxe":"maig 2026"}}]} \ No newline at end of file diff --git a/tests/test_convert.py b/tests/test_convert.py index f2f80726..3240d16d 100644 --- a/tests/test_convert.py +++ b/tests/test_convert.py @@ -55,6 +55,8 @@ "pl_block", "es_cat", "es_nc", + "es_ib", + "es_ib#2024", "es_cl", "es_ar", "es_an", @@ -125,6 +127,10 @@ def _input_files(converter, *names): "es_cat": _input_files("es_cat", "Cultius_DUN2023_GPKG.zip"), # the fixture is the 2022 archive; the converter's default is the newest edition "fr": {"variant": "2022"}, + # a page of each service: the current snapshot and a historic year, whose + # Catxe reads "Febrer2024.0" where the current one reads "maig 2026" + "es_ib": {"variant": "2026", **_input_files("es_ib", "es_ib_2026.geojson")}, + "es_ib#2024": {"variant": "2024", **_input_files("es_ib", "es_ib_2024.geojson")}, "es": {"input_files": {f"{test_path}/es/1501_ALAVA_cd_2025_20250105.gpkg.zip": ["*.gpkg"]}}, "lv": {"variant": "2024", **_input_files("lv", "lv_2024_lielriga.gpkg")}, # the code list is minted for this dataset, so read it from the fixture folder From de12c6ee9faa3620def9835670040df412c036ec Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Tue, 22 Sep 2026 15:29:35 +0200 Subject: [PATCH 06/11] Fold the REST, ES-CB and ES-IB changelog entries into the sectioned changelog The merge had re-imported the pre-reorganization flat list; only this branch's four entries were new. --- CHANGELOG.md | 48 +++++++++--------------------------------------- 1 file changed, 9 insertions(+), 39 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dfbed21..67c20e09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Updated `aiohttp` to support Zenodo responses that include both returned `Content-Type` headers. - Improved geometry axis handling so generated tiles and bounding boxes keep x/y order consistent in output. - Updated vecorel-cli to 0.2.16, 0.2.17, 0.2.18 and 0.2.20, including improved validation defaults and latest-variant selection when `--variant` is not provided. +- REST converters now page by half-open id windows instead of server-side sorting (which took ~100 s per request on large joined layers), retry the one remaining sorted query, and let a variant name the service that edition lives in. - BE-VLG: Extended editions to 2018-2026 and aligned determination dates with the selected campaign year. - CZ: Extended year coverage, including GPZ_DP editions (2019-2022), and added 2026 nested-archive support. - DE-SH: Extended support to editions 2023, 2025 and 2026. @@ -43,7 +44,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - ES: - ES regions based on SIGPAC now publish `hcat:code` from land-use mapping. - ES-AR now reads municipality SIGPAC sources listed by IDEAragon. + - ES-CB now covers editions 2010-2025. - ES-GA now supports editions 2014-2026. + - ES-IB now covers editions 2022-2026, reading the current and the historic SIGPAC services. - FI: Editions are now available by year (2020-2025). - FR: Editions now cover 2017-2024, mapped through one shared crop code list (https://fiboa.org/code/fr/fr.csv). - HR: Editions now cover 2011-2024. @@ -62,6 +65,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Added HCAT spelling fixes via `csv_supplements` for DE-BB, DE-NDS and EC-SI. - Declared the `beautifulsoup4` dependency used by ES-PV and ES-VC. - Dropped cached error pages for REST converters. +- REST converters: + - Cached pages are keyed by service as well as layer; every `SIXPAC_` service numbers its layers alike, so one year's cache could serve another. + - Esri error bodies answered as HTTP 200 and broken downloads are no longer kept as cached pages. + - Joined layers qualify field names (`RECINTOS.OBJECTID`), which made the paging filter match nothing and return everything; the qualified key field is now discovered, and a join's table prefixes are stripped from the output columns. - Fixed `use_variant_as_determination` so determination dates are retained. - Multipart geometries now get recomputed area/perimeter for split parts. - Rows missing `crop:code` are now dropped with a warning (and an error threshold), instead of failing whole conversions. @@ -90,10 +97,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - ES-AN now uses the correct land-use column and campaign-based determination date. - ES-CAT and ES-CN now map crop codes to HCAT with the extended mapping table. - ES-CB now derives determination date from the campaign. + - ES-CB now ships Cantabria's own licence instead of CC-BY-NC, with the province as provider. - ES-CL now reads the HTTPS source and 2025 province subfolders. - ES-CM now uses the campaign-specific SIGPAC service and schema. - ES-CN now keeps distinct island records and correct region metadata. - ES-EX and ES-NC now read FEGA national recinto releases (2025, 2026) because the regional portals are unavailable. + - ES-IB now names the Balearic government as provider instead of Navarra's. - ES-MD now finds `RECINTO.shp` regardless of archive folder layout. - Europe-LAND: Empty source crop codes now fall back to crop names (for example LT 2024). - FR: @@ -103,45 +112,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - JP: Uses campaign-specific determination dates and DuckDB conversion path. - LT: Updated to Europe-LAND v1.3 with 2025 coverage. - SK: Fixed edition selection, crop-name matching and block/id handling across campaigns. -- Declare the beautifulsoup4 dependency the ES-PV and ES-VC converters import -- ES-CL: the ITACyL server is https-only, the 2025 shapefiles sit in province subfolders, and C_REFREC is the identifier -- A test refuses a fixture above 5 MB, committed or merely lying in the fixture folder, because a failing convert test downloads the real source there -- ES-MD: find RECINTO.shp wherever the archive puts it -- REST converters: a variant may name its own service (es_ib keeps its yearly editions in a second one), the id-bound query is retried, and a joined layer's table prefixes are stripped for every converter -- REST converters: page by id windows instead of server-side sorting, key cached pages by service as well as layer, discover the qualified key field on joined layers, and never keep an error response or a broken download as a cached page -- ES-CB: editions 2010-2025, Cantabria's own licence instead of CC-BY-NC, and the province named as provider -- ES-IB: editions 2022-2026 (the yearly layers moved to the GOIB_SIGPAC_HISTORIC_IB service), the provider is the Balearic government, not Navarra's, and the joined field names are handled by the REST mixin -- Update vecorel-cli to v0.2.17: - - GeoJSON is read as UTF-8 as the format mandates, instead of the platform locale (cp1252 on Windows mangled umlauts) - - GeoJSON files with a byte order mark no longer fail to read - - Drop the per-converter UTF-8 workarounds in de_bw and de_he, now redundant -- Converter for Spain (whole), based on the FEGA 2025+ data -- Add Italy Tuscany (IT-1) basd on EuroCrops v2 -- Suuport multiple years for CZ -- Multiple years for DE_sh -- Multiple year support for HR -- Introduce FiboaBaseConverter.use_variant_as_determination for setting proper determination_date -- Update years for DK (2025, 2026) -- Update fr-converter to support 2021/2022 files -- Converter for Baden-Württemberg, Germany (GISELa LPIS reference parcels, 2018-2022) -- Converter for Lithuania KŽS reference parcels (lt_kzs), reading the geoportal.lt ArcGIS REST service -- Support Esri JSON and server-side filters in EsriRESTConverterMixin (rest_format, rest_params["where"]) -- Converter for Bavaria, Germany LPIS field blocks (de_by_block) -- Converter for Hesse, Germany LPIS reference parcels -- Converter for Saxony-Anhalt, Germany LPIS field blocks (de_st) -- Converter for Saarland, Germany LPIS field blocks (de_sl_block) -- Fix parcel sizes written in scientific notation being read 10,000x too large (de_sl_block parser) -- Repair the Saarland, Germany converter (de_sl), which could no longer read its source at all. - It now pages through the whole dataset, where the previous six hardcoded bounding boxes reached - only 20,300 of 54,038 parcels, so earlier output was incomplete. `metrics:area` is derived from - the geometry, because the service stopped publishing the declared size. -- Converter for South Tyrol, Italy (it_bz), reading the province's LAFIS utilised agricultural area -- Update vecorel-cli to v0.2.16: - - Converter output is sorted by Hilbert distance - - Commands exit with a non-zero exit code when they report a failure - - Collection-only properties are kept when merging collections - - Default GeoParquet compression is now zstd (level 15), configurable via `--compression_level` -- DE-SH: make the 2023, 2025 and 2026 editions convert — glob the GeoPackage inside the archive (2023 was written with user_version = 0, so the archive alone matches no driver), parse fachguelti as DD.MM.YYYY, and map the 2023 and upper-case 2025/2026 column spellings that silently dropped determination:datetime and metrics:area (their area is text with a decimal comma) ## [v0.21.0] - 2026-02-16 From 83eaa7c5b06aa8d2547e6b7361098a0a3c986e14 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Tue, 22 Sep 2026 15:37:35 +0200 Subject: [PATCH 07/11] REST cache: the filter is part of a page's identity, and legacy pages are not reused de_st selects its edition by where alone, on one service and one layer, so pages cached without the filter in their name could serve another edition. The legacy sorted-scheme pages carry neither service nor filter, so nothing proves where their rows came from; they are fetched again under the new key rather than reused on the strength of their id range alone. --- CHANGELOG.md | 2 +- fiboa_cli/conversion/converter_rest.py | 96 +++++++++----------------- tests/test_converter_rest.py | 44 ++++++------ 3 files changed, 57 insertions(+), 85 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67c20e09..6e332664 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -66,7 +66,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Declared the `beautifulsoup4` dependency used by ES-PV and ES-VC. - Dropped cached error pages for REST converters. - REST converters: - - Cached pages are keyed by service as well as layer; every `SIXPAC_` service numbers its layers alike, so one year's cache could serve another. + - Cached pages are keyed by service and filter as well as layer; every `SIXPAC_` service numbers its layers alike and DE-ST selects its edition by filter alone, so one edition's cache could serve another. - Esri error bodies answered as HTTP 200 and broken downloads are no longer kept as cached pages. - Joined layers qualify field names (`RECINTOS.OBJECTID`), which made the paging filter match nothing and return everything; the qualified key field is now discovered, and a join's table prefixes are stripped from the output columns. - Fixed `use_variant_as_determination` so determination dates are retained. diff --git a/fiboa_cli/conversion/converter_rest.py b/fiboa_cli/conversion/converter_rest.py index 23846e4e..d097cfaa 100644 --- a/fiboa_cli/conversion/converter_rest.py +++ b/fiboa_cli/conversion/converter_rest.py @@ -1,6 +1,7 @@ import os import re import time +import zlib from urllib.parse import urlencode import geopandas as gpd @@ -114,50 +115,49 @@ def get_data(self, paths, **kwargs): } # Layer ids repeat across services (every SIXPAC_ MapServer has its # Recintos layer at id 2), so the service must be part of the cache key. + # So must the filter: de_st selects its edition by `where` alone, on one + # service and one layer. service = re.sub(r"\W+", "_", base_url.rstrip("/").split("/rest/services/")[-1]) + where_key = f"_w{zlib.crc32(base_where.encode()):08x}" if base_where else "" page = 0 lo = min_id - 1 while lo < max_id: hi = lo + page_size - data = None + clause = f"{attribute}>{lo} AND {attribute}<={hi}" + get_dict["where"] = f"{clause} AND ({base_where})" if base_where else clause + url = f"{layer_url}?{urlencode(get_dict)}" if cache_fs is not None: - data = self._window_from_legacy_cache( - cache_fs, cache_folder, layer["id"], lo, hi, page_size + cache_file = os.path.join( + cache_folder, + f"{self.id}_{service}_{layer['id']}{where_key}_r{lo}.{self.rest_format}", ) - if data is None: - clause = f"{attribute}>{lo} AND {attribute}<={hi}" - get_dict["where"] = f"{clause} AND ({base_where})" if base_where else clause - url = f"{layer_url}?{urlencode(get_dict)}" - if cache_fs is not None: - cache_file = os.path.join( - cache_folder, - f"{self.id}_{service}_{layer['id']}_r{lo}.{self.rest_format}", - ) - if not cache_fs.exists(cache_file): - try: - with cache_fs.open(cache_file, mode="wb") as file: - stream_file(source_fs, url, file) - except Exception: - # A download that broke off must not survive as a cached page - if cache_fs.exists(cache_file): - cache_fs.rm(cache_file) - raise - url = cache_file - - try: - data = gpd.read_file(url) - except Exception as e: - # An error response from the server must not survive as a cached page - if cache_fs is not None and cache_fs.exists(url): - cache_fs.rm(url) - raise RuntimeError( - f"Could not read ids ({lo} ... {hi}] of {layer_url}: {e}" - ) from e + if not cache_fs.exists(cache_file): + try: + with cache_fs.open(cache_file, mode="wb") as file: + stream_file(source_fs, url, file) + except Exception: + # A download that broke off must not survive as a cached page + if cache_fs.exists(cache_file): + cache_fs.rm(cache_file) + raise + url = cache_file + + try: + data = gpd.read_file(url) + except Exception as e: + # An error response from the server must not survive as a cached page + if cache_fs is not None and cache_fs.exists(url): + cache_fs.rm(url) + raise RuntimeError( + f"Could not read ids ({lo} ... {hi}] of {layer_url}: {e}" + ) from e lo = hi if len(data) == 0: continue - print(f"Read {len(data)} features, page {page} from ids ({hi - page_size} ... {hi}]") + self.info( + f"Read {len(data)} features, page {page} from ids ({hi - page_size} ... {hi}]" + ) page += 1 yield self._unqualify(data), base_url, base_url, layer["id"] @@ -182,33 +182,3 @@ def _rest_id_bound(self, layer_url, attribute, base_where, direction, attempts=5 if attempt == attempts - 1: raise time.sleep(2**attempt) - - def _window_from_legacy_cache(self, cache_fs, cache_folder, layer_id, lo, hi, page_size): - """Pages cached by the old sorted paging are keyed by the previous page's - last id. On dense layers they coincide exactly with an id window, so reuse - one when its ids prove it covers (lo, hi] completely.""" - for key in [-1, lo] if lo == 0 else [lo]: - path = os.path.join(cache_folder, f"{self.id}_{layer_id}_{key}.{self.rest_format}") - if not cache_fs.exists(path): - continue - try: - data = gpd.read_file(path) - except Exception: - continue - id_column = next( - ( - c - for c in data.columns - if c == self.rest_attribute or c.endswith("." + self.rest_attribute) - ), - None, - ) - if id_column is None or len(data) == 0: - continue - ids = data[id_column] - covers = (len(data) == page_size and ids.max() == hi) or ( - len(data) < page_size and ids.max() <= hi - ) - if ids.min() == lo + 1 and covers: - return data - return None diff --git a/tests/test_converter_rest.py b/tests/test_converter_rest.py index 7b272b72..ec74389f 100644 --- a/tests/test_converter_rest.py +++ b/tests/test_converter_rest.py @@ -80,6 +80,16 @@ def stream(self, _source_fs, url, file): file.write(json.dumps(_collection(oids, self.key)).encode("utf-8")) +@pytest.fixture(autouse=True) +def _rebind_logger(): + """LoggerMixin binds its sink to sys.stdout once per process; a converter + built here would bind it to this test's capture and mute every later test.""" + yield + from vecorel_cli.cli.logger import LoggerMixin + + LoggerMixin.logger = None + + @pytest.fixture def service(monkeypatch): fake = FakeService() @@ -179,36 +189,28 @@ def broken(_source_fs, url, file): assert os.listdir(tmp_path) == [] -def test_legacy_page_is_reused_when_its_ids_cover_the_window(service, tmp_path): - """Pages cached by the old sorted paging are keyed by the previous page's - last id; a dense one covers exactly the window that replaced it.""" +def test_pages_cached_under_the_old_sorted_scheme_are_not_reused(service, tmp_path): + """The old file name carries neither service nor filter, so nothing proves + where its rows came from; such pages are fetched again under the new key.""" legacy = tmp_path / f"test_rest_{LAYER_ID}_-1.geojson" legacy.write_text(json.dumps(_collection([1, 2]))) pages = _read(RESTConverter(), tmp_path) assert [len(data) for data, *_ in pages] == [2, 2, 1] - assert service.pages == [ # the first window came from the legacy file - "OBJECTID%3E2+AND+OBJECTID%3C%3D4", - "OBJECTID%3E4+AND+OBJECTID%3C%3D6", - ] + assert len(service.pages) == 3 # every window was fetched -def test_legacy_page_that_does_not_cover_the_window_is_ignored(service, tmp_path): - """The old key is the last id of the previous page, which on a layer with - gaps says nothing about which ids the file holds.""" - gappy = tmp_path / f"test_rest_{LAYER_ID}_-1.geojson" - gappy.write_text(json.dumps(_collection([1, 3]))) - unreadable = tmp_path / f"test_rest_{LAYER_ID}_2.geojson" - unreadable.write_text("not geojson at all") +def test_pages_of_one_filter_do_not_serve_another(service, tmp_path): + """de_st selects its edition by `where` alone, on one service and one layer.""" + first = RESTConverter() + first.rest_params = {"where": "ID_VERSIONID='2023.1'"} + _read(first, tmp_path) + second = RESTConverter() + second.rest_params = {"where": "ID_VERSIONID='2021.1'"} + _read(second, tmp_path) - _read(RESTConverter(), tmp_path) - - assert service.pages == [ - "OBJECTID%3E0+AND+OBJECTID%3C%3D2", - "OBJECTID%3E2+AND+OBJECTID%3C%3D4", - "OBJECTID%3E4+AND+OBJECTID%3C%3D6", - ] + assert len(service.pages) == 6 # no page of the first edition served the second def test_empty_window_is_skipped(monkeypatch, tmp_path): From 0d13939cd4bf933198b060cf65b8a0095db4d992 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Tue, 22 Sep 2026 15:37:35 +0200 Subject: [PATCH 08/11] ES-IB: note that ArcGIS resolves the bare field name on joined layers Verified against the published editions: zero rows carrying an excluded use code, where a dropped filter would have let common codes like AG and ZU through. --- fiboa_cli/datasets/es_ib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fiboa_cli/datasets/es_ib.py b/fiboa_cli/datasets/es_ib.py index 98197166..57c9919c 100644 --- a/fiboa_cli/datasets/es_ib.py +++ b/fiboa_cli/datasets/es_ib.py @@ -67,6 +67,7 @@ class ESIBConverter(EsriRESTConverterMixin, ESBaseConverter): rest_base_url = CURRENT # Both services join their parcels to the municipality and land-use tables, # so their fields arrive table-qualified; the REST mixin strips the prefixes. + # ArcGIS resolves the bare field name in `where` even on those joined layers. rest_params = { "where": "USO_SIGPAC NOT IN ('AG','CA','ED','FO','IM','IS','IV','TH','ZC','ZU','ZV','MT')" } From e321283f51bd335a29896fbd570f2e547b71e9f4 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Tue, 22 Sep 2026 16:19:47 +0200 Subject: [PATCH 09/11] REST cache: a page's name carries its window, and an id gap costs one query MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit page_size follows the service's maxRecordCount. A page cached under a smaller one and reused for today's wider window would silently drop every id above its own bound — half the layer, if the size halved. The name now records (lo, hi], so a kept page is either followed at its own bounds or ignored, never misread; pages under the old names are fetched again. The same name lets an empty window widen: when a fetched window holds nothing, one retried bound query asks where the ids resume, and the empty page is kept as the whole gap. Two rows a million ids apart cost three requests, not five hundred thousand, and later runs read the gap from the cache. --- CHANGELOG.md | 3 +- fiboa_cli/conversion/converter_rest.py | 64 ++++++++++++++++++-------- tests/test_converter_rest.py | 52 +++++++++++++++++++-- 3 files changed, 95 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e332664..8d431ddd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Updated `aiohttp` to support Zenodo responses that include both returned `Content-Type` headers. - Improved geometry axis handling so generated tiles and bounding boxes keep x/y order consistent in output. - Updated vecorel-cli to 0.2.16, 0.2.17, 0.2.18 and 0.2.20, including improved validation defaults and latest-variant selection when `--variant` is not provided. -- REST converters now page by half-open id windows instead of server-side sorting (which took ~100 s per request on large joined layers), retry the one remaining sorted query, and let a variant name the service that edition lives in. +- REST converters now page by half-open id windows instead of server-side sorting (which took ~100 s per request on large joined layers), retry the one remaining sorted query, cross an id gap wider than a page with one query instead of a page per window, and let a variant name the service that edition lives in. - BE-VLG: Extended editions to 2018-2026 and aligned determination dates with the selected campaign year. - CZ: Extended year coverage, including GPZ_DP editions (2019-2022), and added 2026 nested-archive support. - DE-SH: Extended support to editions 2023, 2025 and 2026. @@ -67,6 +67,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Dropped cached error pages for REST converters. - REST converters: - Cached pages are keyed by service and filter as well as layer; every `SIXPAC_` service numbers its layers alike and DE-ST selects its edition by filter alone, so one edition's cache could serve another. + - A cached page's name carries its id window, so a page kept under another `maxRecordCount` cannot silently swallow the ids above its own bound. Pages cached under the old names are fetched again. - Esri error bodies answered as HTTP 200 and broken downloads are no longer kept as cached pages. - Joined layers qualify field names (`RECINTOS.OBJECTID`), which made the paging filter match nothing and return everything; the qualified key field is now discovered, and a join's table prefixes are stripped from the output columns. - Fixed `use_variant_as_determination` so determination dates are retained. diff --git a/fiboa_cli/conversion/converter_rest.py b/fiboa_cli/conversion/converter_rest.py index d097cfaa..5cebd34b 100644 --- a/fiboa_cli/conversion/converter_rest.py +++ b/fiboa_cli/conversion/converter_rest.py @@ -115,23 +115,29 @@ def get_data(self, paths, **kwargs): } # Layer ids repeat across services (every SIXPAC_ MapServer has its # Recintos layer at id 2), so the service must be part of the cache key. - # So must the filter: de_st selects its edition by `where` alone, on one - # service and one layer. + # So must the filter (de_st selects its edition by `where` alone, on one + # service and one layer) and the window's upper bound: page_size follows + # the service's maxRecordCount, and a page kept from a smaller one would + # silently drop every id above its own bound. service = re.sub(r"\W+", "_", base_url.rstrip("/").split("/rest/services/")[-1]) where_key = f"_w{zlib.crc32(base_where.encode()):08x}" if base_where else "" + prefix = f"{self.id}_{service}_{layer['id']}{where_key}_r" + windows = self._cached_windows(cache_fs, cache_folder, prefix) page = 0 lo = min_id - 1 while lo < max_id: - hi = lo + page_size - clause = f"{attribute}>{lo} AND {attribute}<={hi}" - get_dict["where"] = f"{clause} AND ({base_where})" if base_where else clause - url = f"{layer_url}?{urlencode(get_dict)}" - if cache_fs is not None: - cache_file = os.path.join( - cache_folder, - f"{self.id}_{service}_{layer['id']}{where_key}_r{lo}.{self.rest_format}", - ) - if not cache_fs.exists(cache_file): + cached = lo in windows + hi = windows[lo] if cached else lo + page_size + if cached: + url = os.path.join(cache_folder, f"{prefix}{lo}-{hi}.{self.rest_format}") + else: + clause = f"{attribute}>{lo} AND {attribute}<={hi}" + get_dict["where"] = f"{clause} AND ({base_where})" if base_where else clause + url = f"{layer_url}?{urlencode(get_dict)}" + if cache_fs is not None: + cache_file = os.path.join( + cache_folder, f"{prefix}{lo}-{hi}.{self.rest_format}" + ) try: with cache_fs.open(cache_file, mode="wb") as file: stream_file(source_fs, url, file) @@ -140,7 +146,7 @@ def get_data(self, paths, **kwargs): if cache_fs.exists(cache_file): cache_fs.rm(cache_file) raise - url = cache_file + url = cache_file try: data = gpd.read_file(url) @@ -152,17 +158,39 @@ def get_data(self, paths, **kwargs): f"Could not read ids ({lo} ... {hi}] of {layer_url}: {e}" ) from e + if len(data) == 0 and not cached: + # An id gap wider than a page: ask once where the ids resume, and + # let the empty page cover the whole gap on later runs, instead of + # paging through a span that may hold millions of absent ids. + resume = self._rest_id_bound(layer_url, attribute, base_where, "ASC", floor=lo) + if resume - 1 > hi and cache_fs is not None: + gap = os.path.join(cache_folder, f"{prefix}{lo}-{resume - 1}.{self.rest_format}") + cache_fs.mv(url, gap) + hi = max(hi, resume - 1) + lo = hi if len(data) == 0: continue - self.info( - f"Read {len(data)} features, page {page} from ids ({hi - page_size} ... {hi}]" - ) + self.info(f"Read {len(data)} features, page {page} up to id {hi}") page += 1 yield self._unqualify(data), base_url, base_url, layer["id"] - def _rest_id_bound(self, layer_url, attribute, base_where, direction, attempts=5): - clause = f"{attribute}>-1" + @staticmethod + def _cached_windows(cache_fs, cache_folder, prefix): + """The cached (lo, hi] windows, keyed by lo. The name carries both bounds, + so a page is only ever read as exactly the window it was fetched for.""" + if cache_fs is None or not cache_fs.exists(cache_folder): + return {} + pattern = re.compile(re.escape(prefix) + r"(-?\d+)-(-?\d+)\.") + windows = {} + for path in cache_fs.ls(cache_folder, detail=False): + match = pattern.search(os.path.basename(str(path))) + if match: + windows[int(match.group(1))] = int(match.group(2)) + return windows + + def _rest_id_bound(self, layer_url, attribute, base_where, direction, floor=-1, attempts=5): + clause = f"{attribute}>{floor}" params = { "f": "json", "where": f"{clause} AND ({base_where})" if base_where else clause, diff --git a/tests/test_converter_rest.py b/tests/test_converter_rest.py index ec74389f..d428203f 100644 --- a/tests/test_converter_rest.py +++ b/tests/test_converter_rest.py @@ -8,6 +8,7 @@ import json import os +import re import geopandas as gpd import pytest @@ -45,9 +46,10 @@ def _collection(oids, key="OBJECTID"): class FakeService: """Answers the three metadata calls and records every page request.""" - def __init__(self, key="OBJECTID", ids=FEATURE_IDS): + def __init__(self, key="OBJECTID", ids=FEATURE_IDS, page_size=PAGE_SIZE): self.key = key self.ids = ids + self.page_size = page_size self.pages = [] # the `where` of every page the mixin downloaded def get(self, url, params=None, **kwargs): @@ -62,11 +64,16 @@ def json(self): if params.get("f") == "pjson": return Response( - {"layers": [{"id": LAYER_ID, "name": "Recintos"}], "maxRecordCount": PAGE_SIZE} + { + "layers": [{"id": LAYER_ID, "name": "Recintos"}], + "maxRecordCount": self.page_size, + } ) if params.get("outFields") == "*": # the probe for the real key field return Response({"features": [{"attributes": {self.key: self.ids[0]}}]}) - bound = max(self.ids) if params["orderByFields"].endswith("DESC") else min(self.ids) + floor = int(re.search(r">(-?\d+)", params["where"]).group(1)) + above = [o for o in self.ids if o > floor] + bound = max(above) if params["orderByFields"].endswith("DESC") else min(above) return Response({"features": [{"attributes": {self.key: bound}}]}) def stream(self, _source_fs, url, file): @@ -116,9 +123,10 @@ def test_pages_by_id_window_and_caches_per_service(service, tmp_path): "OBJECTID%3E4+AND+OBJECTID%3C%3D6", ] # layer ids repeat across services (every SIXPAC_ has its Recintos at 2), - # so the service name has to be part of the file name + # so the service name has to be part of the file name; the window bounds are + # in it too, so a page kept under another page size is never misread assert sorted(os.listdir(tmp_path)) == [ - f"test_rest_{SERVICE}_{LAYER_ID}_r{lo}.geojson" for lo in (0, 2, 4) + f"test_rest_{SERVICE}_{LAYER_ID}_r{lo}-{lo + PAGE_SIZE}.geojson" for lo in (0, 2, 4) ] @@ -213,6 +221,40 @@ def test_pages_of_one_filter_do_not_serve_another(service, tmp_path): assert len(service.pages) == 6 # no page of the first edition served the second +def test_pages_kept_under_another_page_size_still_cover_everything(monkeypatch, tmp_path): + """maxRecordCount follows the service's configuration. The file name carries + the window it was fetched for, so after a size change a kept page is either + followed at its own bounds or ignored — never misread as a wider window.""" + small = FakeService(page_size=2) + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.requests.get", small.get) + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.stream_file", small.stream) + _read(RESTConverter(), tmp_path) + + big = FakeService(page_size=3) + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.requests.get", big.get) + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.stream_file", big.stream) + pages = _read(RESTConverter(), tmp_path) + + assert big.pages == [] # the kept windows still cover the layer completely + assert sorted(o for data, *_ in pages for o in data["OBJECTID"]) == FEATURE_IDS + + +def test_a_wide_id_gap_is_walked_once_and_cached(monkeypatch, tmp_path): + """Two rows at ids 1 and 10001: the gap between them costs one empty page + and one bound query, not five thousand page downloads.""" + fake = FakeService(ids=[1, 10001]) + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.requests.get", fake.get) + monkeypatch.setattr("fiboa_cli.conversion.converter_rest.stream_file", fake.stream) + + pages = _read(RESTConverter(), tmp_path) + + assert [len(data) for data, *_ in pages] == [1, 1] + assert len(fake.pages) == 3 # (0,2], the empty (2,4] widened to (2,10000], (10000,10002] + + assert [len(data) for data, *_ in _read(RESTConverter(), tmp_path)] == [1, 1] + assert len(fake.pages) == 3 # the second run was answered by the cache alone + + def test_empty_window_is_skipped(monkeypatch, tmp_path): """An id gap wider than a page yields a window with nothing in it.""" fake = FakeService(ids=[1, 6]) From 696df07ff5a8e96dd9cc45c9f6f09cb1dfaff8c4 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Tue, 22 Sep 2026 16:24:21 +0200 Subject: [PATCH 10/11] Ignore uv artifacts, and one entry per REST cache fact in the changelog uv.lock and .venv are what uv run leaves behind; neither belongs in a library repository. The changelog carried main's older error-page line beside this branch's, and split the cache identity over two bullets. --- .gitignore | 2 ++ CHANGELOG.md | 6 ++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index a96ea441..a0ac98ae 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,8 @@ __pycache__/ *.egg-info/ /.pytest_cache/ /.ruff_cache/ +/.venv/ +uv.lock # Coverage .coverage diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d431ddd..6c5cc963 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -64,11 +64,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Fixed - Added HCAT spelling fixes via `csv_supplements` for DE-BB, DE-NDS and EC-SI. - Declared the `beautifulsoup4` dependency used by ES-PV and ES-VC. -- Dropped cached error pages for REST converters. - REST converters: - - Cached pages are keyed by service and filter as well as layer; every `SIXPAC_` service numbers its layers alike and DE-ST selects its edition by filter alone, so one edition's cache could serve another. - - A cached page's name carries its id window, so a page kept under another `maxRecordCount` cannot silently swallow the ids above its own bound. Pages cached under the old names are fetched again. - - Esri error bodies answered as HTTP 200 and broken downloads are no longer kept as cached pages. + - A cached page is identified by service, layer, filter and its exact id window: layer ids repeat across services (every `SIXPAC_` numbers them alike), DE-ST selects its edition by filter alone, and a page kept under another `maxRecordCount` would silently drop the ids above its own bound. Pages cached under the old names are fetched again. + - Error responses — including Esri error bodies answered as HTTP 200 — and broken downloads are no longer kept as cached pages. - Joined layers qualify field names (`RECINTOS.OBJECTID`), which made the paging filter match nothing and return everything; the qualified key field is now discovered, and a join's table prefixes are stripped from the output columns. - Fixed `use_variant_as_determination` so determination dates are retained. - Multipart geometries now get recomputed area/perimeter for split parts. From 195aeb754047ed64d24324e39654443d692346d9 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Tue, 22 Sep 2026 17:19:37 +0200 Subject: [PATCH 11/11] Changelog speaks to users, not to the cache implementation --- CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c5cc963..15c7df0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Updated `aiohttp` to support Zenodo responses that include both returned `Content-Type` headers. - Improved geometry axis handling so generated tiles and bounding boxes keep x/y order consistent in output. - Updated vecorel-cli to 0.2.16, 0.2.17, 0.2.18 and 0.2.20, including improved validation defaults and latest-variant selection when `--variant` is not provided. -- REST converters now page by half-open id windows instead of server-side sorting (which took ~100 s per request on large joined layers), retry the one remaining sorted query, cross an id gap wider than a page with one query instead of a page per window, and let a variant name the service that edition lives in. +- REST converters download much faster from large layers and retry when a service answers with intermittent errors. - BE-VLG: Extended editions to 2018-2026 and aligned determination dates with the selected campaign year. - CZ: Extended year coverage, including GPZ_DP editions (2019-2022), and added 2026 nested-archive support. - DE-SH: Extended support to editions 2023, 2025 and 2026. @@ -65,9 +65,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Added HCAT spelling fixes via `csv_supplements` for DE-BB, DE-NDS and EC-SI. - Declared the `beautifulsoup4` dependency used by ES-PV and ES-VC. - REST converters: - - A cached page is identified by service, layer, filter and its exact id window: layer ids repeat across services (every `SIXPAC_` numbers them alike), DE-ST selects its edition by filter alone, and a page kept under another `maxRecordCount` would silently drop the ids above its own bound. Pages cached under the old names are fetched again. - - Error responses — including Esri error bodies answered as HTTP 200 — and broken downloads are no longer kept as cached pages. - - Joined layers qualify field names (`RECINTOS.OBJECTID`), which made the paging filter match nothing and return everything; the qualified key field is now discovered, and a join's table prefixes are stripped from the output columns. + - Downloaded data cached for one dataset, edition or service is no longer served for another. Previously cached downloads are fetched again once. + - Error responses and interrupted downloads are no longer cached. + - Layers that join several tables (some ES-CB and ES-IB editions) are now filtered and paged correctly, and their column names no longer carry table prefixes. - Fixed `use_variant_as_determination` so determination dates are retained. - Multipart geometries now get recomputed area/perimeter for split parts. - Rows missing `crop:code` are now dropped with a warning (and an error threshold), instead of failing whole conversions.