From 741337c63f8555573d23c8438c53c94f96f9a9a3 Mon Sep 17 00:00:00 2001 From: Lea Vauchier Date: Wed, 17 Jan 2024 18:15:45 +0100 Subject: [PATCH] mobj0: Add relative metric --- coclico/mobj0/mobj0_intrinsic.py | 2 +- coclico/mobj0/mobj0_relative.py | 161 +++++++++++++++--- .../tile_splitted_2818_32247.geojson | 32 ++++ .../tile_splitted_2818_32248.geojson | 85 +++++++++ .../tile_splitted_2819_32247.geojson | 24 +++ .../tile_splitted_2819_32248.geojson | 38 +++++ .../tile_splitted_2818_32247.geojson | 24 +++ .../tile_splitted_2818_32248.geojson | 58 +++++++ .../tile_splitted_2819_32247.geojson | 20 +++ .../tile_splitted_2819_32248.geojson | 26 +++ .../tile_splitted_2818_32247.geojson | 29 ++++ .../tile_splitted_2818_32248.geojson | 69 ++++++++ .../tile_splitted_2819_32247.geojson | 20 +++ .../tile_splitted_2819_32248.geojson | 28 +++ test/configs/config_test_metrics.yaml | 5 +- test/mobj0/test_mobj0_relative.py | 94 +++++++++- 16 files changed, 686 insertions(+), 29 deletions(-) create mode 100644 data/mobj0/niv2/intrinsic/tile_splitted_2818_32247.geojson create mode 100644 data/mobj0/niv2/intrinsic/tile_splitted_2818_32248.geojson create mode 100644 data/mobj0/niv2/intrinsic/tile_splitted_2819_32247.geojson create mode 100644 data/mobj0/niv2/intrinsic/tile_splitted_2819_32248.geojson create mode 100644 data/mobj0/niv4/intrinsic/tile_splitted_2818_32247.geojson create mode 100644 data/mobj0/niv4/intrinsic/tile_splitted_2818_32248.geojson create mode 100644 data/mobj0/niv4/intrinsic/tile_splitted_2819_32247.geojson create mode 100644 data/mobj0/niv4/intrinsic/tile_splitted_2819_32248.geojson create mode 100644 data/mobj0/ref/intrinsic/tile_splitted_2818_32247.geojson create mode 100644 data/mobj0/ref/intrinsic/tile_splitted_2818_32248.geojson create mode 100644 data/mobj0/ref/intrinsic/tile_splitted_2819_32247.geojson create mode 100644 data/mobj0/ref/intrinsic/tile_splitted_2819_32248.geojson diff --git a/coclico/mobj0/mobj0_intrinsic.py b/coclico/mobj0/mobj0_intrinsic.py index b3439b5..6a91a4e 100644 --- a/coclico/mobj0/mobj0_intrinsic.py +++ b/coclico/mobj0/mobj0_intrinsic.py @@ -63,7 +63,7 @@ def compute_metric_intrinsic(las_file: Path, config_file: Path, output_geojson: def parse_args(): - parser = argparse.ArgumentParser("Run malt0 intrinsic metric on one tile") + parser = argparse.ArgumentParser("Run mobj0 intrinsic metric on one tile") parser.add_argument("-i", "--input-file", type=Path, required=True, help="Path to the LAS file") parser.add_argument("-o", "--output-geojson", type=Path, required=True, help="Path to the output geojson") parser.add_argument( diff --git a/coclico/mobj0/mobj0_relative.py b/coclico/mobj0/mobj0_relative.py index 84ac56c..f5f453c 100644 --- a/coclico/mobj0/mobj0_relative.py +++ b/coclico/mobj0/mobj0_relative.py @@ -1,7 +1,10 @@ import argparse import logging +from collections import Counter from pathlib import Path +from typing import List, Tuple +import geopandas as gpd import pandas as pd from coclico.config import csv_separator @@ -9,54 +12,170 @@ from coclico.mobj0.mobj0 import MOBJ0 -def compute_metric_relative( - c1_dir: Path, ref_dir: Path, occupancy_dir: Path, config_file: str, output_csv: Path, output_csv_tile: Path -): - """Compute metrics that describe the difference between c1 and ref height maps. - The occupancy map is used to mask the pixels for which the difference is computed +def check_paired_objects( + c1_geometries: gpd.GeoDataFrame, ref_geometries: gpd.GeoDataFrame, classes: List +) -> Tuple[Counter, Counter]: + """Pair objects from 2 geodataframes (ie. 2 lists of geometries) + Pairing is made based on geometries intersections: + - the first step is to find all geometries in ref that have at least an intersection with a + geometry in c1 (using a spatial join). The sjoin will contain several occurences of ref geometries + if they one line per + - the second one is to remove pairs geometries match with several geometries in the other dataframe: + - remove pairs where a geometry in c1 is associated with multiple ref polygons first (making sure that we keep + the geometries in ref that have a single match in c1) + - then remove pairs where a geometry in ref is still associated with multiple c1 polygons (making sure that we + keep the geometries in ref that have a single match in c1) - The metrics are: - - mean_diff: the average difference in z between the height maps - - max_diff: the maximum difference in z between the height maps - - std_diff: the standard deviation of the difference in z betweeen the height maps + Args: + c1_geometries (gpd.GeoDataFrame): geopandas dataframe with geometries from the reference + ref_geometries (gpd.GeoDataFrame): geopandas dataframe with geometries from c1 + classes (List): oredered list of clsses (to match "layer" values with classes in the output) + + Returns: + Tuple[Counter, Counter]: (nb_paired, nb_not paired) Number of paired / not paired geometries + + """ + all_join_gdfs = [] + nb_paired = Counter() + nb_not_paired = Counter() + ref_geometries["index_ref"] = ref_geometries.index.copy() + + for ii, class_key in enumerate(classes): + c1_geom_layer = c1_geometries[c1_geometries.layer == ii] + ref_geom_layer = ref_geometries[ref_geometries.layer == ii] + logging.debug( + f"For class {class_key}, found {len(c1_geom_layer.index)} in c1 and {len(ref_geom_layer.index)} in ref " + ) + # Find all geometries in ref that intersect a geometry in c1 + class_join_gdf = ref_geom_layer.sjoin(c1_geom_layer, how="inner", rsuffix="c1") + + # Remove duplicates for geometries in c1 that intersect several geometries in ref, keeping the pairs where + # the geometry has fewer matches in ref (to keep pairs that have only 1 match in ref) + class_join_gdf["index_c1_count"] = class_join_gdf.groupby("index_c1")["index_c1"].transform("count") + class_join_gdf.sort_values(by="index_c1_count", ascending=True, inplace=True) + class_join_gdf.drop_duplicates(subset=["index_c1"], keep="first", inplace=True) + + # Remove duplicates for geometries in ref that intersect several geometries in c1, keeping the pairs where + # the geometry has fewer matches in c1 (to keep pairs that have only 1 match in c1) + class_join_gdf["index_ref_count"] = class_join_gdf.groupby("index_ref")["index_ref"].transform("count") + class_join_gdf.sort_values(by="index_ref_count", ascending=True, inplace=True) + class_join_gdf.drop_duplicates(subset=["index_ref"], keep="first", inplace=True) + + all_join_gdfs.append(class_join_gdf) + nb_paired[class_key] = len(class_join_gdf.index) + nb_not_paired[class_key] = len(c1_geom_layer.index) + len(ref_geom_layer.index) - 2 * nb_paired[class_key] + + return nb_paired, nb_not_paired + + +def compute_metric_relative(c1_dir: Path, ref_dir: Path, config_file: str, output_csv: Path, output_csv_tile: Path): + """Generate relative metrics for mobj0 from the number of paired objects between the reference c1 (classification + to compare) using the polygons generated by the mobj0 intrinsic metric. + Paired objects are objects that are found both in c1 and the reference, "not paired" objects are + objects that are found either only in the reference or only in c1. + The pairing method is implemented and explained in the check_paired_objects method. + + The computed metrics are: + - nb_paired: The number of paired objects (found both in c1 and ref) + - nb_not_paired: The number of "not paired" objects (found only in c1 or only in ref) These metrics are stored tile by tile and class by class in the output_csv_tile file These metrics are stored class by class for the whole data in the output_csv file + Args: c1_dir (Path): path to the c1 classification directory, - where there are json files with the result of mpap0 intrinsic metric + where there are json files with the result of mobj0 intrinsic metric ref_dir (Path): path to the reference classification directory, - where there are json files with the result of mpap0 intrinsic metric - class_weights (Dict): class weights dict + where there are json files with the result of mobj0 intrinsic metric + config_file (Path): Coclico configuration file output_csv (Path): path to output csv file output_csv_tile (Path): path to output csv file, result by tile - """ config_dict = read_config_file(config_file) class_weights = config_dict[MOBJ0.metric_name]["weights"] classes = sorted(class_weights.keys()) - classes - csv_data = [] + output_csv.parent.mkdir(parents=True, exist_ok=True) + output_csv_tile.parent.mkdir(parents=True, exist_ok=True) + + total_nb_paired = Counter() + total_nb_not_paired = Counter() + + data = [] + + for ref_file in ref_dir.iterdir(): + c1_file = c1_dir / ref_file.name + + c1_geometries = gpd.read_file(c1_file) + ref_geometries = gpd.read_file(ref_file) - df = pd.DataFrame(csv_data) + nb_paired, nb_not_paired = check_paired_objects(c1_geometries, ref_geometries, classes) + + total_nb_paired += Counter(nb_paired) + total_nb_not_paired += Counter(nb_not_paired) + + new_line = [ + { + "tile": ref_file.stem, + "class": cl, + "nb_paired": nb_paired.get(cl, 0), + "nb_not_paired": nb_not_paired.get(cl, 0), + } + for cl in classes + ] + data.extend(new_line) + + output_csv.parent.mkdir(parents=True, exist_ok=True) + df = pd.DataFrame(data) + df.to_csv(output_csv_tile, index=False, sep=csv_separator) + logging.debug(df.to_markdown()) + + data = [ + { + "class": cl, + "nb_paired": total_nb_paired.get(cl, 0), + "nb_not_paired": total_nb_not_paired.get(cl, 0), + } + for cl in classes + ] + df = pd.DataFrame(data) df.to_csv(output_csv, index=False, sep=csv_separator) logging.debug(df.to_markdown()) - raise NotImplementedError + + logging.debug(df.to_markdown()) def parse_args(): - parser = argparse.ArgumentParser("Run malt0 metric on one tile") + parser = argparse.ArgumentParser("Run mobj0 metric on one tile") parser.add_argument( "-i", "--input-dir", required=True, type=Path, help="Path to the classification directory, \ - where there are tif files with the result of malt0 intrinsic metric (MNx for each class)", + where there are geojson files with the result of mobj0 intrinsic metric", + ) + parser.add_argument( + "-r", + "--ref-dir", + required=True, + type=Path, + help="Path to the reference directory, where there are geojson files with the result of mobj0 intrinsic " + + "metric", ) - raise NotImplementedError + parser.add_argument("-o", "--output-csv", required=True, type=Path, help="Path to the CSV output file") + parser.add_argument( + "-t", "--output-csv-tile", required=True, type=Path, help="Path to the CSV output file, result by tile" + ) + parser.add_argument( + "-c", + "--config-file", + required=True, + type=Path, + help="Coclico configuration file", + ) + return parser.parse_args() @@ -66,9 +185,7 @@ def parse_args(): compute_metric_relative( c1_dir=Path(args.input_dir), ref_dir=Path(args.ref_dir), - occupancy_dir=Path(args.occupancy_dir), config_file=args.config_file, output_csv=Path(args.output_csv), output_csv_tile=Path(args.output_csv_tile), ) - raise NotImplementedError diff --git a/data/mobj0/niv2/intrinsic/tile_splitted_2818_32247.geojson b/data/mobj0/niv2/intrinsic/tile_splitted_2818_32247.geojson new file mode 100644 index 0000000..704ece7 --- /dev/null +++ b/data/mobj0/niv2/intrinsic/tile_splitted_2818_32247.geojson @@ -0,0 +1,32 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563727.75, 6449600.25 ], [ 563727.75, 6449599.25 ], [ 563728.25, 6449599.25 ], [ 563728.25, 6449600.25 ], [ 563727.75, 6449600.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563740.75, 6449600.25 ], [ 563740.75, 6449599.75 ], [ 563740.25, 6449599.75 ], [ 563740.25, 6449599.25 ], [ 563741.25, 6449599.25 ], [ 563741.25, 6449600.25 ], [ 563740.75, 6449600.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563733.25, 6449598.75 ], [ 563733.25, 6449598.25 ], [ 563732.25, 6449598.25 ], [ 563732.25, 6449597.75 ], [ 563733.25, 6449597.75 ], [ 563733.25, 6449598.25 ], [ 563733.75, 6449598.25 ], [ 563733.75, 6449598.75 ], [ 563733.25, 6449598.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563720.25, 6449600.25 ], [ 563720.25, 6449598.25 ], [ 563720.75, 6449598.25 ], [ 563720.75, 6449597.25 ], [ 563721.25, 6449597.25 ], [ 563721.25, 6449599.25 ], [ 563720.75, 6449599.25 ], [ 563720.75, 6449599.75 ], [ 563721.25, 6449599.75 ], [ 563721.25, 6449600.25 ], [ 563720.25, 6449600.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563730.75, 6449597.75 ], [ 563730.75, 6449597.25 ], [ 563731.25, 6449597.25 ], [ 563731.25, 6449597.75 ], [ 563730.75, 6449597.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563724.25, 6449597.75 ], [ 563724.25, 6449597.25 ], [ 563723.75, 6449597.25 ], [ 563723.75, 6449596.75 ], [ 563724.25, 6449596.75 ], [ 563724.25, 6449597.25 ], [ 563725.75, 6449597.25 ], [ 563725.75, 6449597.75 ], [ 563724.25, 6449597.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563727.75, 6449597.75 ], [ 563727.75, 6449596.75 ], [ 563728.25, 6449596.75 ], [ 563728.25, 6449597.75 ], [ 563727.75, 6449597.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563749.75, 6449600.25 ], [ 563749.75, 6449599.75 ], [ 563750.25, 6449599.75 ], [ 563750.25, 6449599.25 ], [ 563749.75, 6449599.25 ], [ 563749.75, 6449598.25 ], [ 563750.25, 6449598.25 ], [ 563750.25, 6449597.25 ], [ 563750.75, 6449597.25 ], [ 563750.75, 6449595.75 ], [ 563751.25, 6449595.75 ], [ 563751.25, 6449595.25 ], [ 563751.75, 6449595.25 ], [ 563751.75, 6449595.75 ], [ 563752.25, 6449595.75 ], [ 563752.25, 6449596.75 ], [ 563751.75, 6449596.75 ], [ 563751.75, 6449598.25 ], [ 563751.25, 6449598.25 ], [ 563751.25, 6449599.25 ], [ 563750.75, 6449599.25 ], [ 563750.75, 6449600.25 ], [ 563749.75, 6449600.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563750.25, 6449595.25 ], [ 563750.25, 6449594.75 ], [ 563749.75, 6449594.75 ], [ 563749.75, 6449593.25 ], [ 563750.25, 6449593.25 ], [ 563750.25, 6449593.75 ], [ 563750.75, 6449593.75 ], [ 563750.75, 6449595.25 ], [ 563750.25, 6449595.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563778.75, 6449592.75 ], [ 563778.75, 6449592.25 ], [ 563780.25, 6449592.25 ], [ 563780.25, 6449592.75 ], [ 563778.75, 6449592.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563735.75, 6449597.75 ], [ 563735.75, 6449597.25 ], [ 563735.25, 6449597.25 ], [ 563735.25, 6449595.75 ], [ 563735.75, 6449595.75 ], [ 563735.75, 6449594.25 ], [ 563736.25, 6449594.25 ], [ 563736.25, 6449592.25 ], [ 563736.75, 6449592.25 ], [ 563736.75, 6449591.75 ], [ 563737.25, 6449591.75 ], [ 563737.25, 6449591.25 ], [ 563737.75, 6449591.25 ], [ 563737.75, 6449590.75 ], [ 563737.25, 6449590.75 ], [ 563737.25, 6449589.75 ], [ 563738.25, 6449589.75 ], [ 563738.25, 6449591.25 ], [ 563737.75, 6449591.25 ], [ 563737.75, 6449592.75 ], [ 563737.25, 6449592.75 ], [ 563737.25, 6449594.75 ], [ 563736.75, 6449594.75 ], [ 563736.75, 6449595.75 ], [ 563736.25, 6449595.75 ], [ 563736.25, 6449596.25 ], [ 563736.75, 6449596.25 ], [ 563736.75, 6449597.25 ], [ 563736.25, 6449597.25 ], [ 563736.25, 6449597.75 ], [ 563735.75, 6449597.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563703.25, 6449590.75 ], [ 563703.25, 6449588.25 ], [ 563703.75, 6449588.25 ], [ 563703.75, 6449587.25 ], [ 563705.25, 6449587.25 ], [ 563705.25, 6449589.25 ], [ 563704.75, 6449589.25 ], [ 563704.75, 6449590.75 ], [ 563703.25, 6449590.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563700.75, 6449588.75 ], [ 563700.75, 6449588.25 ], [ 563700.25, 6449588.25 ], [ 563700.25, 6449586.25 ], [ 563700.75, 6449586.25 ], [ 563700.75, 6449585.75 ], [ 563701.75, 6449585.75 ], [ 563701.75, 6449586.25 ], [ 563703.25, 6449586.25 ], [ 563703.25, 6449586.75 ], [ 563702.75, 6449586.75 ], [ 563702.75, 6449587.75 ], [ 563702.25, 6449587.75 ], [ 563702.25, 6449588.75 ], [ 563700.75, 6449588.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563717.25, 6449541.25 ], [ 563717.25, 6449540.25 ], [ 563717.75, 6449540.25 ], [ 563717.75, 6449541.25 ], [ 563717.25, 6449541.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563691.25, 6449531.25 ], [ 563691.25, 6449529.75 ], [ 563690.75, 6449529.75 ], [ 563690.75, 6449529.25 ], [ 563689.75, 6449529.25 ], [ 563689.75, 6449528.75 ], [ 563691.25, 6449528.75 ], [ 563691.25, 6449529.25 ], [ 563693.75, 6449529.25 ], [ 563693.75, 6449528.25 ], [ 563693.25, 6449528.25 ], [ 563693.25, 6449527.75 ], [ 563693.75, 6449527.75 ], [ 563693.75, 6449528.25 ], [ 563694.25, 6449528.25 ], [ 563694.25, 6449528.75 ], [ 563694.75, 6449528.75 ], [ 563694.75, 6449529.25 ], [ 563695.25, 6449529.25 ], [ 563695.25, 6449528.25 ], [ 563695.75, 6449528.25 ], [ 563695.75, 6449527.25 ], [ 563696.75, 6449527.25 ], [ 563696.75, 6449528.25 ], [ 563696.25, 6449528.25 ], [ 563696.25, 6449529.75 ], [ 563695.75, 6449529.75 ], [ 563695.75, 6449530.75 ], [ 563695.25, 6449530.75 ], [ 563695.25, 6449530.25 ], [ 563694.75, 6449530.25 ], [ 563694.75, 6449529.25 ], [ 563694.25, 6449529.25 ], [ 563694.25, 6449530.25 ], [ 563693.75, 6449530.25 ], [ 563693.75, 6449530.75 ], [ 563692.75, 6449530.75 ], [ 563692.75, 6449530.25 ], [ 563692.25, 6449530.25 ], [ 563692.25, 6449530.75 ], [ 563691.75, 6449530.75 ], [ 563691.75, 6449531.25 ], [ 563691.25, 6449531.25 ] ], [ [ 563691.75, 6449530.25 ], [ 563692.25, 6449530.25 ], [ 563692.25, 6449529.75 ], [ 563691.75, 6449529.75 ], [ 563691.75, 6449530.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563693.25, 6449526.75 ], [ 563693.25, 6449526.25 ], [ 563692.25, 6449526.25 ], [ 563692.25, 6449525.75 ], [ 563691.75, 6449525.75 ], [ 563691.75, 6449524.75 ], [ 563692.25, 6449524.75 ], [ 563692.25, 6449525.25 ], [ 563693.25, 6449525.25 ], [ 563693.25, 6449523.25 ], [ 563693.75, 6449523.25 ], [ 563693.75, 6449522.75 ], [ 563694.25, 6449522.75 ], [ 563694.25, 6449524.75 ], [ 563694.75, 6449524.75 ], [ 563694.75, 6449523.75 ], [ 563695.25, 6449523.75 ], [ 563695.25, 6449523.25 ], [ 563694.75, 6449523.25 ], [ 563694.75, 6449522.75 ], [ 563695.25, 6449522.75 ], [ 563695.25, 6449522.25 ], [ 563695.75, 6449522.25 ], [ 563695.75, 6449523.75 ], [ 563695.25, 6449523.75 ], [ 563695.25, 6449524.75 ], [ 563695.75, 6449524.75 ], [ 563695.75, 6449525.25 ], [ 563695.25, 6449525.25 ], [ 563695.25, 6449526.75 ], [ 563693.25, 6449526.75 ] ], [ [ 563693.75, 6449525.75 ], [ 563694.25, 6449525.75 ], [ 563694.25, 6449525.25 ], [ 563693.75, 6449525.25 ], [ 563693.75, 6449525.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563775.25, 6449521.75 ], [ 563775.25, 6449521.25 ], [ 563774.25, 6449521.25 ], [ 563774.25, 6449520.75 ], [ 563775.25, 6449520.75 ], [ 563775.25, 6449520.25 ], [ 563775.75, 6449520.25 ], [ 563775.75, 6449521.75 ], [ 563775.25, 6449521.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563796.75, 6449517.25 ], [ 563796.75, 6449516.75 ], [ 563797.25, 6449516.75 ], [ 563797.25, 6449517.25 ], [ 563796.75, 6449517.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.25, 6449519.25 ], [ 563799.25, 6449518.75 ], [ 563797.25, 6449518.75 ], [ 563797.25, 6449518.25 ], [ 563795.75, 6449518.25 ], [ 563795.75, 6449517.75 ], [ 563791.75, 6449517.75 ], [ 563791.75, 6449517.25 ], [ 563789.75, 6449517.25 ], [ 563789.75, 6449516.75 ], [ 563788.25, 6449516.75 ], [ 563788.25, 6449516.25 ], [ 563787.25, 6449516.25 ], [ 563787.25, 6449516.75 ], [ 563786.75, 6449516.75 ], [ 563786.75, 6449516.25 ], [ 563786.25, 6449516.25 ], [ 563786.25, 6449515.75 ], [ 563784.75, 6449515.75 ], [ 563784.75, 6449514.75 ], [ 563785.25, 6449514.75 ], [ 563785.25, 6449515.25 ], [ 563786.25, 6449515.25 ], [ 563786.25, 6449514.75 ], [ 563786.75, 6449514.75 ], [ 563786.75, 6449515.25 ], [ 563787.75, 6449515.25 ], [ 563787.75, 6449515.75 ], [ 563789.75, 6449515.75 ], [ 563789.75, 6449516.25 ], [ 563791.75, 6449516.25 ], [ 563791.75, 6449516.75 ], [ 563792.25, 6449516.75 ], [ 563792.25, 6449516.25 ], [ 563792.75, 6449516.25 ], [ 563792.75, 6449516.75 ], [ 563794.25, 6449516.75 ], [ 563794.25, 6449517.25 ], [ 563794.75, 6449517.25 ], [ 563794.75, 6449516.75 ], [ 563795.75, 6449516.75 ], [ 563795.75, 6449517.25 ], [ 563796.25, 6449517.25 ], [ 563796.25, 6449517.75 ], [ 563798.25, 6449517.75 ], [ 563798.25, 6449518.25 ], [ 563798.75, 6449518.25 ], [ 563798.75, 6449517.75 ], [ 563799.25, 6449517.75 ], [ 563799.25, 6449517.25 ], [ 563799.75, 6449517.25 ], [ 563799.75, 6449517.75 ], [ 563799.25, 6449517.75 ], [ 563799.25, 6449518.25 ], [ 563799.75, 6449518.25 ], [ 563799.75, 6449519.25 ], [ 563799.25, 6449519.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563783.25, 6449515.25 ], [ 563783.25, 6449514.75 ], [ 563783.75, 6449514.75 ], [ 563783.75, 6449515.25 ], [ 563783.25, 6449515.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563746.75, 6449515.25 ], [ 563746.75, 6449514.25 ], [ 563747.75, 6449514.25 ], [ 563747.75, 6449514.75 ], [ 563748.25, 6449514.75 ], [ 563748.25, 6449515.25 ], [ 563746.75, 6449515.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563745.25, 6449515.75 ], [ 563745.25, 6449514.25 ], [ 563745.75, 6449514.25 ], [ 563745.75, 6449513.75 ], [ 563746.25, 6449513.75 ], [ 563746.25, 6449515.25 ], [ 563745.75, 6449515.25 ], [ 563745.75, 6449515.75 ], [ 563745.25, 6449515.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563720.75, 6449600.25 ], [ 563720.75, 6449597.75 ], [ 563722.75, 6449597.75 ], [ 563722.75, 6449597.25 ], [ 563723.25, 6449597.25 ], [ 563723.25, 6449597.75 ], [ 563730.25, 6449597.75 ], [ 563730.25, 6449598.25 ], [ 563734.75, 6449598.25 ], [ 563734.75, 6449600.25 ], [ 563732.75, 6449600.25 ], [ 563732.75, 6449599.75 ], [ 563732.25, 6449599.75 ], [ 563732.25, 6449600.25 ], [ 563728.25, 6449600.25 ], [ 563728.25, 6449599.75 ], [ 563727.75, 6449599.75 ], [ 563727.75, 6449600.25 ], [ 563722.25, 6449600.25 ], [ 563722.25, 6449599.75 ], [ 563721.75, 6449599.75 ], [ 563721.75, 6449600.25 ], [ 563720.75, 6449600.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563782.75, 6449597.75 ], [ 563782.75, 6449597.25 ], [ 563781.25, 6449597.25 ], [ 563781.25, 6449596.75 ], [ 563779.75, 6449596.75 ], [ 563779.75, 6449596.25 ], [ 563779.25, 6449596.25 ], [ 563779.25, 6449595.75 ], [ 563778.75, 6449595.75 ], [ 563778.75, 6449594.25 ], [ 563779.25, 6449594.25 ], [ 563779.25, 6449592.75 ], [ 563779.75, 6449592.75 ], [ 563779.75, 6449592.25 ], [ 563780.25, 6449592.25 ], [ 563780.25, 6449591.75 ], [ 563780.75, 6449591.75 ], [ 563780.75, 6449592.25 ], [ 563781.75, 6449592.25 ], [ 563781.75, 6449592.75 ], [ 563783.25, 6449592.75 ], [ 563783.25, 6449593.25 ], [ 563783.75, 6449593.25 ], [ 563783.75, 6449593.75 ], [ 563784.25, 6449593.75 ], [ 563784.25, 6449594.25 ], [ 563783.75, 6449594.25 ], [ 563783.75, 6449594.75 ], [ 563784.25, 6449594.75 ], [ 563784.25, 6449596.25 ], [ 563783.75, 6449596.25 ], [ 563783.75, 6449597.25 ], [ 563783.25, 6449597.25 ], [ 563783.25, 6449597.75 ], [ 563782.75, 6449597.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563743.25, 6449600.25 ], [ 563743.25, 6449599.75 ], [ 563741.25, 6449599.75 ], [ 563741.25, 6449599.25 ], [ 563740.25, 6449599.25 ], [ 563740.25, 6449598.75 ], [ 563739.25, 6449598.75 ], [ 563739.25, 6449598.25 ], [ 563737.25, 6449598.25 ], [ 563737.25, 6449597.75 ], [ 563735.75, 6449597.75 ], [ 563735.75, 6449597.25 ], [ 563736.25, 6449597.25 ], [ 563736.25, 6449596.25 ], [ 563735.75, 6449596.25 ], [ 563735.75, 6449595.75 ], [ 563736.75, 6449595.75 ], [ 563736.75, 6449595.25 ], [ 563736.25, 6449595.25 ], [ 563736.25, 6449594.75 ], [ 563736.75, 6449594.75 ], [ 563736.75, 6449593.75 ], [ 563736.25, 6449593.75 ], [ 563736.25, 6449593.25 ], [ 563736.75, 6449593.25 ], [ 563736.75, 6449593.75 ], [ 563737.25, 6449593.75 ], [ 563737.25, 6449591.25 ], [ 563737.75, 6449591.25 ], [ 563737.75, 6449590.75 ], [ 563738.25, 6449590.75 ], [ 563738.25, 6449591.25 ], [ 563738.75, 6449591.25 ], [ 563738.75, 6449590.75 ], [ 563739.25, 6449590.75 ], [ 563739.25, 6449591.25 ], [ 563740.25, 6449591.25 ], [ 563740.25, 6449591.75 ], [ 563742.25, 6449591.75 ], [ 563742.25, 6449592.25 ], [ 563742.75, 6449592.25 ], [ 563742.75, 6449591.75 ], [ 563743.25, 6449591.75 ], [ 563743.25, 6449590.75 ], [ 563743.75, 6449590.75 ], [ 563743.75, 6449590.25 ], [ 563744.75, 6449590.25 ], [ 563744.75, 6449590.75 ], [ 563746.25, 6449590.75 ], [ 563746.25, 6449591.25 ], [ 563747.25, 6449591.25 ], [ 563747.25, 6449591.75 ], [ 563746.75, 6449591.75 ], [ 563746.75, 6449592.25 ], [ 563746.25, 6449592.25 ], [ 563746.25, 6449593.75 ], [ 563747.25, 6449593.75 ], [ 563747.25, 6449594.25 ], [ 563749.25, 6449594.25 ], [ 563749.25, 6449594.75 ], [ 563750.25, 6449594.75 ], [ 563750.25, 6449595.25 ], [ 563751.25, 6449595.25 ], [ 563751.25, 6449595.75 ], [ 563751.75, 6449595.75 ], [ 563751.75, 6449596.25 ], [ 563751.25, 6449596.25 ], [ 563751.25, 6449597.75 ], [ 563750.75, 6449597.75 ], [ 563750.75, 6449599.75 ], [ 563750.25, 6449599.75 ], [ 563750.25, 6449600.25 ], [ 563743.25, 6449600.25 ] ], [ [ 563747.25, 6449596.25 ], [ 563747.75, 6449596.25 ], [ 563747.75, 6449595.75 ], [ 563747.25, 6449595.75 ], [ 563747.25, 6449596.25 ] ], [ [ 563739.75, 6449593.75 ], [ 563740.25, 6449593.75 ], [ 563740.25, 6449593.25 ], [ 563739.75, 6449593.25 ], [ 563739.75, 6449593.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563711.25, 6449590.75 ], [ 563711.25, 6449590.25 ], [ 563707.25, 6449590.25 ], [ 563707.25, 6449589.75 ], [ 563706.25, 6449589.75 ], [ 563706.25, 6449589.25 ], [ 563705.75, 6449589.25 ], [ 563705.75, 6449587.75 ], [ 563706.25, 6449587.75 ], [ 563706.25, 6449584.75 ], [ 563706.75, 6449584.75 ], [ 563706.75, 6449583.25 ], [ 563707.25, 6449583.25 ], [ 563707.25, 6449583.75 ], [ 563709.75, 6449583.75 ], [ 563709.75, 6449584.25 ], [ 563711.75, 6449584.25 ], [ 563711.75, 6449584.75 ], [ 563712.75, 6449584.75 ], [ 563712.75, 6449587.25 ], [ 563712.25, 6449587.25 ], [ 563712.25, 6449588.25 ], [ 563712.75, 6449588.25 ], [ 563712.75, 6449588.75 ], [ 563712.25, 6449588.75 ], [ 563712.25, 6449590.75 ], [ 563711.25, 6449590.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563717.25, 6449553.25 ], [ 563717.25, 6449552.75 ], [ 563715.25, 6449552.75 ], [ 563715.25, 6449552.25 ], [ 563713.25, 6449552.25 ], [ 563713.25, 6449551.75 ], [ 563710.75, 6449551.75 ], [ 563710.75, 6449551.25 ], [ 563709.25, 6449551.25 ], [ 563709.25, 6449550.75 ], [ 563708.75, 6449550.75 ], [ 563708.75, 6449551.25 ], [ 563708.25, 6449551.25 ], [ 563708.25, 6449550.75 ], [ 563706.75, 6449550.75 ], [ 563706.75, 6449549.25 ], [ 563704.75, 6449549.25 ], [ 563704.75, 6449548.75 ], [ 563703.75, 6449548.75 ], [ 563703.75, 6449546.75 ], [ 563704.25, 6449546.75 ], [ 563704.25, 6449543.25 ], [ 563704.75, 6449543.25 ], [ 563704.75, 6449540.75 ], [ 563705.25, 6449540.75 ], [ 563705.25, 6449538.75 ], [ 563706.25, 6449538.75 ], [ 563706.25, 6449539.25 ], [ 563707.25, 6449539.25 ], [ 563707.25, 6449539.75 ], [ 563709.25, 6449539.75 ], [ 563709.25, 6449539.25 ], [ 563711.25, 6449539.25 ], [ 563711.25, 6449539.75 ], [ 563711.75, 6449539.75 ], [ 563711.75, 6449540.25 ], [ 563713.75, 6449540.25 ], [ 563713.75, 6449540.75 ], [ 563716.25, 6449540.75 ], [ 563716.25, 6449541.25 ], [ 563719.75, 6449541.25 ], [ 563719.75, 6449541.75 ], [ 563720.25, 6449541.75 ], [ 563720.25, 6449542.25 ], [ 563721.25, 6449542.25 ], [ 563721.25, 6449544.25 ], [ 563720.75, 6449544.25 ], [ 563720.75, 6449547.25 ], [ 563720.25, 6449547.25 ], [ 563720.25, 6449549.25 ], [ 563719.75, 6449549.25 ], [ 563719.75, 6449551.25 ], [ 563719.25, 6449551.25 ], [ 563719.25, 6449552.75 ], [ 563718.75, 6449552.75 ], [ 563718.75, 6449553.25 ], [ 563717.25, 6449553.25 ] ], [ [ 563706.75, 6449547.75 ], [ 563707.25, 6449547.75 ], [ 563707.25, 6449547.25 ], [ 563706.75, 6449547.25 ], [ 563706.75, 6449547.75 ] ], [ [ 563706.75, 6449546.75 ], [ 563707.25, 6449546.75 ], [ 563707.25, 6449546.25 ], [ 563706.75, 6449546.25 ], [ 563706.75, 6449546.75 ] ] ] } } +] +} diff --git a/data/mobj0/niv2/intrinsic/tile_splitted_2818_32248.geojson b/data/mobj0/niv2/intrinsic/tile_splitted_2818_32248.geojson new file mode 100644 index 0000000..de8ed22 --- /dev/null +++ b/data/mobj0/niv2/intrinsic/tile_splitted_2818_32248.geojson @@ -0,0 +1,85 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563757.25, 6449706.25 ], [ 563757.25, 6449705.75 ], [ 563755.75, 6449705.75 ], [ 563755.75, 6449705.25 ], [ 563756.25, 6449705.25 ], [ 563756.25, 6449704.75 ], [ 563757.25, 6449704.75 ], [ 563757.25, 6449705.25 ], [ 563760.25, 6449705.25 ], [ 563760.25, 6449705.75 ], [ 563759.75, 6449705.75 ], [ 563759.75, 6449706.25 ], [ 563758.75, 6449706.25 ], [ 563758.75, 6449705.75 ], [ 563757.75, 6449705.75 ], [ 563757.75, 6449706.25 ], [ 563757.25, 6449706.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563765.25, 6449707.25 ], [ 563765.25, 6449706.25 ], [ 563765.75, 6449706.25 ], [ 563765.75, 6449705.75 ], [ 563766.25, 6449705.75 ], [ 563766.25, 6449701.75 ], [ 563766.75, 6449701.75 ], [ 563766.75, 6449699.75 ], [ 563767.25, 6449699.75 ], [ 563767.25, 6449698.75 ], [ 563767.75, 6449698.75 ], [ 563767.75, 6449701.75 ], [ 563767.25, 6449701.75 ], [ 563767.25, 6449702.25 ], [ 563767.75, 6449702.25 ], [ 563767.75, 6449702.75 ], [ 563767.25, 6449702.75 ], [ 563767.25, 6449704.75 ], [ 563766.75, 6449704.75 ], [ 563766.75, 6449707.25 ], [ 563765.25, 6449707.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563758.25, 6449702.75 ], [ 563758.25, 6449702.25 ], [ 563757.75, 6449702.25 ], [ 563757.75, 6449701.75 ], [ 563757.25, 6449701.75 ], [ 563757.25, 6449702.25 ], [ 563756.25, 6449702.25 ], [ 563756.25, 6449700.25 ], [ 563756.75, 6449700.25 ], [ 563756.75, 6449698.75 ], [ 563760.25, 6449698.75 ], [ 563760.25, 6449699.25 ], [ 563761.25, 6449699.25 ], [ 563761.25, 6449700.75 ], [ 563760.75, 6449700.75 ], [ 563760.75, 6449701.75 ], [ 563761.75, 6449701.75 ], [ 563761.75, 6449702.25 ], [ 563761.25, 6449702.25 ], [ 563761.25, 6449702.75 ], [ 563758.25, 6449702.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563767.75, 6449697.25 ], [ 563767.75, 6449696.75 ], [ 563768.25, 6449696.75 ], [ 563768.25, 6449697.25 ], [ 563767.75, 6449697.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563758.25, 6449698.25 ], [ 563758.25, 6449697.25 ], [ 563758.75, 6449697.25 ], [ 563758.75, 6449696.75 ], [ 563757.25, 6449696.75 ], [ 563757.25, 6449696.25 ], [ 563759.25, 6449696.25 ], [ 563759.25, 6449696.75 ], [ 563759.75, 6449696.75 ], [ 563759.75, 6449697.25 ], [ 563758.75, 6449697.25 ], [ 563758.75, 6449697.75 ], [ 563759.25, 6449697.75 ], [ 563759.25, 6449698.25 ], [ 563758.25, 6449698.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563767.75, 6449696.25 ], [ 563767.75, 6449694.25 ], [ 563768.25, 6449694.25 ], [ 563768.25, 6449691.25 ], [ 563766.25, 6449691.25 ], [ 563766.25, 6449690.25 ], [ 563765.75, 6449690.25 ], [ 563765.75, 6449689.75 ], [ 563769.25, 6449689.75 ], [ 563769.25, 6449691.25 ], [ 563768.75, 6449691.25 ], [ 563768.75, 6449696.25 ], [ 563767.75, 6449696.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563792.75, 6449692.75 ], [ 563792.75, 6449692.25 ], [ 563790.75, 6449692.25 ], [ 563790.75, 6449691.75 ], [ 563790.25, 6449691.75 ], [ 563790.25, 6449692.25 ], [ 563789.25, 6449692.25 ], [ 563789.25, 6449691.75 ], [ 563788.75, 6449691.75 ], [ 563788.75, 6449688.75 ], [ 563789.25, 6449688.75 ], [ 563789.25, 6449687.75 ], [ 563790.75, 6449687.75 ], [ 563790.75, 6449688.25 ], [ 563794.25, 6449688.25 ], [ 563794.25, 6449690.25 ], [ 563793.75, 6449690.25 ], [ 563793.75, 6449692.25 ], [ 563793.25, 6449692.25 ], [ 563793.25, 6449692.75 ], [ 563792.75, 6449692.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563745.25, 6449691.75 ], [ 563745.25, 6449691.25 ], [ 563744.75, 6449691.25 ], [ 563744.75, 6449688.25 ], [ 563745.25, 6449688.25 ], [ 563745.25, 6449687.75 ], [ 563746.75, 6449687.75 ], [ 563746.75, 6449688.25 ], [ 563747.75, 6449688.25 ], [ 563747.75, 6449690.25 ], [ 563747.25, 6449690.25 ], [ 563747.25, 6449691.75 ], [ 563745.25, 6449691.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563747.25, 6449686.75 ], [ 563747.25, 6449686.25 ], [ 563747.75, 6449686.25 ], [ 563747.75, 6449686.75 ], [ 563747.25, 6449686.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563794.25, 6449687.75 ], [ 563794.25, 6449685.75 ], [ 563794.75, 6449685.75 ], [ 563794.75, 6449687.75 ], [ 563794.25, 6449687.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563794.25, 6449685.25 ], [ 563794.25, 6449684.75 ], [ 563794.75, 6449684.75 ], [ 563794.75, 6449682.25 ], [ 563795.25, 6449682.25 ], [ 563795.25, 6449679.25 ], [ 563796.25, 6449679.25 ], [ 563796.25, 6449679.75 ], [ 563796.75, 6449679.75 ], [ 563796.75, 6449680.75 ], [ 563796.25, 6449680.75 ], [ 563796.25, 6449682.25 ], [ 563796.75, 6449682.25 ], [ 563796.75, 6449682.75 ], [ 563796.25, 6449682.75 ], [ 563796.25, 6449683.75 ], [ 563795.75, 6449683.75 ], [ 563795.75, 6449684.25 ], [ 563796.25, 6449684.25 ], [ 563796.25, 6449684.75 ], [ 563794.75, 6449684.75 ], [ 563794.75, 6449685.25 ], [ 563794.25, 6449685.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563794.75, 6449678.75 ], [ 563794.75, 6449678.25 ], [ 563794.25, 6449678.25 ], [ 563794.25, 6449677.75 ], [ 563795.25, 6449677.75 ], [ 563795.25, 6449678.75 ], [ 563794.75, 6449678.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563791.25, 6449677.75 ], [ 563791.25, 6449677.25 ], [ 563791.75, 6449677.25 ], [ 563791.75, 6449677.75 ], [ 563791.25, 6449677.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563760.25, 6449676.25 ], [ 563760.25, 6449675.75 ], [ 563760.75, 6449675.75 ], [ 563760.75, 6449676.25 ], [ 563760.25, 6449676.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563781.75, 6449677.75 ], [ 563781.75, 6449677.25 ], [ 563782.25, 6449677.25 ], [ 563782.25, 6449676.25 ], [ 563782.75, 6449676.25 ], [ 563782.75, 6449675.25 ], [ 563783.25, 6449675.25 ], [ 563783.25, 6449675.75 ], [ 563783.75, 6449675.75 ], [ 563783.75, 6449676.25 ], [ 563782.75, 6449676.25 ], [ 563782.75, 6449677.25 ], [ 563783.25, 6449677.25 ], [ 563783.25, 6449677.75 ], [ 563781.75, 6449677.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563756.25, 6449675.75 ], [ 563756.25, 6449674.75 ], [ 563757.25, 6449674.75 ], [ 563757.25, 6449675.25 ], [ 563757.75, 6449675.25 ], [ 563757.75, 6449675.75 ], [ 563756.25, 6449675.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563760.25, 6449673.75 ], [ 563760.25, 6449673.25 ], [ 563760.75, 6449673.25 ], [ 563760.75, 6449673.75 ], [ 563760.25, 6449673.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563761.25, 6449673.75 ], [ 563761.25, 6449672.25 ], [ 563762.75, 6449672.25 ], [ 563762.75, 6449672.75 ], [ 563763.25, 6449672.75 ], [ 563763.25, 6449673.25 ], [ 563762.75, 6449673.25 ], [ 563762.75, 6449673.75 ], [ 563761.25, 6449673.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563758.75, 6449672.25 ], [ 563758.75, 6449671.75 ], [ 563759.25, 6449671.75 ], [ 563759.25, 6449672.25 ], [ 563758.75, 6449672.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563760.75, 6449670.75 ], [ 563760.75, 6449670.25 ], [ 563761.25, 6449670.25 ], [ 563761.25, 6449670.75 ], [ 563760.75, 6449670.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563743.75, 6449663.75 ], [ 563743.75, 6449663.25 ], [ 563743.25, 6449663.25 ], [ 563743.25, 6449661.75 ], [ 563744.25, 6449661.75 ], [ 563744.25, 6449663.75 ], [ 563743.75, 6449663.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563690.25, 6449648.25 ], [ 563690.25, 6449647.75 ], [ 563690.75, 6449647.75 ], [ 563690.75, 6449648.25 ], [ 563690.25, 6449648.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563798.25, 6449647.75 ], [ 563798.25, 6449647.25 ], [ 563797.75, 6449647.25 ], [ 563797.75, 6449646.75 ], [ 563798.75, 6449646.75 ], [ 563798.75, 6449647.75 ], [ 563798.25, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.25, 6449647.75 ], [ 563799.25, 6449646.75 ], [ 563799.75, 6449646.75 ], [ 563799.75, 6449647.75 ], [ 563799.25, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563795.75, 6449647.25 ], [ 563795.75, 6449646.75 ], [ 563797.25, 6449646.75 ], [ 563797.25, 6449647.25 ], [ 563795.75, 6449647.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563793.75, 6449646.75 ], [ 563793.75, 6449646.25 ], [ 563794.25, 6449646.25 ], [ 563794.25, 6449646.75 ], [ 563793.75, 6449646.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563791.25, 6449646.25 ], [ 563791.25, 6449645.75 ], [ 563788.75, 6449645.75 ], [ 563788.75, 6449645.25 ], [ 563791.25, 6449645.25 ], [ 563791.25, 6449645.75 ], [ 563791.75, 6449645.75 ], [ 563791.75, 6449646.25 ], [ 563791.25, 6449646.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563785.25, 6449645.25 ], [ 563785.25, 6449644.75 ], [ 563784.75, 6449644.75 ], [ 563784.75, 6449644.25 ], [ 563785.25, 6449644.25 ], [ 563785.25, 6449644.75 ], [ 563785.75, 6449644.75 ], [ 563785.75, 6449645.25 ], [ 563785.25, 6449645.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563783.75, 6449644.75 ], [ 563783.75, 6449644.25 ], [ 563784.25, 6449644.25 ], [ 563784.25, 6449644.75 ], [ 563783.75, 6449644.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563691.25, 6449647.75 ], [ 563691.25, 6449647.25 ], [ 563690.75, 6449647.25 ], [ 563690.75, 6449646.25 ], [ 563691.25, 6449646.25 ], [ 563691.25, 6449645.75 ], [ 563690.75, 6449645.75 ], [ 563690.75, 6449645.25 ], [ 563691.25, 6449645.25 ], [ 563691.25, 6449644.25 ], [ 563691.75, 6449644.25 ], [ 563691.75, 6449643.75 ], [ 563692.25, 6449643.75 ], [ 563692.25, 6449644.25 ], [ 563692.75, 6449644.25 ], [ 563692.75, 6449647.75 ], [ 563691.25, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563782.25, 6449644.75 ], [ 563782.25, 6449644.25 ], [ 563780.25, 6449644.25 ], [ 563780.25, 6449643.75 ], [ 563781.75, 6449643.75 ], [ 563781.75, 6449643.25 ], [ 563782.25, 6449643.25 ], [ 563782.25, 6449643.75 ], [ 563782.75, 6449643.75 ], [ 563782.75, 6449644.75 ], [ 563782.25, 6449644.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563776.25, 6449643.75 ], [ 563776.25, 6449643.25 ], [ 563776.75, 6449643.25 ], [ 563776.75, 6449643.75 ], [ 563776.25, 6449643.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563779.25, 6449644.25 ], [ 563779.25, 6449643.75 ], [ 563777.25, 6449643.75 ], [ 563777.25, 6449642.75 ], [ 563777.75, 6449642.75 ], [ 563777.75, 6449643.25 ], [ 563779.25, 6449643.25 ], [ 563779.25, 6449643.75 ], [ 563779.75, 6449643.75 ], [ 563779.75, 6449644.25 ], [ 563779.25, 6449644.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563774.25, 6449643.25 ], [ 563774.25, 6449642.75 ], [ 563772.75, 6449642.75 ], [ 563772.75, 6449642.25 ], [ 563774.25, 6449642.25 ], [ 563774.25, 6449642.75 ], [ 563774.75, 6449642.75 ], [ 563774.75, 6449642.25 ], [ 563775.25, 6449642.25 ], [ 563775.25, 6449642.75 ], [ 563774.75, 6449642.75 ], [ 563774.75, 6449643.25 ], [ 563774.25, 6449643.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563770.75, 6449642.25 ], [ 563770.75, 6449641.75 ], [ 563771.25, 6449641.75 ], [ 563771.25, 6449641.25 ], [ 563772.25, 6449641.25 ], [ 563772.25, 6449642.25 ], [ 563770.75, 6449642.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563791.75, 6449638.75 ], [ 563791.75, 6449637.75 ], [ 563792.75, 6449637.75 ], [ 563792.75, 6449638.25 ], [ 563793.25, 6449638.25 ], [ 563793.25, 6449638.75 ], [ 563791.75, 6449638.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.25, 6449629.75 ], [ 563799.25, 6449629.25 ], [ 563796.75, 6449629.25 ], [ 563796.75, 6449628.75 ], [ 563794.75, 6449628.75 ], [ 563794.75, 6449627.75 ], [ 563795.25, 6449627.75 ], [ 563795.25, 6449628.25 ], [ 563796.75, 6449628.25 ], [ 563796.75, 6449628.75 ], [ 563799.25, 6449628.75 ], [ 563799.25, 6449629.25 ], [ 563799.75, 6449629.25 ], [ 563799.75, 6449629.75 ], [ 563799.25, 6449629.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563792.75, 6449628.25 ], [ 563792.75, 6449627.75 ], [ 563791.75, 6449627.75 ], [ 563791.75, 6449627.25 ], [ 563792.75, 6449627.25 ], [ 563792.75, 6449627.75 ], [ 563794.25, 6449627.75 ], [ 563794.25, 6449628.25 ], [ 563792.75, 6449628.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563790.25, 6449627.25 ], [ 563790.25, 6449626.75 ], [ 563791.25, 6449626.75 ], [ 563791.25, 6449627.25 ], [ 563790.25, 6449627.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563770.75, 6449626.25 ], [ 563770.75, 6449625.75 ], [ 563771.25, 6449625.75 ], [ 563771.25, 6449626.25 ], [ 563770.75, 6449626.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563769.75, 6449632.25 ], [ 563769.75, 6449630.75 ], [ 563768.75, 6449630.75 ], [ 563768.75, 6449630.25 ], [ 563767.75, 6449630.25 ], [ 563767.75, 6449629.75 ], [ 563769.75, 6449629.75 ], [ 563769.75, 6449629.25 ], [ 563770.25, 6449629.25 ], [ 563770.25, 6449627.75 ], [ 563770.75, 6449627.75 ], [ 563770.75, 6449627.25 ], [ 563771.75, 6449627.25 ], [ 563771.75, 6449626.25 ], [ 563772.25, 6449626.25 ], [ 563772.25, 6449624.75 ], [ 563773.75, 6449624.75 ], [ 563773.75, 6449625.25 ], [ 563774.75, 6449625.25 ], [ 563774.75, 6449624.75 ], [ 563775.25, 6449624.75 ], [ 563775.25, 6449626.75 ], [ 563774.75, 6449626.75 ], [ 563774.75, 6449629.75 ], [ 563774.25, 6449629.75 ], [ 563774.25, 6449630.25 ], [ 563771.25, 6449630.25 ], [ 563771.25, 6449631.75 ], [ 563770.75, 6449631.75 ], [ 563770.75, 6449632.25 ], [ 563769.75, 6449632.25 ] ], [ [ 563770.75, 6449630.25 ], [ 563771.25, 6449630.25 ], [ 563771.25, 6449629.75 ], [ 563770.75, 6449629.75 ], [ 563770.75, 6449630.25 ] ], [ [ 563771.25, 6449628.75 ], [ 563771.75, 6449628.75 ], [ 563771.75, 6449628.25 ], [ 563771.25, 6449628.25 ], [ 563771.25, 6449628.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563764.25, 6449628.25 ], [ 563764.25, 6449627.75 ], [ 563763.75, 6449627.75 ], [ 563763.75, 6449626.25 ], [ 563761.75, 6449626.25 ], [ 563761.75, 6449625.75 ], [ 563761.25, 6449625.75 ], [ 563761.25, 6449625.25 ], [ 563759.75, 6449625.25 ], [ 563759.75, 6449624.25 ], [ 563761.75, 6449624.25 ], [ 563761.75, 6449624.75 ], [ 563762.75, 6449624.75 ], [ 563762.75, 6449625.25 ], [ 563764.75, 6449625.25 ], [ 563764.75, 6449625.75 ], [ 563765.25, 6449625.75 ], [ 563765.25, 6449627.25 ], [ 563764.75, 6449627.25 ], [ 563764.75, 6449628.25 ], [ 563764.25, 6449628.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563797.25, 6449624.75 ], [ 563797.25, 6449624.25 ], [ 563796.25, 6449624.25 ], [ 563796.25, 6449623.75 ], [ 563795.75, 6449623.75 ], [ 563795.75, 6449624.25 ], [ 563795.25, 6449624.25 ], [ 563795.25, 6449623.75 ], [ 563793.75, 6449623.75 ], [ 563793.75, 6449623.25 ], [ 563791.25, 6449623.25 ], [ 563791.25, 6449622.75 ], [ 563790.75, 6449622.75 ], [ 563790.75, 6449622.25 ], [ 563791.25, 6449622.25 ], [ 563791.25, 6449621.75 ], [ 563792.25, 6449621.75 ], [ 563792.25, 6449622.25 ], [ 563794.75, 6449622.25 ], [ 563794.75, 6449622.75 ], [ 563796.75, 6449622.75 ], [ 563796.75, 6449623.25 ], [ 563798.25, 6449623.25 ], [ 563798.25, 6449623.75 ], [ 563798.75, 6449623.75 ], [ 563798.75, 6449623.25 ], [ 563799.25, 6449623.25 ], [ 563799.25, 6449623.75 ], [ 563799.75, 6449623.75 ], [ 563799.75, 6449624.75 ], [ 563798.25, 6449624.75 ], [ 563798.25, 6449624.25 ], [ 563797.75, 6449624.25 ], [ 563797.75, 6449624.75 ], [ 563797.25, 6449624.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563770.75, 6449623.75 ], [ 563770.75, 6449623.25 ], [ 563767.75, 6449623.25 ], [ 563767.75, 6449622.75 ], [ 563765.25, 6449622.75 ], [ 563765.25, 6449622.25 ], [ 563762.25, 6449622.25 ], [ 563762.25, 6449621.75 ], [ 563761.75, 6449621.75 ], [ 563761.75, 6449622.25 ], [ 563761.25, 6449622.25 ], [ 563761.25, 6449621.75 ], [ 563760.25, 6449621.75 ], [ 563760.25, 6449621.25 ], [ 563760.75, 6449621.25 ], [ 563760.75, 6449620.75 ], [ 563763.75, 6449620.75 ], [ 563763.75, 6449621.25 ], [ 563766.75, 6449621.25 ], [ 563766.75, 6449621.75 ], [ 563769.25, 6449621.75 ], [ 563769.25, 6449622.25 ], [ 563772.25, 6449622.25 ], [ 563772.25, 6449622.75 ], [ 563773.25, 6449622.75 ], [ 563773.25, 6449623.25 ], [ 563772.75, 6449623.25 ], [ 563772.75, 6449623.75 ], [ 563770.75, 6449623.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563719.75, 6449623.75 ], [ 563719.75, 6449623.25 ], [ 563719.25, 6449623.25 ], [ 563719.25, 6449622.75 ], [ 563718.75, 6449622.75 ], [ 563718.75, 6449622.25 ], [ 563718.25, 6449622.25 ], [ 563718.25, 6449621.25 ], [ 563718.75, 6449621.25 ], [ 563718.75, 6449620.75 ], [ 563719.25, 6449620.75 ], [ 563719.25, 6449620.25 ], [ 563721.75, 6449620.25 ], [ 563721.75, 6449621.25 ], [ 563722.25, 6449621.25 ], [ 563722.25, 6449622.25 ], [ 563721.75, 6449622.25 ], [ 563721.75, 6449623.25 ], [ 563720.75, 6449623.25 ], [ 563720.75, 6449623.75 ], [ 563719.75, 6449623.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563760.25, 6449618.75 ], [ 563760.25, 6449618.25 ], [ 563759.75, 6449618.25 ], [ 563759.75, 6449616.75 ], [ 563760.25, 6449616.75 ], [ 563760.25, 6449615.25 ], [ 563761.25, 6449615.25 ], [ 563761.25, 6449615.75 ], [ 563761.75, 6449615.75 ], [ 563761.75, 6449616.25 ], [ 563761.25, 6449616.25 ], [ 563761.25, 6449616.75 ], [ 563761.75, 6449616.75 ], [ 563761.75, 6449617.25 ], [ 563761.25, 6449617.25 ], [ 563761.25, 6449618.25 ], [ 563760.75, 6449618.25 ], [ 563760.75, 6449618.75 ], [ 563760.25, 6449618.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.25, 6449616.75 ], [ 563799.25, 6449616.25 ], [ 563798.25, 6449616.25 ], [ 563798.25, 6449615.75 ], [ 563797.25, 6449615.75 ], [ 563797.25, 6449615.25 ], [ 563792.75, 6449615.25 ], [ 563792.75, 6449614.25 ], [ 563793.25, 6449614.25 ], [ 563793.25, 6449613.75 ], [ 563794.25, 6449613.75 ], [ 563794.25, 6449614.25 ], [ 563795.75, 6449614.25 ], [ 563795.75, 6449614.75 ], [ 563796.75, 6449614.75 ], [ 563796.75, 6449614.25 ], [ 563797.25, 6449614.25 ], [ 563797.25, 6449614.75 ], [ 563798.25, 6449614.75 ], [ 563798.25, 6449615.25 ], [ 563799.25, 6449615.25 ], [ 563799.25, 6449616.25 ], [ 563799.75, 6449616.25 ], [ 563799.75, 6449615.75 ], [ 563800.25, 6449615.75 ], [ 563800.25, 6449616.75 ], [ 563799.25, 6449616.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563772.25, 6449615.75 ], [ 563772.25, 6449615.25 ], [ 563771.25, 6449615.25 ], [ 563771.25, 6449614.75 ], [ 563769.75, 6449614.75 ], [ 563769.75, 6449613.25 ], [ 563770.25, 6449613.25 ], [ 563770.25, 6449611.75 ], [ 563772.75, 6449611.75 ], [ 563772.75, 6449612.25 ], [ 563773.75, 6449612.25 ], [ 563773.75, 6449613.25 ], [ 563773.25, 6449613.25 ], [ 563773.25, 6449614.75 ], [ 563772.75, 6449614.75 ], [ 563772.75, 6449615.75 ], [ 563772.25, 6449615.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563752.75, 6449613.75 ], [ 563752.75, 6449613.25 ], [ 563751.25, 6449613.25 ], [ 563751.25, 6449612.75 ], [ 563750.25, 6449612.75 ], [ 563750.25, 6449612.25 ], [ 563749.75, 6449612.25 ], [ 563749.75, 6449611.75 ], [ 563750.25, 6449611.75 ], [ 563750.25, 6449611.25 ], [ 563750.75, 6449611.25 ], [ 563750.75, 6449611.75 ], [ 563751.75, 6449611.75 ], [ 563751.75, 6449612.25 ], [ 563753.25, 6449612.25 ], [ 563753.25, 6449612.75 ], [ 563754.75, 6449612.75 ], [ 563754.75, 6449613.75 ], [ 563752.75, 6449613.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563765.25, 6449610.75 ], [ 563765.25, 6449610.25 ], [ 563765.75, 6449610.25 ], [ 563765.75, 6449610.75 ], [ 563765.25, 6449610.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563766.25, 6449611.25 ], [ 563766.25, 6449609.25 ], [ 563766.75, 6449609.25 ], [ 563766.75, 6449610.25 ], [ 563767.25, 6449610.25 ], [ 563767.25, 6449611.25 ], [ 563766.25, 6449611.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563747.25, 6449611.25 ], [ 563747.25, 6449610.75 ], [ 563746.25, 6449610.75 ], [ 563746.25, 6449610.25 ], [ 563745.75, 6449610.25 ], [ 563745.75, 6449609.25 ], [ 563746.25, 6449609.25 ], [ 563746.25, 6449609.75 ], [ 563747.25, 6449609.75 ], [ 563747.25, 6449610.25 ], [ 563748.25, 6449610.25 ], [ 563748.25, 6449610.75 ], [ 563749.25, 6449610.75 ], [ 563749.25, 6449611.25 ], [ 563747.25, 6449611.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563762.75, 6449609.75 ], [ 563762.75, 6449608.25 ], [ 563762.25, 6449608.25 ], [ 563762.25, 6449607.75 ], [ 563762.75, 6449607.75 ], [ 563762.75, 6449608.25 ], [ 563763.25, 6449608.25 ], [ 563763.25, 6449609.75 ], [ 563762.75, 6449609.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563729.75, 6449608.25 ], [ 563729.75, 6449607.75 ], [ 563729.25, 6449607.75 ], [ 563729.25, 6449607.25 ], [ 563728.75, 6449607.25 ], [ 563728.75, 6449606.25 ], [ 563729.25, 6449606.25 ], [ 563729.25, 6449606.75 ], [ 563731.25, 6449606.75 ], [ 563731.25, 6449608.25 ], [ 563729.75, 6449608.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563723.75, 6449607.25 ], [ 563723.75, 6449605.75 ], [ 563724.75, 6449605.75 ], [ 563724.75, 6449606.75 ], [ 563725.25, 6449606.75 ], [ 563725.25, 6449607.25 ], [ 563723.75, 6449607.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563733.25, 6449606.25 ], [ 563733.25, 6449605.75 ], [ 563734.25, 6449605.75 ], [ 563734.25, 6449606.25 ], [ 563733.25, 6449606.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563739.25, 6449606.25 ], [ 563739.25, 6449605.75 ], [ 563738.75, 6449605.75 ], [ 563738.75, 6449605.25 ], [ 563738.25, 6449605.25 ], [ 563738.25, 6449604.75 ], [ 563739.25, 6449604.75 ], [ 563739.25, 6449605.25 ], [ 563740.25, 6449605.25 ], [ 563740.25, 6449605.75 ], [ 563739.75, 6449605.75 ], [ 563739.75, 6449606.25 ], [ 563739.25, 6449606.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563725.75, 6449608.25 ], [ 563725.75, 6449607.75 ], [ 563726.25, 6449607.75 ], [ 563726.25, 6449607.25 ], [ 563726.75, 6449607.25 ], [ 563726.75, 6449606.25 ], [ 563726.25, 6449606.25 ], [ 563726.25, 6449605.75 ], [ 563725.25, 6449605.75 ], [ 563725.25, 6449604.75 ], [ 563726.25, 6449604.75 ], [ 563726.25, 6449605.25 ], [ 563727.25, 6449605.25 ], [ 563727.25, 6449608.25 ], [ 563725.75, 6449608.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563736.75, 6449606.25 ], [ 563736.75, 6449605.75 ], [ 563735.75, 6449605.75 ], [ 563735.75, 6449605.25 ], [ 563735.25, 6449605.25 ], [ 563735.25, 6449605.75 ], [ 563734.75, 6449605.75 ], [ 563734.75, 6449605.25 ], [ 563734.25, 6449605.25 ], [ 563734.25, 6449603.75 ], [ 563735.75, 6449603.75 ], [ 563735.75, 6449605.25 ], [ 563736.25, 6449605.25 ], [ 563736.25, 6449604.75 ], [ 563736.75, 6449604.75 ], [ 563736.75, 6449605.25 ], [ 563737.75, 6449605.25 ], [ 563737.75, 6449605.75 ], [ 563737.25, 6449605.75 ], [ 563737.25, 6449606.25 ], [ 563736.75, 6449606.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563751.75, 6449604.25 ], [ 563751.75, 6449603.75 ], [ 563752.25, 6449603.75 ], [ 563752.25, 6449604.25 ], [ 563751.75, 6449604.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563750.75, 6449604.25 ], [ 563750.75, 6449603.75 ], [ 563750.25, 6449603.75 ], [ 563750.25, 6449603.25 ], [ 563748.75, 6449603.25 ], [ 563748.75, 6449602.75 ], [ 563748.25, 6449602.75 ], [ 563748.25, 6449602.25 ], [ 563748.75, 6449602.25 ], [ 563748.75, 6449602.75 ], [ 563750.75, 6449602.75 ], [ 563750.75, 6449603.25 ], [ 563751.25, 6449603.25 ], [ 563751.25, 6449604.25 ], [ 563750.75, 6449604.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563746.75, 6449602.25 ], [ 563746.75, 6449601.75 ], [ 563747.25, 6449601.75 ], [ 563747.25, 6449602.25 ], [ 563746.75, 6449602.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563744.75, 6449602.25 ], [ 563744.75, 6449601.25 ], [ 563744.25, 6449601.25 ], [ 563744.25, 6449600.75 ], [ 563745.25, 6449600.75 ], [ 563745.25, 6449601.25 ], [ 563746.25, 6449601.25 ], [ 563746.25, 6449602.25 ], [ 563744.75, 6449602.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563727.25, 6449603.75 ], [ 563727.25, 6449602.25 ], [ 563724.25, 6449602.25 ], [ 563724.25, 6449601.75 ], [ 563723.75, 6449601.75 ], [ 563723.75, 6449602.25 ], [ 563723.25, 6449602.25 ], [ 563723.25, 6449601.75 ], [ 563722.75, 6449601.75 ], [ 563722.75, 6449602.25 ], [ 563722.25, 6449602.25 ], [ 563722.25, 6449600.75 ], [ 563726.25, 6449600.75 ], [ 563726.25, 6449601.25 ], [ 563726.75, 6449601.25 ], [ 563726.75, 6449600.75 ], [ 563727.25, 6449600.75 ], [ 563727.25, 6449601.25 ], [ 563727.75, 6449601.25 ], [ 563727.75, 6449600.25 ], [ 563728.25, 6449600.25 ], [ 563728.25, 6449601.25 ], [ 563729.25, 6449601.25 ], [ 563729.25, 6449600.75 ], [ 563729.75, 6449600.75 ], [ 563729.75, 6449601.25 ], [ 563730.75, 6449601.25 ], [ 563730.75, 6449600.75 ], [ 563731.25, 6449600.75 ], [ 563731.25, 6449601.25 ], [ 563732.75, 6449601.25 ], [ 563732.75, 6449601.75 ], [ 563732.25, 6449601.75 ], [ 563732.25, 6449602.25 ], [ 563732.75, 6449602.25 ], [ 563732.75, 6449602.75 ], [ 563732.25, 6449602.75 ], [ 563732.25, 6449603.25 ], [ 563731.75, 6449603.25 ], [ 563731.75, 6449602.75 ], [ 563728.25, 6449602.75 ], [ 563728.25, 6449603.25 ], [ 563727.75, 6449603.25 ], [ 563727.75, 6449603.75 ], [ 563727.25, 6449603.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563740.75, 6449600.75 ], [ 563740.75, 6449600.25 ], [ 563741.25, 6449600.25 ], [ 563741.25, 6449600.75 ], [ 563740.75, 6449600.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563720.25, 6449604.25 ], [ 563720.25, 6449601.75 ], [ 563719.75, 6449601.75 ], [ 563719.75, 6449601.25 ], [ 563720.25, 6449601.25 ], [ 563720.25, 6449599.75 ], [ 563720.75, 6449599.75 ], [ 563720.75, 6449600.25 ], [ 563721.25, 6449600.25 ], [ 563721.25, 6449600.75 ], [ 563720.75, 6449600.75 ], [ 563720.75, 6449604.25 ], [ 563720.25, 6449604.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563749.75, 6449602.25 ], [ 563749.75, 6449601.75 ], [ 563749.25, 6449601.75 ], [ 563749.25, 6449601.25 ], [ 563749.75, 6449601.25 ], [ 563749.75, 6449600.25 ], [ 563750.25, 6449600.25 ], [ 563750.25, 6449599.75 ], [ 563750.75, 6449599.75 ], [ 563750.75, 6449601.25 ], [ 563750.25, 6449601.25 ], [ 563750.25, 6449602.25 ], [ 563749.75, 6449602.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563763.75, 6449708.75 ], [ 563763.75, 6449708.25 ], [ 563763.25, 6449708.25 ], [ 563763.25, 6449707.75 ], [ 563762.75, 6449707.75 ], [ 563762.75, 6449706.75 ], [ 563761.75, 6449706.75 ], [ 563761.75, 6449705.75 ], [ 563762.25, 6449705.75 ], [ 563762.25, 6449699.75 ], [ 563762.75, 6449699.75 ], [ 563762.75, 6449697.75 ], [ 563763.25, 6449697.75 ], [ 563763.25, 6449697.25 ], [ 563762.75, 6449697.25 ], [ 563762.75, 6449696.75 ], [ 563763.25, 6449696.75 ], [ 563763.25, 6449694.25 ], [ 563763.75, 6449694.25 ], [ 563763.75, 6449693.25 ], [ 563764.25, 6449693.25 ], [ 563764.25, 6449692.75 ], [ 563763.75, 6449692.75 ], [ 563763.75, 6449691.25 ], [ 563765.25, 6449691.25 ], [ 563765.25, 6449691.75 ], [ 563766.75, 6449691.75 ], [ 563766.75, 6449691.25 ], [ 563767.25, 6449691.25 ], [ 563767.25, 6449692.25 ], [ 563767.75, 6449692.25 ], [ 563767.75, 6449692.75 ], [ 563768.25, 6449692.75 ], [ 563768.25, 6449693.25 ], [ 563767.75, 6449693.25 ], [ 563767.75, 6449694.25 ], [ 563768.25, 6449694.25 ], [ 563768.25, 6449695.75 ], [ 563767.75, 6449695.75 ], [ 563767.75, 6449697.75 ], [ 563767.25, 6449697.75 ], [ 563767.25, 6449698.25 ], [ 563767.75, 6449698.25 ], [ 563767.75, 6449698.75 ], [ 563767.25, 6449698.75 ], [ 563767.25, 6449699.75 ], [ 563766.75, 6449699.75 ], [ 563766.75, 6449702.75 ], [ 563766.25, 6449702.75 ], [ 563766.25, 6449703.75 ], [ 563765.75, 6449703.75 ], [ 563765.75, 6449704.25 ], [ 563765.25, 6449704.25 ], [ 563765.25, 6449704.75 ], [ 563764.75, 6449704.75 ], [ 563764.75, 6449706.75 ], [ 563765.25, 6449706.75 ], [ 563765.25, 6449707.25 ], [ 563765.75, 6449707.25 ], [ 563765.75, 6449706.75 ], [ 563766.25, 6449706.75 ], [ 563766.25, 6449708.75 ], [ 563765.25, 6449708.75 ], [ 563765.25, 6449708.25 ], [ 563764.25, 6449708.25 ], [ 563764.25, 6449708.75 ], [ 563763.75, 6449708.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563690.25, 6449692.25 ], [ 563690.25, 6449691.75 ], [ 563689.75, 6449691.75 ], [ 563689.75, 6449691.25 ], [ 563689.25, 6449691.25 ], [ 563689.25, 6449691.75 ], [ 563687.75, 6449691.75 ], [ 563687.75, 6449691.25 ], [ 563687.25, 6449691.25 ], [ 563687.25, 6449690.75 ], [ 563687.75, 6449690.75 ], [ 563687.75, 6449687.75 ], [ 563688.25, 6449687.75 ], [ 563688.25, 6449686.25 ], [ 563688.75, 6449686.25 ], [ 563688.75, 6449685.75 ], [ 563688.25, 6449685.75 ], [ 563688.25, 6449684.75 ], [ 563688.75, 6449684.75 ], [ 563688.75, 6449683.75 ], [ 563691.75, 6449683.75 ], [ 563691.75, 6449684.25 ], [ 563693.25, 6449684.25 ], [ 563693.25, 6449684.75 ], [ 563693.75, 6449684.75 ], [ 563693.75, 6449686.75 ], [ 563693.25, 6449686.75 ], [ 563693.25, 6449689.25 ], [ 563692.75, 6449689.25 ], [ 563692.75, 6449691.75 ], [ 563692.25, 6449691.75 ], [ 563692.25, 6449692.25 ], [ 563691.25, 6449692.25 ], [ 563691.25, 6449691.75 ], [ 563690.75, 6449691.75 ], [ 563690.75, 6449692.25 ], [ 563690.25, 6449692.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563767.75, 6449685.75 ], [ 563767.75, 6449685.25 ], [ 563766.75, 6449685.25 ], [ 563766.75, 6449684.75 ], [ 563766.25, 6449684.75 ], [ 563766.25, 6449684.25 ], [ 563765.75, 6449684.25 ], [ 563765.75, 6449681.75 ], [ 563766.25, 6449681.75 ], [ 563766.25, 6449679.75 ], [ 563766.75, 6449679.75 ], [ 563766.75, 6449678.25 ], [ 563767.25, 6449678.25 ], [ 563767.25, 6449677.75 ], [ 563767.75, 6449677.75 ], [ 563767.75, 6449678.25 ], [ 563770.75, 6449678.25 ], [ 563770.75, 6449680.25 ], [ 563770.25, 6449680.25 ], [ 563770.25, 6449680.75 ], [ 563769.75, 6449680.75 ], [ 563769.75, 6449681.25 ], [ 563769.25, 6449681.25 ], [ 563769.25, 6449681.75 ], [ 563768.75, 6449681.75 ], [ 563768.75, 6449682.25 ], [ 563769.25, 6449682.25 ], [ 563769.25, 6449683.25 ], [ 563769.75, 6449683.25 ], [ 563769.75, 6449685.25 ], [ 563769.25, 6449685.25 ], [ 563769.25, 6449685.75 ], [ 563767.75, 6449685.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563793.25, 6449689.25 ], [ 563793.25, 6449688.75 ], [ 563790.25, 6449688.75 ], [ 563790.25, 6449688.25 ], [ 563787.75, 6449688.25 ], [ 563787.75, 6449687.75 ], [ 563784.25, 6449687.75 ], [ 563784.25, 6449687.25 ], [ 563782.75, 6449687.25 ], [ 563782.75, 6449687.75 ], [ 563781.75, 6449687.75 ], [ 563781.75, 6449683.75 ], [ 563782.25, 6449683.75 ], [ 563782.25, 6449680.25 ], [ 563782.75, 6449680.25 ], [ 563782.75, 6449677.75 ], [ 563783.25, 6449677.75 ], [ 563783.25, 6449675.75 ], [ 563784.25, 6449675.75 ], [ 563784.25, 6449676.25 ], [ 563784.75, 6449676.25 ], [ 563784.75, 6449675.75 ], [ 563785.25, 6449675.75 ], [ 563785.25, 6449676.25 ], [ 563786.25, 6449676.25 ], [ 563786.25, 6449676.75 ], [ 563786.75, 6449676.75 ], [ 563786.75, 6449676.25 ], [ 563787.25, 6449676.25 ], [ 563787.25, 6449676.75 ], [ 563789.25, 6449676.75 ], [ 563789.25, 6449677.25 ], [ 563789.75, 6449677.25 ], [ 563789.75, 6449676.75 ], [ 563790.25, 6449676.75 ], [ 563790.25, 6449677.25 ], [ 563793.25, 6449677.25 ], [ 563793.25, 6449677.75 ], [ 563795.25, 6449677.75 ], [ 563795.25, 6449678.25 ], [ 563796.75, 6449678.25 ], [ 563796.75, 6449678.75 ], [ 563796.25, 6449678.75 ], [ 563796.25, 6449679.25 ], [ 563795.75, 6449679.25 ], [ 563795.75, 6449679.75 ], [ 563796.25, 6449679.75 ], [ 563796.25, 6449681.25 ], [ 563795.75, 6449681.25 ], [ 563795.75, 6449685.25 ], [ 563795.25, 6449685.25 ], [ 563795.25, 6449687.25 ], [ 563794.75, 6449687.25 ], [ 563794.75, 6449688.75 ], [ 563793.75, 6449688.75 ], [ 563793.75, 6449689.25 ], [ 563793.25, 6449689.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563736.25, 6449672.75 ], [ 563736.25, 6449671.25 ], [ 563735.75, 6449671.25 ], [ 563735.75, 6449670.75 ], [ 563736.25, 6449670.75 ], [ 563736.25, 6449669.25 ], [ 563736.75, 6449669.25 ], [ 563736.75, 6449668.75 ], [ 563736.25, 6449668.75 ], [ 563736.25, 6449668.25 ], [ 563738.25, 6449668.25 ], [ 563738.25, 6449668.75 ], [ 563739.25, 6449668.75 ], [ 563739.25, 6449669.25 ], [ 563739.75, 6449669.25 ], [ 563739.75, 6449672.75 ], [ 563736.25, 6449672.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563749.25, 6449677.75 ], [ 563749.25, 6449677.25 ], [ 563745.25, 6449677.25 ], [ 563745.25, 6449676.75 ], [ 563744.25, 6449676.75 ], [ 563744.25, 6449676.25 ], [ 563743.75, 6449676.25 ], [ 563743.75, 6449676.75 ], [ 563742.75, 6449676.75 ], [ 563742.75, 6449676.25 ], [ 563742.25, 6449676.25 ], [ 563742.25, 6449674.25 ], [ 563742.75, 6449674.25 ], [ 563742.75, 6449671.25 ], [ 563743.25, 6449671.25 ], [ 563743.25, 6449667.25 ], [ 563743.75, 6449667.25 ], [ 563743.75, 6449665.75 ], [ 563744.25, 6449665.75 ], [ 563744.25, 6449665.25 ], [ 563743.75, 6449665.25 ], [ 563743.75, 6449664.75 ], [ 563744.25, 6449664.75 ], [ 563744.25, 6449662.75 ], [ 563744.75, 6449662.75 ], [ 563744.75, 6449662.25 ], [ 563744.25, 6449662.25 ], [ 563744.25, 6449661.75 ], [ 563744.75, 6449661.75 ], [ 563744.75, 6449661.25 ], [ 563745.25, 6449661.25 ], [ 563745.25, 6449660.75 ], [ 563747.25, 6449660.75 ], [ 563747.25, 6449661.25 ], [ 563750.25, 6449661.25 ], [ 563750.25, 6449661.75 ], [ 563752.25, 6449661.75 ], [ 563752.25, 6449662.25 ], [ 563752.75, 6449662.25 ], [ 563752.75, 6449664.25 ], [ 563755.75, 6449664.25 ], [ 563755.75, 6449664.75 ], [ 563758.25, 6449664.75 ], [ 563758.25, 6449665.25 ], [ 563758.75, 6449665.25 ], [ 563758.75, 6449664.75 ], [ 563759.25, 6449664.75 ], [ 563759.25, 6449666.25 ], [ 563759.75, 6449666.25 ], [ 563759.75, 6449666.75 ], [ 563759.25, 6449666.75 ], [ 563759.25, 6449668.25 ], [ 563758.75, 6449668.25 ], [ 563758.75, 6449671.25 ], [ 563758.25, 6449671.25 ], [ 563758.25, 6449674.75 ], [ 563757.75, 6449674.75 ], [ 563757.75, 6449675.25 ], [ 563755.25, 6449675.25 ], [ 563755.25, 6449674.75 ], [ 563754.75, 6449674.75 ], [ 563754.75, 6449675.25 ], [ 563754.25, 6449675.25 ], [ 563754.25, 6449674.75 ], [ 563753.75, 6449674.75 ], [ 563753.75, 6449674.25 ], [ 563753.25, 6449674.25 ], [ 563753.25, 6449674.75 ], [ 563752.25, 6449674.75 ], [ 563752.25, 6449674.25 ], [ 563750.75, 6449674.25 ], [ 563750.75, 6449675.25 ], [ 563750.25, 6449675.25 ], [ 563750.25, 6449677.25 ], [ 563749.75, 6449677.25 ], [ 563749.75, 6449677.75 ], [ 563749.25, 6449677.75 ] ], [ [ 563747.25, 6449673.25 ], [ 563747.75, 6449673.25 ], [ 563747.75, 6449672.75 ], [ 563747.25, 6449672.75 ], [ 563747.25, 6449673.25 ] ], [ [ 563750.25, 6449671.75 ], [ 563750.75, 6449671.75 ], [ 563750.75, 6449670.75 ], [ 563750.25, 6449670.75 ], [ 563750.25, 6449671.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563687.25, 6449654.25 ], [ 563687.25, 6449653.75 ], [ 563684.75, 6449653.75 ], [ 563684.75, 6449653.25 ], [ 563682.25, 6449653.25 ], [ 563682.25, 6449652.75 ], [ 563679.75, 6449652.75 ], [ 563679.75, 6449652.25 ], [ 563679.25, 6449652.25 ], [ 563679.25, 6449641.75 ], [ 563679.75, 6449641.75 ], [ 563679.75, 6449640.25 ], [ 563680.25, 6449640.25 ], [ 563680.25, 6449639.75 ], [ 563680.75, 6449639.75 ], [ 563680.75, 6449640.25 ], [ 563681.25, 6449640.25 ], [ 563681.25, 6449639.75 ], [ 563681.75, 6449639.75 ], [ 563681.75, 6449640.25 ], [ 563682.25, 6449640.25 ], [ 563682.25, 6449639.25 ], [ 563683.25, 6449639.25 ], [ 563683.25, 6449640.25 ], [ 563684.25, 6449640.25 ], [ 563684.25, 6449640.75 ], [ 563686.25, 6449640.75 ], [ 563686.25, 6449642.25 ], [ 563686.75, 6449642.25 ], [ 563686.75, 6449642.75 ], [ 563686.25, 6449642.75 ], [ 563686.25, 6449643.25 ], [ 563687.25, 6449643.25 ], [ 563687.25, 6449643.75 ], [ 563688.75, 6449643.75 ], [ 563688.75, 6449644.25 ], [ 563689.25, 6449644.25 ], [ 563689.25, 6449643.75 ], [ 563689.75, 6449643.75 ], [ 563689.75, 6449644.25 ], [ 563690.75, 6449644.25 ], [ 563690.75, 6449646.25 ], [ 563690.25, 6449646.25 ], [ 563690.25, 6449646.75 ], [ 563690.75, 6449646.75 ], [ 563690.75, 6449647.25 ], [ 563690.25, 6449647.25 ], [ 563690.25, 6449649.25 ], [ 563689.75, 6449649.25 ], [ 563689.75, 6449652.25 ], [ 563689.25, 6449652.25 ], [ 563689.25, 6449653.75 ], [ 563688.75, 6449653.75 ], [ 563688.75, 6449654.25 ], [ 563687.25, 6449654.25 ] ], [ [ 563685.75, 6449642.75 ], [ 563686.25, 6449642.75 ], [ 563686.25, 6449642.25 ], [ 563685.75, 6449642.25 ], [ 563685.75, 6449642.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.25, 6449629.75 ], [ 563799.25, 6449629.25 ], [ 563797.25, 6449629.25 ], [ 563797.25, 6449628.75 ], [ 563796.75, 6449628.75 ], [ 563796.75, 6449628.25 ], [ 563796.25, 6449628.25 ], [ 563796.25, 6449628.75 ], [ 563795.75, 6449628.75 ], [ 563795.75, 6449628.25 ], [ 563794.25, 6449628.25 ], [ 563794.25, 6449627.75 ], [ 563791.25, 6449627.75 ], [ 563791.25, 6449627.25 ], [ 563790.25, 6449627.25 ], [ 563790.25, 6449626.75 ], [ 563789.25, 6449626.75 ], [ 563789.25, 6449626.25 ], [ 563789.75, 6449626.25 ], [ 563789.75, 6449624.75 ], [ 563790.25, 6449624.75 ], [ 563790.25, 6449623.25 ], [ 563790.75, 6449623.25 ], [ 563790.75, 6449622.75 ], [ 563792.25, 6449622.75 ], [ 563792.25, 6449623.25 ], [ 563794.75, 6449623.25 ], [ 563794.75, 6449623.75 ], [ 563796.25, 6449623.75 ], [ 563796.25, 6449624.25 ], [ 563799.25, 6449624.25 ], [ 563799.25, 6449623.75 ], [ 563797.25, 6449623.75 ], [ 563797.25, 6449623.25 ], [ 563795.75, 6449623.25 ], [ 563795.75, 6449622.75 ], [ 563793.25, 6449622.75 ], [ 563793.25, 6449622.25 ], [ 563791.25, 6449622.25 ], [ 563791.25, 6449621.25 ], [ 563790.75, 6449621.25 ], [ 563790.75, 6449620.75 ], [ 563791.25, 6449620.75 ], [ 563791.25, 6449619.75 ], [ 563791.75, 6449619.75 ], [ 563791.75, 6449618.25 ], [ 563792.25, 6449618.25 ], [ 563792.25, 6449615.75 ], [ 563792.75, 6449615.75 ], [ 563792.75, 6449614.25 ], [ 563793.25, 6449614.25 ], [ 563793.25, 6449614.75 ], [ 563796.75, 6449614.75 ], [ 563796.75, 6449615.25 ], [ 563797.25, 6449615.25 ], [ 563797.25, 6449615.75 ], [ 563798.75, 6449615.75 ], [ 563798.75, 6449615.25 ], [ 563798.25, 6449615.25 ], [ 563798.25, 6449614.75 ], [ 563798.75, 6449614.75 ], [ 563798.75, 6449615.25 ], [ 563799.25, 6449615.25 ], [ 563799.25, 6449615.75 ], [ 563798.75, 6449615.75 ], [ 563798.75, 6449616.25 ], [ 563800.25, 6449616.25 ], [ 563800.25, 6449616.75 ], [ 563799.75, 6449616.75 ], [ 563799.75, 6449617.25 ], [ 563800.25, 6449617.25 ], [ 563800.25, 6449621.25 ], [ 563799.75, 6449621.25 ], [ 563799.75, 6449622.25 ], [ 563800.25, 6449622.25 ], [ 563800.25, 6449623.75 ], [ 563799.75, 6449623.75 ], [ 563799.75, 6449624.25 ], [ 563799.25, 6449624.25 ], [ 563799.25, 6449624.75 ], [ 563800.25, 6449624.75 ], [ 563800.25, 6449625.75 ], [ 563799.75, 6449625.75 ], [ 563799.75, 6449626.75 ], [ 563800.25, 6449626.75 ], [ 563800.25, 6449627.75 ], [ 563799.75, 6449627.75 ], [ 563799.75, 6449628.25 ], [ 563800.25, 6449628.25 ], [ 563800.25, 6449629.75 ], [ 563799.25, 6449629.75 ] ], [ [ 563796.25, 6449618.25 ], [ 563796.75, 6449618.25 ], [ 563796.75, 6449617.75 ], [ 563796.25, 6449617.75 ], [ 563796.25, 6449618.25 ] ], [ [ 563793.25, 6449615.75 ], [ 563793.75, 6449615.75 ], [ 563793.75, 6449615.25 ], [ 563793.25, 6449615.25 ], [ 563793.25, 6449615.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563769.25, 6449630.25 ], [ 563769.25, 6449629.75 ], [ 563767.75, 6449629.75 ], [ 563767.75, 6449629.25 ], [ 563766.25, 6449629.25 ], [ 563766.25, 6449628.25 ], [ 563765.75, 6449628.25 ], [ 563765.75, 6449628.75 ], [ 563764.75, 6449628.75 ], [ 563764.75, 6449628.25 ], [ 563764.25, 6449628.25 ], [ 563764.25, 6449626.75 ], [ 563763.75, 6449626.75 ], [ 563763.75, 6449626.25 ], [ 563764.25, 6449626.25 ], [ 563764.25, 6449626.75 ], [ 563764.75, 6449626.75 ], [ 563764.75, 6449625.75 ], [ 563763.75, 6449625.75 ], [ 563763.75, 6449625.25 ], [ 563762.25, 6449625.25 ], [ 563762.25, 6449625.75 ], [ 563761.75, 6449625.75 ], [ 563761.75, 6449624.75 ], [ 563760.75, 6449624.75 ], [ 563760.75, 6449625.25 ], [ 563761.25, 6449625.25 ], [ 563761.25, 6449625.75 ], [ 563760.75, 6449625.75 ], [ 563760.75, 6449625.25 ], [ 563759.75, 6449625.25 ], [ 563759.75, 6449624.75 ], [ 563759.25, 6449624.75 ], [ 563759.25, 6449623.75 ], [ 563759.75, 6449623.75 ], [ 563759.75, 6449622.25 ], [ 563760.25, 6449622.25 ], [ 563760.25, 6449620.75 ], [ 563760.75, 6449620.75 ], [ 563760.75, 6449619.75 ], [ 563761.25, 6449619.75 ], [ 563761.25, 6449617.25 ], [ 563761.75, 6449617.25 ], [ 563761.75, 6449616.75 ], [ 563761.25, 6449616.75 ], [ 563761.25, 6449616.25 ], [ 563761.75, 6449616.25 ], [ 563761.75, 6449613.25 ], [ 563762.25, 6449613.25 ], [ 563762.25, 6449612.25 ], [ 563762.75, 6449612.25 ], [ 563762.75, 6449611.75 ], [ 563763.25, 6449611.75 ], [ 563763.25, 6449612.25 ], [ 563764.25, 6449612.25 ], [ 563764.25, 6449613.25 ], [ 563764.75, 6449613.25 ], [ 563764.75, 6449612.75 ], [ 563765.75, 6449612.75 ], [ 563765.75, 6449613.25 ], [ 563767.25, 6449613.25 ], [ 563767.25, 6449613.75 ], [ 563768.75, 6449613.75 ], [ 563768.75, 6449614.25 ], [ 563769.75, 6449614.25 ], [ 563769.75, 6449614.75 ], [ 563771.75, 6449614.75 ], [ 563771.75, 6449615.25 ], [ 563773.25, 6449615.25 ], [ 563773.25, 6449615.75 ], [ 563774.75, 6449615.75 ], [ 563774.75, 6449616.25 ], [ 563775.25, 6449616.25 ], [ 563775.25, 6449616.75 ], [ 563774.75, 6449616.75 ], [ 563774.75, 6449618.75 ], [ 563774.25, 6449618.75 ], [ 563774.25, 6449620.75 ], [ 563773.75, 6449620.75 ], [ 563773.75, 6449621.75 ], [ 563773.25, 6449621.75 ], [ 563773.25, 6449624.25 ], [ 563772.75, 6449624.25 ], [ 563772.75, 6449625.25 ], [ 563772.25, 6449625.25 ], [ 563772.25, 6449626.75 ], [ 563771.75, 6449626.75 ], [ 563771.75, 6449627.75 ], [ 563771.25, 6449627.75 ], [ 563771.25, 6449628.75 ], [ 563770.75, 6449628.75 ], [ 563770.75, 6449630.25 ], [ 563769.25, 6449630.25 ] ], [ [ 563769.75, 6449623.25 ], [ 563772.25, 6449623.25 ], [ 563772.25, 6449622.75 ], [ 563770.75, 6449622.75 ], [ 563770.75, 6449622.25 ], [ 563767.75, 6449622.25 ], [ 563767.75, 6449621.75 ], [ 563764.75, 6449621.75 ], [ 563764.75, 6449621.25 ], [ 563762.25, 6449621.25 ], [ 563762.25, 6449620.75 ], [ 563761.75, 6449620.75 ], [ 563761.75, 6449621.75 ], [ 563763.25, 6449621.75 ], [ 563763.25, 6449622.25 ], [ 563763.75, 6449622.25 ], [ 563763.75, 6449621.75 ], [ 563764.25, 6449621.75 ], [ 563764.25, 6449622.25 ], [ 563766.25, 6449622.25 ], [ 563766.25, 6449622.75 ], [ 563769.75, 6449622.75 ], [ 563769.75, 6449623.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563681.75, 6449622.75 ], [ 563681.75, 6449622.25 ], [ 563679.25, 6449622.25 ], [ 563679.25, 6449609.75 ], [ 563679.75, 6449609.75 ], [ 563679.75, 6449609.25 ], [ 563680.75, 6449609.25 ], [ 563680.75, 6449609.75 ], [ 563682.25, 6449609.75 ], [ 563682.25, 6449610.25 ], [ 563684.25, 6449610.25 ], [ 563684.25, 6449610.75 ], [ 563686.25, 6449610.75 ], [ 563686.25, 6449611.25 ], [ 563686.75, 6449611.25 ], [ 563686.75, 6449613.25 ], [ 563686.25, 6449613.25 ], [ 563686.25, 6449615.75 ], [ 563685.75, 6449615.75 ], [ 563685.75, 6449618.25 ], [ 563685.25, 6449618.25 ], [ 563685.25, 6449619.75 ], [ 563684.75, 6449619.75 ], [ 563684.75, 6449622.25 ], [ 563684.25, 6449622.25 ], [ 563684.25, 6449622.75 ], [ 563681.75, 6449622.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563756.75, 6449613.75 ], [ 563756.75, 6449613.25 ], [ 563754.25, 6449613.25 ], [ 563754.25, 6449612.75 ], [ 563752.75, 6449612.75 ], [ 563752.75, 6449612.25 ], [ 563751.25, 6449612.25 ], [ 563751.25, 6449611.75 ], [ 563749.75, 6449611.75 ], [ 563749.75, 6449611.25 ], [ 563748.75, 6449611.25 ], [ 563748.75, 6449610.75 ], [ 563747.25, 6449610.75 ], [ 563747.25, 6449610.25 ], [ 563746.25, 6449610.25 ], [ 563746.25, 6449609.75 ], [ 563745.75, 6449609.75 ], [ 563745.75, 6449608.75 ], [ 563746.25, 6449608.75 ], [ 563746.25, 6449608.25 ], [ 563746.75, 6449608.25 ], [ 563746.75, 6449605.75 ], [ 563748.75, 6449605.75 ], [ 563748.75, 6449606.25 ], [ 563750.25, 6449606.25 ], [ 563750.25, 6449606.75 ], [ 563751.75, 6449606.75 ], [ 563751.75, 6449607.25 ], [ 563752.75, 6449607.25 ], [ 563752.75, 6449607.75 ], [ 563753.75, 6449607.75 ], [ 563753.75, 6449608.25 ], [ 563756.75, 6449608.25 ], [ 563756.75, 6449608.75 ], [ 563757.75, 6449608.75 ], [ 563757.75, 6449609.25 ], [ 563758.25, 6449609.25 ], [ 563758.25, 6449609.75 ], [ 563758.75, 6449609.75 ], [ 563758.75, 6449612.25 ], [ 563758.25, 6449612.25 ], [ 563758.25, 6449612.75 ], [ 563757.75, 6449612.75 ], [ 563757.75, 6449613.25 ], [ 563757.25, 6449613.25 ], [ 563757.25, 6449613.75 ], [ 563756.75, 6449613.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563720.75, 6449609.75 ], [ 563720.75, 6449609.25 ], [ 563720.25, 6449609.25 ], [ 563720.25, 6449608.75 ], [ 563719.75, 6449608.75 ], [ 563719.75, 6449609.25 ], [ 563718.25, 6449609.25 ], [ 563718.25, 6449608.75 ], [ 563718.75, 6449608.75 ], [ 563718.75, 6449608.25 ], [ 563718.25, 6449608.25 ], [ 563718.25, 6449603.75 ], [ 563720.25, 6449603.75 ], [ 563720.25, 6449603.25 ], [ 563720.75, 6449603.25 ], [ 563720.75, 6449602.75 ], [ 563720.25, 6449602.75 ], [ 563720.25, 6449602.25 ], [ 563719.75, 6449602.25 ], [ 563719.75, 6449600.75 ], [ 563720.25, 6449600.75 ], [ 563720.25, 6449600.25 ], [ 563720.75, 6449600.25 ], [ 563720.75, 6449599.75 ], [ 563722.25, 6449599.75 ], [ 563722.25, 6449600.25 ], [ 563722.75, 6449600.25 ], [ 563722.75, 6449599.75 ], [ 563728.25, 6449599.75 ], [ 563728.25, 6449600.25 ], [ 563728.75, 6449600.25 ], [ 563728.75, 6449599.75 ], [ 563731.25, 6449599.75 ], [ 563731.25, 6449600.25 ], [ 563732.75, 6449600.25 ], [ 563732.75, 6449599.75 ], [ 563734.75, 6449599.75 ], [ 563734.75, 6449605.75 ], [ 563734.25, 6449605.75 ], [ 563734.25, 6449606.25 ], [ 563733.75, 6449606.25 ], [ 563733.75, 6449605.75 ], [ 563733.25, 6449605.75 ], [ 563733.25, 6449606.25 ], [ 563732.25, 6449606.25 ], [ 563732.25, 6449605.75 ], [ 563726.75, 6449605.75 ], [ 563726.75, 6449605.25 ], [ 563722.75, 6449605.25 ], [ 563722.75, 6449605.75 ], [ 563722.25, 6449605.75 ], [ 563722.25, 6449606.25 ], [ 563722.75, 6449606.25 ], [ 563722.75, 6449608.25 ], [ 563722.25, 6449608.25 ], [ 563722.25, 6449609.75 ], [ 563720.75, 6449609.75 ] ], [ [ 563721.25, 6449606.75 ], [ 563721.75, 6449606.75 ], [ 563721.75, 6449606.25 ], [ 563721.25, 6449606.25 ], [ 563721.25, 6449606.75 ] ], [ [ 563727.75, 6449603.25 ], [ 563728.25, 6449603.25 ], [ 563728.25, 6449602.75 ], [ 563728.75, 6449602.75 ], [ 563728.75, 6449602.25 ], [ 563729.75, 6449602.25 ], [ 563729.75, 6449602.75 ], [ 563730.25, 6449602.75 ], [ 563730.25, 6449602.25 ], [ 563731.25, 6449602.25 ], [ 563731.25, 6449602.75 ], [ 563732.25, 6449602.75 ], [ 563732.25, 6449601.75 ], [ 563731.75, 6449601.75 ], [ 563731.75, 6449601.25 ], [ 563730.75, 6449601.25 ], [ 563730.75, 6449601.75 ], [ 563730.25, 6449601.75 ], [ 563730.25, 6449601.25 ], [ 563728.25, 6449601.25 ], [ 563728.25, 6449600.75 ], [ 563727.75, 6449600.75 ], [ 563727.75, 6449603.25 ] ], [ [ 563722.25, 6449601.75 ], [ 563726.75, 6449601.75 ], [ 563726.75, 6449601.25 ], [ 563724.75, 6449601.25 ], [ 563724.75, 6449600.75 ], [ 563724.25, 6449600.75 ], [ 563724.25, 6449601.25 ], [ 563722.75, 6449601.25 ], [ 563722.75, 6449600.75 ], [ 563722.25, 6449600.75 ], [ 563722.25, 6449601.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563749.25, 6449602.25 ], [ 563749.25, 6449601.75 ], [ 563747.25, 6449601.75 ], [ 563747.25, 6449601.25 ], [ 563745.75, 6449601.25 ], [ 563745.75, 6449600.75 ], [ 563744.25, 6449600.75 ], [ 563744.25, 6449600.25 ], [ 563743.75, 6449600.25 ], [ 563743.75, 6449599.75 ], [ 563750.25, 6449599.75 ], [ 563750.25, 6449601.25 ], [ 563749.75, 6449601.25 ], [ 563749.75, 6449602.25 ], [ 563749.25, 6449602.25 ] ] ] } } +] +} diff --git a/data/mobj0/niv2/intrinsic/tile_splitted_2819_32247.geojson b/data/mobj0/niv2/intrinsic/tile_splitted_2819_32247.geojson new file mode 100644 index 0000000..c73678c --- /dev/null +++ b/data/mobj0/niv2/intrinsic/tile_splitted_2819_32247.geojson @@ -0,0 +1,24 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563855.75, 6449586.25 ], [ 563855.75, 6449585.75 ], [ 563854.25, 6449585.75 ], [ 563854.25, 6449585.25 ], [ 563853.25, 6449585.25 ], [ 563853.25, 6449584.25 ], [ 563855.25, 6449584.25 ], [ 563855.25, 6449584.75 ], [ 563856.25, 6449584.75 ], [ 563856.25, 6449585.25 ], [ 563856.75, 6449585.25 ], [ 563856.75, 6449586.25 ], [ 563855.75, 6449586.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563855.75, 6449584.25 ], [ 563855.75, 6449583.75 ], [ 563855.25, 6449583.75 ], [ 563855.25, 6449583.25 ], [ 563855.75, 6449583.25 ], [ 563855.75, 6449582.75 ], [ 563856.75, 6449582.75 ], [ 563856.75, 6449583.75 ], [ 563856.25, 6449583.75 ], [ 563856.25, 6449584.25 ], [ 563855.75, 6449584.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563866.25, 6449582.75 ], [ 563866.25, 6449582.25 ], [ 563866.75, 6449582.25 ], [ 563866.75, 6449581.75 ], [ 563867.25, 6449581.75 ], [ 563867.25, 6449582.75 ], [ 563866.25, 6449582.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563868.25, 6449561.75 ], [ 563868.25, 6449561.25 ], [ 563867.75, 6449561.25 ], [ 563867.75, 6449560.25 ], [ 563868.25, 6449560.25 ], [ 563868.25, 6449559.75 ], [ 563868.75, 6449559.75 ], [ 563868.75, 6449560.25 ], [ 563869.25, 6449560.25 ], [ 563869.25, 6449561.25 ], [ 563868.75, 6449561.25 ], [ 563868.75, 6449561.75 ], [ 563868.25, 6449561.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563874.25, 6449560.75 ], [ 563874.25, 6449560.25 ], [ 563872.25, 6449560.25 ], [ 563872.25, 6449559.75 ], [ 563871.75, 6449559.75 ], [ 563871.75, 6449560.25 ], [ 563870.75, 6449560.25 ], [ 563870.75, 6449558.75 ], [ 563870.25, 6449558.75 ], [ 563870.25, 6449556.75 ], [ 563870.75, 6449556.75 ], [ 563870.75, 6449555.75 ], [ 563871.25, 6449555.75 ], [ 563871.25, 6449555.25 ], [ 563873.25, 6449555.25 ], [ 563873.25, 6449555.75 ], [ 563874.25, 6449555.75 ], [ 563874.25, 6449556.25 ], [ 563876.25, 6449556.25 ], [ 563876.25, 6449557.25 ], [ 563875.75, 6449557.25 ], [ 563875.75, 6449556.75 ], [ 563874.25, 6449556.75 ], [ 563874.25, 6449556.25 ], [ 563871.25, 6449556.25 ], [ 563871.25, 6449557.25 ], [ 563870.75, 6449557.25 ], [ 563870.75, 6449558.25 ], [ 563871.25, 6449558.25 ], [ 563871.25, 6449558.75 ], [ 563871.75, 6449558.75 ], [ 563871.75, 6449559.25 ], [ 563872.75, 6449559.25 ], [ 563872.75, 6449559.75 ], [ 563874.25, 6449559.75 ], [ 563874.25, 6449560.25 ], [ 563876.25, 6449560.25 ], [ 563876.25, 6449560.75 ], [ 563874.25, 6449560.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563848.75, 6449559.75 ], [ 563848.75, 6449557.75 ], [ 563849.25, 6449557.75 ], [ 563849.25, 6449557.25 ], [ 563849.75, 6449557.25 ], [ 563849.75, 6449555.25 ], [ 563850.25, 6449555.25 ], [ 563850.25, 6449554.25 ], [ 563851.25, 6449554.25 ], [ 563851.25, 6449555.75 ], [ 563850.75, 6449555.75 ], [ 563850.75, 6449556.75 ], [ 563850.25, 6449556.75 ], [ 563850.25, 6449557.25 ], [ 563849.75, 6449557.25 ], [ 563849.75, 6449559.25 ], [ 563849.25, 6449559.25 ], [ 563849.25, 6449559.75 ], [ 563848.75, 6449559.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563869.25, 6449555.25 ], [ 563869.25, 6449553.75 ], [ 563870.25, 6449553.75 ], [ 563870.25, 6449555.25 ], [ 563869.25, 6449555.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563863.75, 6449553.25 ], [ 563863.75, 6449551.25 ], [ 563864.25, 6449551.25 ], [ 563864.25, 6449550.25 ], [ 563864.75, 6449550.25 ], [ 563864.75, 6449549.25 ], [ 563863.25, 6449549.25 ], [ 563863.25, 6449548.75 ], [ 563862.25, 6449548.75 ], [ 563862.25, 6449547.75 ], [ 563863.75, 6449547.75 ], [ 563863.75, 6449548.25 ], [ 563864.25, 6449548.25 ], [ 563864.25, 6449548.75 ], [ 563865.25, 6449548.75 ], [ 563865.25, 6449550.75 ], [ 563864.75, 6449550.75 ], [ 563864.75, 6449552.25 ], [ 563864.25, 6449552.25 ], [ 563864.25, 6449553.25 ], [ 563863.75, 6449553.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563851.25, 6449549.75 ], [ 563851.25, 6449549.25 ], [ 563851.75, 6449549.25 ], [ 563851.75, 6449547.75 ], [ 563852.25, 6449547.75 ], [ 563852.25, 6449546.75 ], [ 563852.75, 6449546.75 ], [ 563852.75, 6449544.75 ], [ 563853.25, 6449544.75 ], [ 563853.25, 6449544.25 ], [ 563854.25, 6449544.25 ], [ 563854.25, 6449544.75 ], [ 563855.75, 6449544.75 ], [ 563855.75, 6449545.25 ], [ 563856.25, 6449545.25 ], [ 563856.25, 6449545.75 ], [ 563857.75, 6449545.75 ], [ 563857.75, 6449546.25 ], [ 563858.75, 6449546.25 ], [ 563858.75, 6449546.75 ], [ 563860.75, 6449546.75 ], [ 563860.75, 6449547.25 ], [ 563861.25, 6449547.25 ], [ 563861.25, 6449547.75 ], [ 563859.25, 6449547.75 ], [ 563859.25, 6449547.25 ], [ 563857.75, 6449547.25 ], [ 563857.75, 6449546.75 ], [ 563856.25, 6449546.75 ], [ 563856.25, 6449546.25 ], [ 563855.25, 6449546.25 ], [ 563855.25, 6449545.75 ], [ 563853.75, 6449545.75 ], [ 563853.75, 6449545.25 ], [ 563853.25, 6449545.25 ], [ 563853.25, 6449546.75 ], [ 563852.75, 6449546.75 ], [ 563852.75, 6449549.75 ], [ 563851.25, 6449549.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563846.25, 6449538.25 ], [ 563846.25, 6449537.75 ], [ 563846.75, 6449537.75 ], [ 563846.75, 6449537.25 ], [ 563847.25, 6449537.25 ], [ 563847.25, 6449536.75 ], [ 563847.75, 6449536.75 ], [ 563847.75, 6449537.25 ], [ 563848.25, 6449537.25 ], [ 563848.25, 6449537.75 ], [ 563847.75, 6449537.75 ], [ 563847.75, 6449538.25 ], [ 563846.25, 6449538.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563844.75, 6449537.25 ], [ 563844.75, 6449536.25 ], [ 563845.75, 6449536.25 ], [ 563845.75, 6449537.25 ], [ 563844.75, 6449537.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563873.75, 6449536.75 ], [ 563873.75, 6449536.25 ], [ 563871.75, 6449536.25 ], [ 563871.75, 6449535.75 ], [ 563869.25, 6449535.75 ], [ 563869.25, 6449535.25 ], [ 563868.25, 6449535.25 ], [ 563868.25, 6449534.75 ], [ 563865.75, 6449534.75 ], [ 563865.75, 6449534.25 ], [ 563863.75, 6449534.25 ], [ 563863.75, 6449533.75 ], [ 563861.25, 6449533.75 ], [ 563861.25, 6449533.25 ], [ 563859.25, 6449533.25 ], [ 563859.25, 6449532.75 ], [ 563858.75, 6449532.75 ], [ 563858.75, 6449532.25 ], [ 563857.75, 6449532.25 ], [ 563857.75, 6449532.75 ], [ 563856.75, 6449532.75 ], [ 563856.75, 6449532.25 ], [ 563854.75, 6449532.25 ], [ 563854.75, 6449531.75 ], [ 563853.25, 6449531.75 ], [ 563853.25, 6449531.25 ], [ 563852.25, 6449531.25 ], [ 563852.25, 6449530.25 ], [ 563852.75, 6449530.25 ], [ 563852.75, 6449530.75 ], [ 563853.75, 6449530.75 ], [ 563853.75, 6449531.25 ], [ 563855.25, 6449531.25 ], [ 563855.25, 6449530.75 ], [ 563855.75, 6449530.75 ], [ 563855.75, 6449531.25 ], [ 563856.25, 6449531.25 ], [ 563856.25, 6449530.75 ], [ 563856.75, 6449530.75 ], [ 563856.75, 6449531.25 ], [ 563857.25, 6449531.25 ], [ 563857.25, 6449531.75 ], [ 563859.25, 6449531.75 ], [ 563859.25, 6449532.25 ], [ 563861.25, 6449532.25 ], [ 563861.25, 6449532.75 ], [ 563862.75, 6449532.75 ], [ 563862.75, 6449533.25 ], [ 563865.25, 6449533.25 ], [ 563865.25, 6449533.75 ], [ 563867.75, 6449533.75 ], [ 563867.75, 6449534.25 ], [ 563869.75, 6449534.25 ], [ 563869.75, 6449534.75 ], [ 563871.75, 6449534.75 ], [ 563871.75, 6449535.25 ], [ 563873.25, 6449535.25 ], [ 563873.25, 6449535.75 ], [ 563875.75, 6449535.75 ], [ 563875.75, 6449536.25 ], [ 563876.25, 6449536.25 ], [ 563876.25, 6449536.75 ], [ 563873.75, 6449536.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563850.75, 6449531.25 ], [ 563850.75, 6449530.75 ], [ 563848.75, 6449530.75 ], [ 563848.75, 6449530.25 ], [ 563847.25, 6449530.25 ], [ 563847.25, 6449529.75 ], [ 563846.75, 6449529.75 ], [ 563846.75, 6449529.25 ], [ 563848.75, 6449529.25 ], [ 563848.75, 6449528.75 ], [ 563849.25, 6449528.75 ], [ 563849.25, 6449529.25 ], [ 563850.25, 6449529.25 ], [ 563850.25, 6449530.25 ], [ 563851.75, 6449530.25 ], [ 563851.75, 6449530.75 ], [ 563851.25, 6449530.75 ], [ 563851.25, 6449531.25 ], [ 563850.75, 6449531.25 ] ], [ [ 563848.75, 6449530.25 ], [ 563849.25, 6449530.25 ], [ 563849.25, 6449529.75 ], [ 563848.75, 6449529.75 ], [ 563848.75, 6449530.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563839.25, 6449528.25 ], [ 563839.25, 6449527.75 ], [ 563839.75, 6449527.75 ], [ 563839.75, 6449528.25 ], [ 563839.25, 6449528.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563842.25, 6449529.25 ], [ 563842.25, 6449528.75 ], [ 563841.25, 6449528.75 ], [ 563841.25, 6449528.25 ], [ 563840.25, 6449528.25 ], [ 563840.25, 6449527.25 ], [ 563840.75, 6449527.25 ], [ 563840.75, 6449527.75 ], [ 563844.25, 6449527.75 ], [ 563844.25, 6449528.25 ], [ 563845.75, 6449528.25 ], [ 563845.75, 6449528.75 ], [ 563846.25, 6449528.75 ], [ 563846.25, 6449529.25 ], [ 563842.25, 6449529.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563837.25, 6449527.75 ], [ 563837.25, 6449527.25 ], [ 563834.25, 6449527.25 ], [ 563834.25, 6449526.75 ], [ 563832.25, 6449526.75 ], [ 563832.25, 6449526.25 ], [ 563830.25, 6449526.25 ], [ 563830.25, 6449525.75 ], [ 563829.25, 6449525.75 ], [ 563829.25, 6449525.25 ], [ 563826.75, 6449525.25 ], [ 563826.75, 6449524.75 ], [ 563824.25, 6449524.75 ], [ 563824.25, 6449524.25 ], [ 563821.75, 6449524.25 ], [ 563821.75, 6449523.75 ], [ 563819.25, 6449523.75 ], [ 563819.25, 6449523.25 ], [ 563818.75, 6449523.25 ], [ 563818.75, 6449523.75 ], [ 563818.25, 6449523.75 ], [ 563818.25, 6449523.25 ], [ 563817.25, 6449523.25 ], [ 563817.25, 6449522.75 ], [ 563815.25, 6449522.75 ], [ 563815.25, 6449522.25 ], [ 563812.75, 6449522.25 ], [ 563812.75, 6449521.75 ], [ 563810.25, 6449521.75 ], [ 563810.25, 6449521.25 ], [ 563809.25, 6449521.25 ], [ 563809.25, 6449520.75 ], [ 563805.75, 6449520.75 ], [ 563805.75, 6449520.25 ], [ 563803.25, 6449520.25 ], [ 563803.25, 6449519.75 ], [ 563801.25, 6449519.75 ], [ 563801.25, 6449519.25 ], [ 563799.75, 6449519.25 ], [ 563799.75, 6449518.75 ], [ 563800.25, 6449518.75 ], [ 563800.25, 6449518.25 ], [ 563801.25, 6449518.25 ], [ 563801.25, 6449517.75 ], [ 563801.75, 6449517.75 ], [ 563801.75, 6449518.25 ], [ 563803.25, 6449518.25 ], [ 563803.25, 6449518.75 ], [ 563805.25, 6449518.75 ], [ 563805.25, 6449519.25 ], [ 563805.75, 6449519.25 ], [ 563805.75, 6449519.75 ], [ 563807.75, 6449519.75 ], [ 563807.75, 6449520.25 ], [ 563809.75, 6449520.25 ], [ 563809.75, 6449519.75 ], [ 563810.25, 6449519.75 ], [ 563810.25, 6449520.25 ], [ 563811.75, 6449520.25 ], [ 563811.75, 6449520.75 ], [ 563812.75, 6449520.75 ], [ 563812.75, 6449521.25 ], [ 563814.25, 6449521.25 ], [ 563814.25, 6449521.75 ], [ 563814.75, 6449521.75 ], [ 563814.75, 6449521.25 ], [ 563815.25, 6449521.25 ], [ 563815.25, 6449521.75 ], [ 563816.25, 6449521.75 ], [ 563816.25, 6449522.25 ], [ 563817.25, 6449522.25 ], [ 563817.25, 6449521.75 ], [ 563818.75, 6449521.75 ], [ 563818.75, 6449522.25 ], [ 563820.25, 6449522.25 ], [ 563820.25, 6449522.75 ], [ 563820.75, 6449522.75 ], [ 563820.75, 6449522.25 ], [ 563821.25, 6449522.25 ], [ 563821.25, 6449522.75 ], [ 563823.25, 6449522.75 ], [ 563823.25, 6449523.75 ], [ 563824.25, 6449523.75 ], [ 563824.25, 6449524.25 ], [ 563825.25, 6449524.25 ], [ 563825.25, 6449523.75 ], [ 563825.75, 6449523.75 ], [ 563825.75, 6449524.25 ], [ 563827.75, 6449524.25 ], [ 563827.75, 6449524.75 ], [ 563831.25, 6449524.75 ], [ 563831.25, 6449525.25 ], [ 563832.75, 6449525.25 ], [ 563832.75, 6449525.75 ], [ 563834.25, 6449525.75 ], [ 563834.25, 6449526.75 ], [ 563835.25, 6449526.75 ], [ 563835.25, 6449526.25 ], [ 563834.75, 6449526.25 ], [ 563834.75, 6449525.75 ], [ 563835.25, 6449525.75 ], [ 563835.25, 6449526.25 ], [ 563836.75, 6449526.25 ], [ 563836.75, 6449526.75 ], [ 563837.25, 6449526.75 ], [ 563837.25, 6449527.25 ], [ 563838.75, 6449527.25 ], [ 563838.75, 6449527.75 ], [ 563837.25, 6449527.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563834.25, 6449579.25 ], [ 563834.25, 6449578.75 ], [ 563833.25, 6449578.75 ], [ 563833.25, 6449578.25 ], [ 563832.25, 6449578.25 ], [ 563832.25, 6449577.75 ], [ 563832.75, 6449577.75 ], [ 563832.75, 6449577.25 ], [ 563833.25, 6449577.25 ], [ 563833.25, 6449576.25 ], [ 563833.75, 6449576.25 ], [ 563833.75, 6449574.75 ], [ 563834.25, 6449574.75 ], [ 563834.25, 6449574.25 ], [ 563833.75, 6449574.25 ], [ 563833.75, 6449573.75 ], [ 563836.25, 6449573.75 ], [ 563836.25, 6449574.25 ], [ 563836.75, 6449574.25 ], [ 563836.75, 6449574.75 ], [ 563837.25, 6449574.75 ], [ 563837.25, 6449576.75 ], [ 563836.75, 6449576.75 ], [ 563836.75, 6449577.75 ], [ 563836.25, 6449577.75 ], [ 563836.25, 6449578.75 ], [ 563835.25, 6449578.75 ], [ 563835.25, 6449579.25 ], [ 563834.25, 6449579.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563872.25, 6449570.25 ], [ 563872.25, 6449569.75 ], [ 563870.75, 6449569.75 ], [ 563870.75, 6449569.25 ], [ 563870.25, 6449569.25 ], [ 563870.25, 6449569.75 ], [ 563869.75, 6449569.75 ], [ 563869.75, 6449569.25 ], [ 563868.25, 6449569.25 ], [ 563868.25, 6449568.75 ], [ 563867.75, 6449568.75 ], [ 563867.75, 6449568.25 ], [ 563868.25, 6449568.25 ], [ 563868.25, 6449567.75 ], [ 563867.75, 6449567.75 ], [ 563867.75, 6449567.25 ], [ 563868.25, 6449567.25 ], [ 563868.25, 6449565.25 ], [ 563868.75, 6449565.25 ], [ 563868.75, 6449564.75 ], [ 563869.25, 6449564.75 ], [ 563869.25, 6449563.25 ], [ 563870.75, 6449563.25 ], [ 563870.75, 6449563.75 ], [ 563872.75, 6449563.75 ], [ 563872.75, 6449564.25 ], [ 563873.75, 6449564.25 ], [ 563873.75, 6449564.75 ], [ 563874.75, 6449564.75 ], [ 563874.75, 6449566.25 ], [ 563874.25, 6449566.25 ], [ 563874.25, 6449568.25 ], [ 563873.75, 6449568.25 ], [ 563873.75, 6449569.25 ], [ 563873.25, 6449569.25 ], [ 563873.25, 6449570.25 ], [ 563872.25, 6449570.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563848.75, 6449583.75 ], [ 563848.75, 6449583.25 ], [ 563846.75, 6449583.25 ], [ 563846.75, 6449582.75 ], [ 563845.25, 6449582.75 ], [ 563845.25, 6449582.25 ], [ 563843.75, 6449582.25 ], [ 563843.75, 6449581.75 ], [ 563843.25, 6449581.75 ], [ 563843.25, 6449580.25 ], [ 563843.75, 6449580.25 ], [ 563843.75, 6449576.25 ], [ 563844.25, 6449576.25 ], [ 563844.25, 6449575.25 ], [ 563844.75, 6449575.25 ], [ 563844.75, 6449572.25 ], [ 563845.25, 6449572.25 ], [ 563845.25, 6449571.25 ], [ 563845.75, 6449571.25 ], [ 563845.75, 6449567.75 ], [ 563846.25, 6449567.75 ], [ 563846.25, 6449567.25 ], [ 563846.75, 6449567.25 ], [ 563846.75, 6449566.25 ], [ 563846.25, 6449566.25 ], [ 563846.25, 6449565.75 ], [ 563846.75, 6449565.75 ], [ 563846.75, 6449564.25 ], [ 563847.25, 6449564.25 ], [ 563847.25, 6449562.75 ], [ 563847.75, 6449562.75 ], [ 563847.75, 6449560.75 ], [ 563848.25, 6449560.75 ], [ 563848.25, 6449559.75 ], [ 563848.75, 6449559.75 ], [ 563848.75, 6449559.25 ], [ 563849.25, 6449559.25 ], [ 563849.25, 6449559.75 ], [ 563849.75, 6449559.75 ], [ 563849.75, 6449559.25 ], [ 563850.25, 6449559.25 ], [ 563850.25, 6449559.75 ], [ 563851.75, 6449559.75 ], [ 563851.75, 6449560.25 ], [ 563853.25, 6449560.25 ], [ 563853.25, 6449560.75 ], [ 563853.75, 6449560.75 ], [ 563853.75, 6449559.25 ], [ 563854.25, 6449559.25 ], [ 563854.25, 6449558.75 ], [ 563853.75, 6449558.75 ], [ 563853.75, 6449558.25 ], [ 563854.25, 6449558.25 ], [ 563854.25, 6449557.75 ], [ 563853.75, 6449557.75 ], [ 563853.75, 6449555.25 ], [ 563852.75, 6449555.25 ], [ 563852.75, 6449554.75 ], [ 563851.75, 6449554.75 ], [ 563851.75, 6449552.75 ], [ 563852.25, 6449552.75 ], [ 563852.25, 6449550.75 ], [ 563852.75, 6449550.75 ], [ 563852.75, 6449549.25 ], [ 563853.25, 6449549.25 ], [ 563853.25, 6449548.75 ], [ 563854.25, 6449548.75 ], [ 563854.25, 6449549.25 ], [ 563855.25, 6449549.25 ], [ 563855.25, 6449549.75 ], [ 563857.25, 6449549.75 ], [ 563857.25, 6449550.25 ], [ 563858.25, 6449550.25 ], [ 563858.25, 6449550.75 ], [ 563859.75, 6449550.75 ], [ 563859.75, 6449551.25 ], [ 563862.25, 6449551.25 ], [ 563862.25, 6449551.75 ], [ 563863.25, 6449551.75 ], [ 563863.25, 6449553.25 ], [ 563862.75, 6449553.25 ], [ 563862.75, 6449554.75 ], [ 563862.25, 6449554.75 ], [ 563862.25, 6449555.75 ], [ 563861.75, 6449555.75 ], [ 563861.75, 6449556.25 ], [ 563862.25, 6449556.25 ], [ 563862.25, 6449556.75 ], [ 563861.75, 6449556.75 ], [ 563861.75, 6449557.25 ], [ 563862.25, 6449557.25 ], [ 563862.25, 6449557.75 ], [ 563862.75, 6449557.75 ], [ 563862.75, 6449558.75 ], [ 563862.25, 6449558.75 ], [ 563862.25, 6449560.25 ], [ 563861.75, 6449560.25 ], [ 563861.75, 6449560.75 ], [ 563861.25, 6449560.75 ], [ 563861.25, 6449561.75 ], [ 563860.75, 6449561.75 ], [ 563860.75, 6449561.25 ], [ 563860.25, 6449561.25 ], [ 563860.25, 6449563.25 ], [ 563859.75, 6449563.25 ], [ 563859.75, 6449564.75 ], [ 563859.25, 6449564.75 ], [ 563859.25, 6449565.25 ], [ 563858.75, 6449565.25 ], [ 563858.75, 6449564.75 ], [ 563857.25, 6449564.75 ], [ 563857.25, 6449564.25 ], [ 563856.25, 6449564.25 ], [ 563856.25, 6449563.75 ], [ 563853.75, 6449563.75 ], [ 563853.75, 6449565.25 ], [ 563853.25, 6449565.25 ], [ 563853.25, 6449566.75 ], [ 563852.75, 6449566.75 ], [ 563852.75, 6449568.25 ], [ 563852.25, 6449568.25 ], [ 563852.25, 6449570.75 ], [ 563851.75, 6449570.75 ], [ 563851.75, 6449571.75 ], [ 563851.25, 6449571.75 ], [ 563851.25, 6449573.75 ], [ 563850.75, 6449573.75 ], [ 563850.75, 6449575.75 ], [ 563850.25, 6449575.75 ], [ 563850.25, 6449576.75 ], [ 563849.75, 6449576.75 ], [ 563849.75, 6449578.75 ], [ 563851.25, 6449578.75 ], [ 563851.25, 6449582.75 ], [ 563850.75, 6449582.75 ], [ 563850.75, 6449583.25 ], [ 563850.25, 6449583.25 ], [ 563850.25, 6449583.75 ], [ 563848.75, 6449583.75 ] ], [ [ 563853.25, 6449563.75 ], [ 563853.75, 6449563.75 ], [ 563853.75, 6449563.25 ], [ 563853.25, 6449563.25 ], [ 563853.25, 6449563.75 ] ] ] } } +] +} diff --git a/data/mobj0/niv2/intrinsic/tile_splitted_2819_32248.geojson b/data/mobj0/niv2/intrinsic/tile_splitted_2819_32248.geojson new file mode 100644 index 0000000..23e5faf --- /dev/null +++ b/data/mobj0/niv2/intrinsic/tile_splitted_2819_32248.geojson @@ -0,0 +1,38 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563875.25, 6449704.25 ], [ 563875.25, 6449700.25 ], [ 563876.25, 6449700.25 ], [ 563876.25, 6449702.75 ], [ 563875.75, 6449702.75 ], [ 563875.75, 6449704.25 ], [ 563875.25, 6449704.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563842.75, 6449691.25 ], [ 563842.75, 6449690.25 ], [ 563844.75, 6449690.25 ], [ 563844.75, 6449691.25 ], [ 563842.75, 6449691.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563821.75, 6449687.25 ], [ 563821.75, 6449685.25 ], [ 563823.25, 6449685.25 ], [ 563823.25, 6449685.75 ], [ 563823.75, 6449685.75 ], [ 563823.75, 6449686.75 ], [ 563823.25, 6449686.75 ], [ 563823.25, 6449687.25 ], [ 563822.75, 6449687.25 ], [ 563822.75, 6449686.75 ], [ 563822.25, 6449686.75 ], [ 563822.25, 6449687.25 ], [ 563821.75, 6449687.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563819.75, 6449685.25 ], [ 563819.75, 6449684.25 ], [ 563820.25, 6449684.25 ], [ 563820.25, 6449684.75 ], [ 563820.75, 6449684.75 ], [ 563820.75, 6449685.25 ], [ 563819.75, 6449685.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563848.75, 6449691.75 ], [ 563848.75, 6449691.25 ], [ 563849.25, 6449691.25 ], [ 563849.25, 6449689.75 ], [ 563848.75, 6449689.75 ], [ 563848.75, 6449688.75 ], [ 563849.25, 6449688.75 ], [ 563849.25, 6449687.25 ], [ 563849.75, 6449687.25 ], [ 563849.75, 6449685.25 ], [ 563850.25, 6449685.25 ], [ 563850.25, 6449682.75 ], [ 563849.25, 6449682.75 ], [ 563849.25, 6449682.25 ], [ 563847.25, 6449682.25 ], [ 563847.25, 6449681.75 ], [ 563846.25, 6449681.75 ], [ 563846.25, 6449681.25 ], [ 563845.75, 6449681.25 ], [ 563845.75, 6449680.25 ], [ 563846.75, 6449680.25 ], [ 563846.75, 6449680.75 ], [ 563848.75, 6449680.75 ], [ 563848.75, 6449681.25 ], [ 563849.75, 6449681.25 ], [ 563849.75, 6449682.25 ], [ 563850.25, 6449682.25 ], [ 563850.25, 6449682.75 ], [ 563850.75, 6449682.75 ], [ 563850.75, 6449682.25 ], [ 563851.25, 6449682.25 ], [ 563851.25, 6449685.25 ], [ 563850.75, 6449685.25 ], [ 563850.75, 6449686.75 ], [ 563850.25, 6449686.75 ], [ 563850.25, 6449688.75 ], [ 563849.75, 6449688.75 ], [ 563849.75, 6449691.75 ], [ 563848.75, 6449691.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563838.25, 6449689.75 ], [ 563838.25, 6449689.25 ], [ 563837.75, 6449689.25 ], [ 563837.75, 6449688.75 ], [ 563838.25, 6449688.75 ], [ 563838.25, 6449686.75 ], [ 563838.75, 6449686.75 ], [ 563838.75, 6449684.75 ], [ 563839.25, 6449684.75 ], [ 563839.25, 6449682.75 ], [ 563839.75, 6449682.75 ], [ 563839.75, 6449681.25 ], [ 563840.25, 6449681.25 ], [ 563840.25, 6449680.25 ], [ 563840.75, 6449680.25 ], [ 563840.75, 6449679.75 ], [ 563841.25, 6449679.75 ], [ 563841.25, 6449680.25 ], [ 563840.75, 6449680.25 ], [ 563840.75, 6449681.75 ], [ 563840.25, 6449681.75 ], [ 563840.25, 6449684.75 ], [ 563839.75, 6449684.75 ], [ 563839.75, 6449686.75 ], [ 563839.25, 6449686.75 ], [ 563839.25, 6449687.75 ], [ 563838.75, 6449687.75 ], [ 563838.75, 6449688.25 ], [ 563839.25, 6449688.25 ], [ 563839.25, 6449689.25 ], [ 563838.75, 6449689.25 ], [ 563838.75, 6449689.75 ], [ 563838.25, 6449689.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563828.25, 6449686.25 ], [ 563828.25, 6449684.25 ], [ 563828.75, 6449684.25 ], [ 563828.75, 6449682.25 ], [ 563829.25, 6449682.25 ], [ 563829.25, 6449679.75 ], [ 563829.75, 6449679.75 ], [ 563829.75, 6449676.75 ], [ 563830.25, 6449676.75 ], [ 563830.25, 6449675.75 ], [ 563830.75, 6449675.75 ], [ 563830.75, 6449678.25 ], [ 563830.25, 6449678.25 ], [ 563830.25, 6449680.75 ], [ 563829.75, 6449680.75 ], [ 563829.75, 6449682.75 ], [ 563829.25, 6449682.75 ], [ 563829.25, 6449684.75 ], [ 563828.75, 6449684.75 ], [ 563828.75, 6449686.25 ], [ 563828.25, 6449686.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563817.25, 6449683.75 ], [ 563817.25, 6449681.75 ], [ 563817.75, 6449681.75 ], [ 563817.75, 6449680.25 ], [ 563818.25, 6449680.25 ], [ 563818.25, 6449678.25 ], [ 563818.75, 6449678.25 ], [ 563818.75, 6449676.25 ], [ 563819.25, 6449676.25 ], [ 563819.25, 6449675.75 ], [ 563818.75, 6449675.75 ], [ 563818.75, 6449675.25 ], [ 563819.25, 6449675.25 ], [ 563819.25, 6449674.75 ], [ 563819.75, 6449674.75 ], [ 563819.75, 6449676.25 ], [ 563819.25, 6449676.25 ], [ 563819.25, 6449678.75 ], [ 563818.75, 6449678.75 ], [ 563818.75, 6449680.75 ], [ 563818.25, 6449680.75 ], [ 563818.25, 6449682.25 ], [ 563817.75, 6449682.25 ], [ 563817.75, 6449683.75 ], [ 563817.25, 6449683.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563819.25, 6449674.25 ], [ 563819.25, 6449673.75 ], [ 563819.75, 6449673.75 ], [ 563819.75, 6449674.25 ], [ 563819.25, 6449674.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563857.25, 6449665.75 ], [ 563857.25, 6449664.75 ], [ 563857.75, 6449664.75 ], [ 563857.75, 6449665.25 ], [ 563858.25, 6449665.25 ], [ 563858.25, 6449665.75 ], [ 563857.25, 6449665.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563816.75, 6449665.75 ], [ 563816.75, 6449665.25 ], [ 563815.75, 6449665.25 ], [ 563815.75, 6449664.75 ], [ 563816.75, 6449664.75 ], [ 563816.75, 6449665.25 ], [ 563817.25, 6449665.25 ], [ 563817.25, 6449664.75 ], [ 563818.75, 6449664.75 ], [ 563818.75, 6449664.25 ], [ 563819.75, 6449664.25 ], [ 563819.75, 6449664.75 ], [ 563820.25, 6449664.75 ], [ 563820.25, 6449665.75 ], [ 563818.25, 6449665.75 ], [ 563818.25, 6449665.25 ], [ 563817.25, 6449665.25 ], [ 563817.25, 6449665.75 ], [ 563816.75, 6449665.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563851.75, 6449668.25 ], [ 563851.75, 6449667.75 ], [ 563849.25, 6449667.75 ], [ 563849.25, 6449667.25 ], [ 563848.25, 6449667.25 ], [ 563848.25, 6449665.75 ], [ 563848.75, 6449665.75 ], [ 563848.75, 6449665.25 ], [ 563848.25, 6449665.25 ], [ 563848.25, 6449664.75 ], [ 563847.75, 6449664.75 ], [ 563847.75, 6449664.25 ], [ 563847.25, 6449664.25 ], [ 563847.25, 6449663.75 ], [ 563845.75, 6449663.75 ], [ 563845.75, 6449662.75 ], [ 563847.25, 6449662.75 ], [ 563847.25, 6449663.25 ], [ 563848.75, 6449663.25 ], [ 563848.75, 6449663.75 ], [ 563849.25, 6449663.75 ], [ 563849.25, 6449664.25 ], [ 563849.75, 6449664.25 ], [ 563849.75, 6449667.25 ], [ 563852.75, 6449667.25 ], [ 563852.75, 6449667.75 ], [ 563853.25, 6449667.75 ], [ 563853.25, 6449666.75 ], [ 563853.75, 6449666.75 ], [ 563853.75, 6449666.25 ], [ 563854.25, 6449666.25 ], [ 563854.25, 6449665.75 ], [ 563854.75, 6449665.75 ], [ 563854.75, 6449665.25 ], [ 563855.25, 6449665.25 ], [ 563855.25, 6449664.75 ], [ 563856.25, 6449664.75 ], [ 563856.25, 6449665.25 ], [ 563856.75, 6449665.25 ], [ 563856.75, 6449665.75 ], [ 563854.75, 6449665.75 ], [ 563854.75, 6449666.25 ], [ 563854.25, 6449666.25 ], [ 563854.25, 6449666.75 ], [ 563854.75, 6449666.75 ], [ 563854.75, 6449667.25 ], [ 563854.25, 6449667.25 ], [ 563854.25, 6449667.75 ], [ 563854.75, 6449667.75 ], [ 563854.75, 6449668.25 ], [ 563851.75, 6449668.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563807.25, 6449649.25 ], [ 563807.25, 6449648.75 ], [ 563806.75, 6449648.75 ], [ 563806.75, 6449648.25 ], [ 563807.75, 6449648.25 ], [ 563807.75, 6449649.25 ], [ 563807.25, 6449649.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563803.75, 6449648.75 ], [ 563803.75, 6449648.25 ], [ 563803.25, 6449648.25 ], [ 563803.25, 6449647.75 ], [ 563803.75, 6449647.75 ], [ 563803.75, 6449648.25 ], [ 563806.25, 6449648.25 ], [ 563806.25, 6449648.75 ], [ 563803.75, 6449648.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563802.25, 6449648.25 ], [ 563802.25, 6449647.75 ], [ 563802.75, 6449647.75 ], [ 563802.75, 6449648.25 ], [ 563802.25, 6449648.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.75, 6449647.75 ], [ 563799.75, 6449647.25 ], [ 563800.25, 6449647.25 ], [ 563800.25, 6449647.75 ], [ 563799.75, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563801.25, 6449647.75 ], [ 563801.25, 6449647.25 ], [ 563801.75, 6449647.25 ], [ 563801.75, 6449647.75 ], [ 563801.25, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563812.75, 6449649.25 ], [ 563812.75, 6449648.25 ], [ 563813.25, 6449648.25 ], [ 563813.25, 6449645.25 ], [ 563814.25, 6449645.25 ], [ 563814.25, 6449647.75 ], [ 563813.75, 6449647.75 ], [ 563813.75, 6449648.75 ], [ 563813.25, 6449648.75 ], [ 563813.25, 6449649.25 ], [ 563812.75, 6449649.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563828.25, 6449643.75 ], [ 563828.25, 6449643.25 ], [ 563826.75, 6449643.25 ], [ 563826.75, 6449641.75 ], [ 563828.75, 6449641.75 ], [ 563828.75, 6449642.25 ], [ 563829.25, 6449642.25 ], [ 563829.25, 6449643.25 ], [ 563829.75, 6449643.25 ], [ 563829.75, 6449642.25 ], [ 563830.25, 6449642.25 ], [ 563830.25, 6449642.75 ], [ 563830.75, 6449642.75 ], [ 563830.75, 6449643.75 ], [ 563829.25, 6449643.75 ], [ 563829.25, 6449643.25 ], [ 563828.75, 6449643.25 ], [ 563828.75, 6449643.75 ], [ 563828.25, 6449643.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563829.75, 6449639.75 ], [ 563829.75, 6449639.25 ], [ 563829.25, 6449639.25 ], [ 563829.25, 6449638.75 ], [ 563828.75, 6449638.75 ], [ 563828.75, 6449638.25 ], [ 563829.25, 6449638.25 ], [ 563829.25, 6449637.75 ], [ 563830.25, 6449637.75 ], [ 563830.25, 6449638.25 ], [ 563831.75, 6449638.25 ], [ 563831.75, 6449639.75 ], [ 563829.75, 6449639.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563851.25, 6449635.75 ], [ 563851.25, 6449635.25 ], [ 563851.75, 6449635.25 ], [ 563851.75, 6449633.25 ], [ 563852.25, 6449633.25 ], [ 563852.25, 6449632.75 ], [ 563852.75, 6449632.75 ], [ 563852.75, 6449633.25 ], [ 563853.25, 6449633.25 ], [ 563853.25, 6449634.25 ], [ 563852.75, 6449634.25 ], [ 563852.75, 6449635.25 ], [ 563851.75, 6449635.25 ], [ 563851.75, 6449635.75 ], [ 563851.25, 6449635.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563828.75, 6449632.25 ], [ 563828.75, 6449631.75 ], [ 563829.25, 6449631.75 ], [ 563829.25, 6449632.25 ], [ 563828.75, 6449632.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563800.25, 6449630.25 ], [ 563800.25, 6449629.75 ], [ 563799.75, 6449629.75 ], [ 563799.75, 6449629.25 ], [ 563801.25, 6449629.25 ], [ 563801.25, 6449629.75 ], [ 563802.75, 6449629.75 ], [ 563802.75, 6449630.25 ], [ 563801.25, 6449630.25 ], [ 563801.25, 6449629.75 ], [ 563800.75, 6449629.75 ], [ 563800.75, 6449630.25 ], [ 563800.25, 6449630.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563831.75, 6449637.25 ], [ 563831.75, 6449636.25 ], [ 563830.75, 6449636.25 ], [ 563830.75, 6449635.75 ], [ 563829.75, 6449635.75 ], [ 563829.75, 6449636.25 ], [ 563829.25, 6449636.25 ], [ 563829.25, 6449635.75 ], [ 563829.75, 6449635.75 ], [ 563829.75, 6449635.25 ], [ 563829.25, 6449635.25 ], [ 563829.25, 6449634.75 ], [ 563829.75, 6449634.75 ], [ 563829.75, 6449633.25 ], [ 563830.25, 6449633.25 ], [ 563830.25, 6449632.25 ], [ 563830.75, 6449632.25 ], [ 563830.75, 6449630.25 ], [ 563831.25, 6449630.25 ], [ 563831.25, 6449629.25 ], [ 563830.75, 6449629.25 ], [ 563830.75, 6449628.25 ], [ 563832.25, 6449628.25 ], [ 563832.25, 6449629.75 ], [ 563832.75, 6449629.75 ], [ 563832.75, 6449630.25 ], [ 563833.75, 6449630.25 ], [ 563833.75, 6449630.75 ], [ 563834.25, 6449630.75 ], [ 563834.25, 6449630.25 ], [ 563834.75, 6449630.25 ], [ 563834.75, 6449631.25 ], [ 563834.25, 6449631.25 ], [ 563834.25, 6449632.25 ], [ 563833.75, 6449632.25 ], [ 563833.75, 6449633.25 ], [ 563833.25, 6449633.25 ], [ 563833.25, 6449634.75 ], [ 563832.75, 6449634.75 ], [ 563832.75, 6449636.25 ], [ 563832.25, 6449636.25 ], [ 563832.25, 6449637.25 ], [ 563831.75, 6449637.25 ] ], [ [ 563833.25, 6449631.75 ], [ 563833.75, 6449631.75 ], [ 563833.75, 6449631.25 ], [ 563833.25, 6449631.25 ], [ 563833.25, 6449631.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563802.25, 6449625.75 ], [ 563802.25, 6449625.25 ], [ 563800.75, 6449625.25 ], [ 563800.75, 6449624.75 ], [ 563800.25, 6449624.75 ], [ 563800.25, 6449625.25 ], [ 563799.75, 6449625.25 ], [ 563799.75, 6449623.75 ], [ 563800.25, 6449623.75 ], [ 563800.25, 6449624.25 ], [ 563802.75, 6449624.25 ], [ 563802.75, 6449624.75 ], [ 563804.25, 6449624.75 ], [ 563804.25, 6449625.25 ], [ 563803.75, 6449625.25 ], [ 563803.75, 6449625.75 ], [ 563802.25, 6449625.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563800.25, 6449617.25 ], [ 563800.25, 6449616.75 ], [ 563799.75, 6449616.75 ], [ 563799.75, 6449616.25 ], [ 563801.25, 6449616.25 ], [ 563801.25, 6449617.25 ], [ 563800.25, 6449617.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563829.75, 6449708.75 ], [ 563829.75, 6449708.25 ], [ 563829.25, 6449708.25 ], [ 563829.25, 6449707.75 ], [ 563829.75, 6449707.75 ], [ 563829.75, 6449706.75 ], [ 563831.75, 6449706.75 ], [ 563831.75, 6449707.25 ], [ 563835.75, 6449707.25 ], [ 563835.75, 6449708.25 ], [ 563834.25, 6449708.25 ], [ 563834.25, 6449708.75 ], [ 563833.75, 6449708.75 ], [ 563833.75, 6449708.25 ], [ 563833.25, 6449708.25 ], [ 563833.25, 6449708.75 ], [ 563832.75, 6449708.75 ], [ 563832.75, 6449708.25 ], [ 563832.25, 6449708.25 ], [ 563832.25, 6449708.75 ], [ 563831.25, 6449708.75 ], [ 563831.25, 6449708.25 ], [ 563830.25, 6449708.25 ], [ 563830.25, 6449708.75 ], [ 563829.75, 6449708.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563871.25, 6449706.25 ], [ 563871.25, 6449705.75 ], [ 563869.25, 6449705.75 ], [ 563869.25, 6449705.25 ], [ 563868.25, 6449705.25 ], [ 563868.25, 6449703.25 ], [ 563868.75, 6449703.25 ], [ 563868.75, 6449700.75 ], [ 563869.25, 6449700.75 ], [ 563869.25, 6449699.75 ], [ 563868.75, 6449699.75 ], [ 563868.75, 6449699.25 ], [ 563869.25, 6449699.25 ], [ 563869.25, 6449698.75 ], [ 563869.75, 6449698.75 ], [ 563869.75, 6449698.25 ], [ 563871.75, 6449698.25 ], [ 563871.75, 6449697.75 ], [ 563873.75, 6449697.75 ], [ 563873.75, 6449698.25 ], [ 563874.25, 6449698.25 ], [ 563874.25, 6449698.75 ], [ 563873.75, 6449698.75 ], [ 563873.75, 6449699.25 ], [ 563874.25, 6449699.25 ], [ 563874.25, 6449702.25 ], [ 563873.75, 6449702.25 ], [ 563873.75, 6449703.75 ], [ 563872.75, 6449703.75 ], [ 563872.75, 6449705.75 ], [ 563872.25, 6449705.75 ], [ 563872.25, 6449706.25 ], [ 563871.25, 6449706.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563848.25, 6449681.25 ], [ 563848.25, 6449680.75 ], [ 563848.75, 6449680.75 ], [ 563848.75, 6449681.25 ], [ 563848.25, 6449681.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563847.25, 6449691.75 ], [ 563847.25, 6449691.25 ], [ 563844.25, 6449691.25 ], [ 563844.25, 6449690.75 ], [ 563842.25, 6449690.75 ], [ 563842.25, 6449690.25 ], [ 563840.25, 6449690.25 ], [ 563840.25, 6449689.75 ], [ 563838.75, 6449689.75 ], [ 563838.75, 6449687.25 ], [ 563839.25, 6449687.25 ], [ 563839.25, 6449685.25 ], [ 563839.75, 6449685.25 ], [ 563839.75, 6449683.25 ], [ 563840.25, 6449683.25 ], [ 563840.25, 6449680.75 ], [ 563840.75, 6449680.75 ], [ 563840.75, 6449680.25 ], [ 563843.75, 6449680.25 ], [ 563843.75, 6449680.75 ], [ 563846.75, 6449680.75 ], [ 563846.75, 6449681.25 ], [ 563847.75, 6449681.25 ], [ 563847.75, 6449681.75 ], [ 563849.25, 6449681.75 ], [ 563849.25, 6449682.25 ], [ 563849.75, 6449682.25 ], [ 563849.75, 6449681.75 ], [ 563850.75, 6449681.75 ], [ 563850.75, 6449682.75 ], [ 563851.25, 6449682.75 ], [ 563851.25, 6449683.75 ], [ 563850.75, 6449683.75 ], [ 563850.75, 6449685.25 ], [ 563850.25, 6449685.25 ], [ 563850.25, 6449686.75 ], [ 563849.75, 6449686.75 ], [ 563849.75, 6449689.75 ], [ 563849.25, 6449689.75 ], [ 563849.25, 6449691.75 ], [ 563847.25, 6449691.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563825.75, 6449686.25 ], [ 563825.75, 6449685.75 ], [ 563823.25, 6449685.75 ], [ 563823.25, 6449685.25 ], [ 563821.75, 6449685.25 ], [ 563821.75, 6449684.75 ], [ 563820.25, 6449684.75 ], [ 563820.25, 6449684.25 ], [ 563818.25, 6449684.25 ], [ 563818.25, 6449683.75 ], [ 563817.75, 6449683.75 ], [ 563817.75, 6449681.75 ], [ 563818.25, 6449681.75 ], [ 563818.25, 6449681.25 ], [ 563817.75, 6449681.25 ], [ 563817.75, 6449680.75 ], [ 563818.25, 6449680.75 ], [ 563818.25, 6449678.75 ], [ 563818.75, 6449678.75 ], [ 563818.75, 6449676.25 ], [ 563819.25, 6449676.25 ], [ 563819.25, 6449673.75 ], [ 563819.75, 6449673.75 ], [ 563819.75, 6449673.25 ], [ 563821.75, 6449673.25 ], [ 563821.75, 6449673.75 ], [ 563822.25, 6449673.75 ], [ 563822.25, 6449673.25 ], [ 563822.75, 6449673.25 ], [ 563822.75, 6449673.75 ], [ 563824.75, 6449673.75 ], [ 563824.75, 6449674.25 ], [ 563825.75, 6449674.25 ], [ 563825.75, 6449674.75 ], [ 563827.75, 6449674.75 ], [ 563827.75, 6449675.25 ], [ 563830.25, 6449675.25 ], [ 563830.25, 6449679.25 ], [ 563829.75, 6449679.25 ], [ 563829.75, 6449680.75 ], [ 563829.25, 6449680.75 ], [ 563829.25, 6449682.75 ], [ 563828.75, 6449682.75 ], [ 563828.75, 6449686.25 ], [ 563825.75, 6449686.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563843.75, 6449640.75 ], [ 563843.75, 6449640.25 ], [ 563842.25, 6449640.25 ], [ 563842.25, 6449639.75 ], [ 563840.25, 6449639.75 ], [ 563840.25, 6449639.25 ], [ 563839.25, 6449639.25 ], [ 563839.25, 6449638.75 ], [ 563838.25, 6449638.75 ], [ 563838.25, 6449638.25 ], [ 563837.75, 6449638.25 ], [ 563837.75, 6449638.75 ], [ 563837.25, 6449638.75 ], [ 563837.25, 6449638.25 ], [ 563836.75, 6449638.25 ], [ 563836.75, 6449637.75 ], [ 563834.75, 6449637.75 ], [ 563834.75, 6449637.25 ], [ 563833.25, 6449637.25 ], [ 563833.25, 6449636.75 ], [ 563832.25, 6449636.75 ], [ 563832.25, 6449634.25 ], [ 563832.75, 6449634.25 ], [ 563832.75, 6449633.75 ], [ 563833.25, 6449633.75 ], [ 563833.25, 6449631.75 ], [ 563833.75, 6449631.75 ], [ 563833.75, 6449629.75 ], [ 563834.25, 6449629.75 ], [ 563834.25, 6449628.75 ], [ 563834.75, 6449628.75 ], [ 563834.75, 6449627.25 ], [ 563835.25, 6449627.25 ], [ 563835.25, 6449626.75 ], [ 563836.25, 6449626.75 ], [ 563836.25, 6449627.25 ], [ 563837.75, 6449627.25 ], [ 563837.75, 6449627.75 ], [ 563838.75, 6449627.75 ], [ 563838.75, 6449628.25 ], [ 563840.25, 6449628.25 ], [ 563840.25, 6449627.75 ], [ 563841.75, 6449627.75 ], [ 563841.75, 6449628.25 ], [ 563842.25, 6449628.25 ], [ 563842.25, 6449628.75 ], [ 563843.75, 6449628.75 ], [ 563843.75, 6449629.25 ], [ 563844.75, 6449629.25 ], [ 563844.75, 6449629.75 ], [ 563845.25, 6449629.75 ], [ 563845.25, 6449629.25 ], [ 563845.75, 6449629.25 ], [ 563845.75, 6449629.75 ], [ 563847.25, 6449629.75 ], [ 563847.25, 6449630.25 ], [ 563848.75, 6449630.25 ], [ 563848.75, 6449633.25 ], [ 563848.25, 6449633.25 ], [ 563848.25, 6449633.75 ], [ 563847.75, 6449633.75 ], [ 563847.75, 6449634.25 ], [ 563848.25, 6449634.25 ], [ 563848.25, 6449635.25 ], [ 563847.75, 6449635.25 ], [ 563847.75, 6449635.75 ], [ 563847.25, 6449635.75 ], [ 563847.25, 6449637.75 ], [ 563846.75, 6449637.75 ], [ 563846.75, 6449638.75 ], [ 563845.75, 6449638.75 ], [ 563845.75, 6449639.25 ], [ 563845.25, 6449639.25 ], [ 563845.25, 6449639.75 ], [ 563844.75, 6449639.75 ], [ 563844.75, 6449640.75 ], [ 563843.75, 6449640.75 ] ], [ [ 563846.25, 6449637.75 ], [ 563846.75, 6449637.75 ], [ 563846.75, 6449637.25 ], [ 563846.25, 6449637.25 ], [ 563846.25, 6449637.75 ] ], [ [ 563847.75, 6449632.25 ], [ 563848.25, 6449632.25 ], [ 563848.25, 6449631.75 ], [ 563847.75, 6449631.75 ], [ 563847.75, 6449632.25 ] ], [ [ 563835.75, 6449627.75 ], [ 563836.25, 6449627.75 ], [ 563836.25, 6449627.25 ], [ 563835.75, 6449627.25 ], [ 563835.75, 6449627.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563800.25, 6449630.25 ], [ 563800.25, 6449629.75 ], [ 563799.75, 6449629.75 ], [ 563799.75, 6449624.75 ], [ 563801.75, 6449624.75 ], [ 563801.75, 6449624.25 ], [ 563799.75, 6449624.25 ], [ 563799.75, 6449623.75 ], [ 563800.25, 6449623.75 ], [ 563800.25, 6449623.25 ], [ 563799.75, 6449623.25 ], [ 563799.75, 6449616.75 ], [ 563800.25, 6449616.75 ], [ 563800.25, 6449615.75 ], [ 563801.75, 6449615.75 ], [ 563801.75, 6449616.25 ], [ 563803.25, 6449616.25 ], [ 563803.25, 6449616.75 ], [ 563805.25, 6449616.75 ], [ 563805.25, 6449616.25 ], [ 563805.75, 6449616.25 ], [ 563805.75, 6449616.75 ], [ 563806.25, 6449616.75 ], [ 563806.25, 6449617.25 ], [ 563805.75, 6449617.25 ], [ 563805.75, 6449619.25 ], [ 563805.25, 6449619.25 ], [ 563805.25, 6449620.75 ], [ 563805.75, 6449620.75 ], [ 563805.75, 6449621.25 ], [ 563805.25, 6449621.25 ], [ 563805.25, 6449622.25 ], [ 563804.75, 6449622.25 ], [ 563804.75, 6449624.75 ], [ 563803.75, 6449624.75 ], [ 563803.75, 6449625.25 ], [ 563804.25, 6449625.25 ], [ 563804.25, 6449625.75 ], [ 563803.75, 6449625.75 ], [ 563803.75, 6449626.25 ], [ 563804.25, 6449626.25 ], [ 563804.25, 6449626.75 ], [ 563803.75, 6449626.75 ], [ 563803.75, 6449628.25 ], [ 563803.25, 6449628.25 ], [ 563803.25, 6449630.25 ], [ 563801.75, 6449630.25 ], [ 563801.75, 6449629.75 ], [ 563801.25, 6449629.75 ], [ 563801.25, 6449630.25 ], [ 563800.25, 6449630.25 ] ], [ [ 563803.25, 6449625.75 ], [ 563803.75, 6449625.75 ], [ 563803.75, 6449625.25 ], [ 563803.25, 6449625.25 ], [ 563803.25, 6449625.75 ] ], [ [ 563801.75, 6449625.25 ], [ 563803.25, 6449625.25 ], [ 563803.25, 6449624.75 ], [ 563801.75, 6449624.75 ], [ 563801.75, 6449625.25 ] ] ] } } +] +} diff --git a/data/mobj0/niv4/intrinsic/tile_splitted_2818_32247.geojson b/data/mobj0/niv4/intrinsic/tile_splitted_2818_32247.geojson new file mode 100644 index 0000000..a89bf54 --- /dev/null +++ b/data/mobj0/niv4/intrinsic/tile_splitted_2818_32247.geojson @@ -0,0 +1,24 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563730.75, 6449597.75 ], [ 563730.75, 6449597.25 ], [ 563731.25, 6449597.25 ], [ 563731.25, 6449597.75 ], [ 563730.75, 6449597.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563782.75, 6449597.75 ], [ 563782.75, 6449597.25 ], [ 563783.25, 6449597.25 ], [ 563783.25, 6449597.75 ], [ 563782.75, 6449597.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563720.25, 6449600.25 ], [ 563720.25, 6449598.25 ], [ 563720.75, 6449598.25 ], [ 563720.75, 6449597.25 ], [ 563721.25, 6449597.25 ], [ 563721.25, 6449597.75 ], [ 563722.75, 6449597.75 ], [ 563722.75, 6449597.25 ], [ 563723.25, 6449597.25 ], [ 563723.25, 6449597.75 ], [ 563724.25, 6449597.75 ], [ 563724.25, 6449597.25 ], [ 563723.75, 6449597.25 ], [ 563723.75, 6449596.75 ], [ 563724.25, 6449596.75 ], [ 563724.25, 6449597.25 ], [ 563725.75, 6449597.25 ], [ 563725.75, 6449597.75 ], [ 563727.75, 6449597.75 ], [ 563727.75, 6449596.75 ], [ 563728.25, 6449596.75 ], [ 563728.25, 6449597.75 ], [ 563730.25, 6449597.75 ], [ 563730.25, 6449598.25 ], [ 563732.25, 6449598.25 ], [ 563732.25, 6449597.75 ], [ 563733.25, 6449597.75 ], [ 563733.25, 6449598.25 ], [ 563734.75, 6449598.25 ], [ 563734.75, 6449600.25 ], [ 563732.75, 6449600.25 ], [ 563732.75, 6449599.75 ], [ 563732.25, 6449599.75 ], [ 563732.25, 6449600.25 ], [ 563722.25, 6449600.25 ], [ 563722.25, 6449599.75 ], [ 563721.75, 6449599.75 ], [ 563721.75, 6449600.25 ], [ 563720.25, 6449600.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563778.75, 6449592.75 ], [ 563778.75, 6449592.25 ], [ 563780.25, 6449592.25 ], [ 563780.25, 6449592.75 ], [ 563778.75, 6449592.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563740.75, 6449600.25 ], [ 563740.75, 6449599.75 ], [ 563740.25, 6449599.75 ], [ 563740.25, 6449598.75 ], [ 563739.25, 6449598.75 ], [ 563739.25, 6449598.25 ], [ 563737.25, 6449598.25 ], [ 563737.25, 6449597.75 ], [ 563735.75, 6449597.75 ], [ 563735.75, 6449597.25 ], [ 563735.25, 6449597.25 ], [ 563735.25, 6449595.75 ], [ 563735.75, 6449595.75 ], [ 563735.75, 6449594.25 ], [ 563736.25, 6449594.25 ], [ 563736.25, 6449592.25 ], [ 563736.75, 6449592.25 ], [ 563736.75, 6449591.75 ], [ 563737.25, 6449591.75 ], [ 563737.25, 6449591.25 ], [ 563737.75, 6449591.25 ], [ 563737.75, 6449590.75 ], [ 563737.25, 6449590.75 ], [ 563737.25, 6449589.75 ], [ 563738.25, 6449589.75 ], [ 563738.25, 6449591.25 ], [ 563738.75, 6449591.25 ], [ 563738.75, 6449590.75 ], [ 563739.25, 6449590.75 ], [ 563739.25, 6449591.25 ], [ 563740.25, 6449591.25 ], [ 563740.25, 6449591.75 ], [ 563742.25, 6449591.75 ], [ 563742.25, 6449592.25 ], [ 563742.75, 6449592.25 ], [ 563742.75, 6449591.75 ], [ 563743.25, 6449591.75 ], [ 563743.25, 6449590.75 ], [ 563743.75, 6449590.75 ], [ 563743.75, 6449590.25 ], [ 563744.75, 6449590.25 ], [ 563744.75, 6449590.75 ], [ 563746.25, 6449590.75 ], [ 563746.25, 6449591.25 ], [ 563747.25, 6449591.25 ], [ 563747.25, 6449591.75 ], [ 563746.75, 6449591.75 ], [ 563746.75, 6449592.25 ], [ 563746.25, 6449592.25 ], [ 563746.25, 6449593.75 ], [ 563747.25, 6449593.75 ], [ 563747.25, 6449594.25 ], [ 563749.25, 6449594.25 ], [ 563749.25, 6449594.75 ], [ 563749.75, 6449594.75 ], [ 563749.75, 6449593.25 ], [ 563750.25, 6449593.25 ], [ 563750.25, 6449593.75 ], [ 563750.75, 6449593.75 ], [ 563750.75, 6449595.25 ], [ 563751.75, 6449595.25 ], [ 563751.75, 6449595.75 ], [ 563752.25, 6449595.75 ], [ 563752.25, 6449596.75 ], [ 563751.75, 6449596.75 ], [ 563751.75, 6449598.25 ], [ 563751.25, 6449598.25 ], [ 563751.25, 6449599.25 ], [ 563750.75, 6449599.25 ], [ 563750.75, 6449600.25 ], [ 563743.25, 6449600.25 ], [ 563743.25, 6449599.75 ], [ 563741.25, 6449599.75 ], [ 563741.25, 6449600.25 ], [ 563740.75, 6449600.25 ] ], [ [ 563747.25, 6449596.25 ], [ 563747.75, 6449596.25 ], [ 563747.75, 6449595.75 ], [ 563747.25, 6449595.75 ], [ 563747.25, 6449596.25 ] ], [ [ 563739.75, 6449593.75 ], [ 563740.25, 6449593.75 ], [ 563740.25, 6449593.25 ], [ 563739.75, 6449593.25 ], [ 563739.75, 6449593.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563703.25, 6449590.75 ], [ 563703.25, 6449588.25 ], [ 563703.75, 6449588.25 ], [ 563703.75, 6449587.25 ], [ 563705.25, 6449587.25 ], [ 563705.25, 6449589.25 ], [ 563704.75, 6449589.25 ], [ 563704.75, 6449590.75 ], [ 563703.25, 6449590.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563700.75, 6449588.75 ], [ 563700.75, 6449588.25 ], [ 563700.25, 6449588.25 ], [ 563700.25, 6449586.25 ], [ 563700.75, 6449586.25 ], [ 563700.75, 6449585.75 ], [ 563701.75, 6449585.75 ], [ 563701.75, 6449586.25 ], [ 563703.25, 6449586.25 ], [ 563703.25, 6449586.75 ], [ 563702.75, 6449586.75 ], [ 563702.75, 6449587.75 ], [ 563702.25, 6449587.75 ], [ 563702.25, 6449588.75 ], [ 563700.75, 6449588.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563717.25, 6449541.25 ], [ 563717.25, 6449540.25 ], [ 563717.75, 6449540.25 ], [ 563717.75, 6449541.25 ], [ 563717.25, 6449541.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563691.25, 6449531.25 ], [ 563691.25, 6449529.75 ], [ 563690.75, 6449529.75 ], [ 563690.75, 6449529.25 ], [ 563689.75, 6449529.25 ], [ 563689.75, 6449528.75 ], [ 563691.25, 6449528.75 ], [ 563691.25, 6449529.25 ], [ 563693.75, 6449529.25 ], [ 563693.75, 6449528.25 ], [ 563693.25, 6449528.25 ], [ 563693.25, 6449527.75 ], [ 563693.75, 6449527.75 ], [ 563693.75, 6449528.25 ], [ 563694.25, 6449528.25 ], [ 563694.25, 6449528.75 ], [ 563694.75, 6449528.75 ], [ 563694.75, 6449529.25 ], [ 563695.25, 6449529.25 ], [ 563695.25, 6449528.25 ], [ 563695.75, 6449528.25 ], [ 563695.75, 6449527.25 ], [ 563696.75, 6449527.25 ], [ 563696.75, 6449528.25 ], [ 563696.25, 6449528.25 ], [ 563696.25, 6449529.75 ], [ 563695.75, 6449529.75 ], [ 563695.75, 6449530.75 ], [ 563695.25, 6449530.75 ], [ 563695.25, 6449530.25 ], [ 563694.75, 6449530.25 ], [ 563694.75, 6449529.25 ], [ 563694.25, 6449529.25 ], [ 563694.25, 6449530.25 ], [ 563693.75, 6449530.25 ], [ 563693.75, 6449530.75 ], [ 563692.75, 6449530.75 ], [ 563692.75, 6449530.25 ], [ 563692.25, 6449530.25 ], [ 563692.25, 6449530.75 ], [ 563691.75, 6449530.75 ], [ 563691.75, 6449531.25 ], [ 563691.25, 6449531.25 ] ], [ [ 563691.75, 6449530.25 ], [ 563692.25, 6449530.25 ], [ 563692.25, 6449529.75 ], [ 563691.75, 6449529.75 ], [ 563691.75, 6449530.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563693.25, 6449526.75 ], [ 563693.25, 6449526.25 ], [ 563692.25, 6449526.25 ], [ 563692.25, 6449525.75 ], [ 563691.75, 6449525.75 ], [ 563691.75, 6449524.75 ], [ 563692.25, 6449524.75 ], [ 563692.25, 6449525.25 ], [ 563693.25, 6449525.25 ], [ 563693.25, 6449523.25 ], [ 563693.75, 6449523.25 ], [ 563693.75, 6449522.75 ], [ 563694.25, 6449522.75 ], [ 563694.25, 6449524.75 ], [ 563694.75, 6449524.75 ], [ 563694.75, 6449523.75 ], [ 563695.25, 6449523.75 ], [ 563695.25, 6449523.25 ], [ 563694.75, 6449523.25 ], [ 563694.75, 6449522.75 ], [ 563695.25, 6449522.75 ], [ 563695.25, 6449522.25 ], [ 563695.75, 6449522.25 ], [ 563695.75, 6449523.75 ], [ 563695.25, 6449523.75 ], [ 563695.25, 6449524.75 ], [ 563695.75, 6449524.75 ], [ 563695.75, 6449525.25 ], [ 563695.25, 6449525.25 ], [ 563695.25, 6449526.75 ], [ 563693.25, 6449526.75 ] ], [ [ 563693.75, 6449525.75 ], [ 563694.25, 6449525.75 ], [ 563694.25, 6449525.25 ], [ 563693.75, 6449525.25 ], [ 563693.75, 6449525.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563775.25, 6449521.75 ], [ 563775.25, 6449521.25 ], [ 563774.25, 6449521.25 ], [ 563774.25, 6449520.75 ], [ 563775.25, 6449520.75 ], [ 563775.25, 6449520.25 ], [ 563775.75, 6449520.25 ], [ 563775.75, 6449521.75 ], [ 563775.25, 6449521.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563796.75, 6449517.25 ], [ 563796.75, 6449516.75 ], [ 563797.25, 6449516.75 ], [ 563797.25, 6449517.25 ], [ 563796.75, 6449517.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.25, 6449519.25 ], [ 563799.25, 6449518.75 ], [ 563797.25, 6449518.75 ], [ 563797.25, 6449518.25 ], [ 563795.75, 6449518.25 ], [ 563795.75, 6449517.75 ], [ 563791.75, 6449517.75 ], [ 563791.75, 6449517.25 ], [ 563789.75, 6449517.25 ], [ 563789.75, 6449516.75 ], [ 563788.25, 6449516.75 ], [ 563788.25, 6449516.25 ], [ 563787.25, 6449516.25 ], [ 563787.25, 6449516.75 ], [ 563786.75, 6449516.75 ], [ 563786.75, 6449516.25 ], [ 563786.25, 6449516.25 ], [ 563786.25, 6449515.75 ], [ 563784.75, 6449515.75 ], [ 563784.75, 6449514.75 ], [ 563785.25, 6449514.75 ], [ 563785.25, 6449515.25 ], [ 563786.25, 6449515.25 ], [ 563786.25, 6449514.75 ], [ 563786.75, 6449514.75 ], [ 563786.75, 6449515.25 ], [ 563787.75, 6449515.25 ], [ 563787.75, 6449515.75 ], [ 563789.75, 6449515.75 ], [ 563789.75, 6449516.25 ], [ 563791.75, 6449516.25 ], [ 563791.75, 6449516.75 ], [ 563792.25, 6449516.75 ], [ 563792.25, 6449516.25 ], [ 563792.75, 6449516.25 ], [ 563792.75, 6449516.75 ], [ 563794.25, 6449516.75 ], [ 563794.25, 6449517.25 ], [ 563794.75, 6449517.25 ], [ 563794.75, 6449516.75 ], [ 563795.75, 6449516.75 ], [ 563795.75, 6449517.25 ], [ 563796.25, 6449517.25 ], [ 563796.25, 6449517.75 ], [ 563798.25, 6449517.75 ], [ 563798.25, 6449518.25 ], [ 563798.75, 6449518.25 ], [ 563798.75, 6449517.75 ], [ 563799.25, 6449517.75 ], [ 563799.25, 6449517.25 ], [ 563799.75, 6449517.25 ], [ 563799.75, 6449517.75 ], [ 563799.25, 6449517.75 ], [ 563799.25, 6449518.25 ], [ 563799.75, 6449518.25 ], [ 563799.75, 6449519.25 ], [ 563799.25, 6449519.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563783.25, 6449515.25 ], [ 563783.25, 6449514.75 ], [ 563783.75, 6449514.75 ], [ 563783.75, 6449515.25 ], [ 563783.25, 6449515.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563746.75, 6449515.25 ], [ 563746.75, 6449514.25 ], [ 563747.75, 6449514.25 ], [ 563747.75, 6449514.75 ], [ 563748.25, 6449514.75 ], [ 563748.25, 6449515.25 ], [ 563746.75, 6449515.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563745.25, 6449515.75 ], [ 563745.25, 6449514.25 ], [ 563745.75, 6449514.25 ], [ 563745.75, 6449513.75 ], [ 563746.25, 6449513.75 ], [ 563746.25, 6449515.25 ], [ 563745.75, 6449515.25 ], [ 563745.75, 6449515.75 ], [ 563745.25, 6449515.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563782.75, 6449597.75 ], [ 563782.75, 6449597.25 ], [ 563781.25, 6449597.25 ], [ 563781.25, 6449596.75 ], [ 563779.75, 6449596.75 ], [ 563779.75, 6449596.25 ], [ 563779.25, 6449596.25 ], [ 563779.25, 6449595.75 ], [ 563778.75, 6449595.75 ], [ 563778.75, 6449594.25 ], [ 563779.25, 6449594.25 ], [ 563779.25, 6449592.75 ], [ 563779.75, 6449592.75 ], [ 563779.75, 6449592.25 ], [ 563780.25, 6449592.25 ], [ 563780.25, 6449591.75 ], [ 563780.75, 6449591.75 ], [ 563780.75, 6449592.25 ], [ 563781.75, 6449592.25 ], [ 563781.75, 6449592.75 ], [ 563783.25, 6449592.75 ], [ 563783.25, 6449593.25 ], [ 563783.75, 6449593.25 ], [ 563783.75, 6449593.75 ], [ 563784.25, 6449593.75 ], [ 563784.25, 6449594.25 ], [ 563783.75, 6449594.25 ], [ 563783.75, 6449594.75 ], [ 563784.25, 6449594.75 ], [ 563784.25, 6449596.25 ], [ 563783.75, 6449596.25 ], [ 563783.75, 6449597.25 ], [ 563783.25, 6449597.25 ], [ 563783.25, 6449597.75 ], [ 563782.75, 6449597.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563711.25, 6449590.75 ], [ 563711.25, 6449590.25 ], [ 563707.25, 6449590.25 ], [ 563707.25, 6449589.75 ], [ 563706.25, 6449589.75 ], [ 563706.25, 6449589.25 ], [ 563705.75, 6449589.25 ], [ 563705.75, 6449587.75 ], [ 563706.25, 6449587.75 ], [ 563706.25, 6449584.75 ], [ 563706.75, 6449584.75 ], [ 563706.75, 6449583.25 ], [ 563707.25, 6449583.25 ], [ 563707.25, 6449583.75 ], [ 563709.75, 6449583.75 ], [ 563709.75, 6449584.25 ], [ 563711.75, 6449584.25 ], [ 563711.75, 6449584.75 ], [ 563712.75, 6449584.75 ], [ 563712.75, 6449587.25 ], [ 563712.25, 6449587.25 ], [ 563712.25, 6449588.25 ], [ 563712.75, 6449588.25 ], [ 563712.75, 6449588.75 ], [ 563712.25, 6449588.75 ], [ 563712.25, 6449590.75 ], [ 563711.25, 6449590.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563717.25, 6449553.25 ], [ 563717.25, 6449552.75 ], [ 563715.25, 6449552.75 ], [ 563715.25, 6449552.25 ], [ 563713.25, 6449552.25 ], [ 563713.25, 6449551.75 ], [ 563710.75, 6449551.75 ], [ 563710.75, 6449551.25 ], [ 563709.25, 6449551.25 ], [ 563709.25, 6449550.75 ], [ 563708.75, 6449550.75 ], [ 563708.75, 6449551.25 ], [ 563708.25, 6449551.25 ], [ 563708.25, 6449550.75 ], [ 563706.75, 6449550.75 ], [ 563706.75, 6449549.25 ], [ 563704.75, 6449549.25 ], [ 563704.75, 6449548.75 ], [ 563703.75, 6449548.75 ], [ 563703.75, 6449546.75 ], [ 563704.25, 6449546.75 ], [ 563704.25, 6449543.25 ], [ 563704.75, 6449543.25 ], [ 563704.75, 6449540.75 ], [ 563705.25, 6449540.75 ], [ 563705.25, 6449538.75 ], [ 563706.25, 6449538.75 ], [ 563706.25, 6449539.25 ], [ 563707.25, 6449539.25 ], [ 563707.25, 6449539.75 ], [ 563709.25, 6449539.75 ], [ 563709.25, 6449539.25 ], [ 563711.25, 6449539.25 ], [ 563711.25, 6449539.75 ], [ 563711.75, 6449539.75 ], [ 563711.75, 6449540.25 ], [ 563713.75, 6449540.25 ], [ 563713.75, 6449540.75 ], [ 563716.25, 6449540.75 ], [ 563716.25, 6449541.25 ], [ 563719.75, 6449541.25 ], [ 563719.75, 6449541.75 ], [ 563720.25, 6449541.75 ], [ 563720.25, 6449542.25 ], [ 563721.25, 6449542.25 ], [ 563721.25, 6449544.25 ], [ 563720.75, 6449544.25 ], [ 563720.75, 6449547.25 ], [ 563720.25, 6449547.25 ], [ 563720.25, 6449549.25 ], [ 563719.75, 6449549.25 ], [ 563719.75, 6449551.25 ], [ 563719.25, 6449551.25 ], [ 563719.25, 6449552.75 ], [ 563718.75, 6449552.75 ], [ 563718.75, 6449553.25 ], [ 563717.25, 6449553.25 ] ], [ [ 563706.75, 6449547.75 ], [ 563707.25, 6449547.75 ], [ 563707.25, 6449547.25 ], [ 563706.75, 6449547.25 ], [ 563706.75, 6449547.75 ] ], [ [ 563706.75, 6449546.75 ], [ 563707.25, 6449546.75 ], [ 563707.25, 6449546.25 ], [ 563706.75, 6449546.25 ], [ 563706.75, 6449546.75 ] ] ] } } +] +} diff --git a/data/mobj0/niv4/intrinsic/tile_splitted_2818_32248.geojson b/data/mobj0/niv4/intrinsic/tile_splitted_2818_32248.geojson new file mode 100644 index 0000000..9eab16d --- /dev/null +++ b/data/mobj0/niv4/intrinsic/tile_splitted_2818_32248.geojson @@ -0,0 +1,58 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563757.25, 6449706.25 ], [ 563757.25, 6449705.75 ], [ 563755.75, 6449705.75 ], [ 563755.75, 6449705.25 ], [ 563756.25, 6449705.25 ], [ 563756.25, 6449704.75 ], [ 563757.25, 6449704.75 ], [ 563757.25, 6449705.25 ], [ 563760.25, 6449705.25 ], [ 563760.25, 6449705.75 ], [ 563759.75, 6449705.75 ], [ 563759.75, 6449706.25 ], [ 563758.75, 6449706.25 ], [ 563758.75, 6449705.75 ], [ 563757.75, 6449705.75 ], [ 563757.75, 6449706.25 ], [ 563757.25, 6449706.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563765.25, 6449707.25 ], [ 563765.25, 6449706.25 ], [ 563765.75, 6449706.25 ], [ 563765.75, 6449705.75 ], [ 563766.25, 6449705.75 ], [ 563766.25, 6449701.75 ], [ 563766.75, 6449701.75 ], [ 563766.75, 6449699.75 ], [ 563767.25, 6449699.75 ], [ 563767.25, 6449698.75 ], [ 563767.75, 6449698.75 ], [ 563767.75, 6449701.75 ], [ 563767.25, 6449701.75 ], [ 563767.25, 6449702.25 ], [ 563767.75, 6449702.25 ], [ 563767.75, 6449702.75 ], [ 563767.25, 6449702.75 ], [ 563767.25, 6449704.75 ], [ 563766.75, 6449704.75 ], [ 563766.75, 6449707.25 ], [ 563765.25, 6449707.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563758.25, 6449702.75 ], [ 563758.25, 6449702.25 ], [ 563757.75, 6449702.25 ], [ 563757.75, 6449701.75 ], [ 563757.25, 6449701.75 ], [ 563757.25, 6449702.25 ], [ 563756.25, 6449702.25 ], [ 563756.25, 6449700.25 ], [ 563756.75, 6449700.25 ], [ 563756.75, 6449698.75 ], [ 563760.25, 6449698.75 ], [ 563760.25, 6449699.25 ], [ 563761.25, 6449699.25 ], [ 563761.25, 6449700.75 ], [ 563760.75, 6449700.75 ], [ 563760.75, 6449701.75 ], [ 563761.75, 6449701.75 ], [ 563761.75, 6449702.25 ], [ 563761.25, 6449702.25 ], [ 563761.25, 6449702.75 ], [ 563758.25, 6449702.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563767.75, 6449697.25 ], [ 563767.75, 6449696.75 ], [ 563768.25, 6449696.75 ], [ 563768.25, 6449697.25 ], [ 563767.75, 6449697.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563758.25, 6449698.25 ], [ 563758.25, 6449697.25 ], [ 563758.75, 6449697.25 ], [ 563758.75, 6449696.75 ], [ 563757.25, 6449696.75 ], [ 563757.25, 6449696.25 ], [ 563759.25, 6449696.25 ], [ 563759.25, 6449696.75 ], [ 563759.75, 6449696.75 ], [ 563759.75, 6449697.25 ], [ 563758.75, 6449697.25 ], [ 563758.75, 6449697.75 ], [ 563759.25, 6449697.75 ], [ 563759.25, 6449698.25 ], [ 563758.25, 6449698.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563767.75, 6449696.25 ], [ 563767.75, 6449694.25 ], [ 563768.25, 6449694.25 ], [ 563768.25, 6449691.25 ], [ 563766.25, 6449691.25 ], [ 563766.25, 6449690.25 ], [ 563765.75, 6449690.25 ], [ 563765.75, 6449689.75 ], [ 563769.25, 6449689.75 ], [ 563769.25, 6449691.25 ], [ 563768.75, 6449691.25 ], [ 563768.75, 6449696.25 ], [ 563767.75, 6449696.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563745.25, 6449691.75 ], [ 563745.25, 6449691.25 ], [ 563744.75, 6449691.25 ], [ 563744.75, 6449688.25 ], [ 563745.25, 6449688.25 ], [ 563745.25, 6449687.75 ], [ 563746.75, 6449687.75 ], [ 563746.75, 6449688.25 ], [ 563747.75, 6449688.25 ], [ 563747.75, 6449690.25 ], [ 563747.25, 6449690.25 ], [ 563747.25, 6449691.75 ], [ 563745.25, 6449691.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563747.25, 6449686.75 ], [ 563747.25, 6449686.25 ], [ 563747.75, 6449686.25 ], [ 563747.75, 6449686.75 ], [ 563747.25, 6449686.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563760.25, 6449676.25 ], [ 563760.25, 6449675.75 ], [ 563760.75, 6449675.75 ], [ 563760.75, 6449676.25 ], [ 563760.25, 6449676.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563792.75, 6449692.75 ], [ 563792.75, 6449692.25 ], [ 563790.75, 6449692.25 ], [ 563790.75, 6449691.75 ], [ 563790.25, 6449691.75 ], [ 563790.25, 6449692.25 ], [ 563789.25, 6449692.25 ], [ 563789.25, 6449691.75 ], [ 563788.75, 6449691.75 ], [ 563788.75, 6449688.75 ], [ 563789.25, 6449688.75 ], [ 563789.25, 6449688.25 ], [ 563787.75, 6449688.25 ], [ 563787.75, 6449687.75 ], [ 563784.25, 6449687.75 ], [ 563784.25, 6449687.25 ], [ 563782.75, 6449687.25 ], [ 563782.75, 6449687.75 ], [ 563781.75, 6449687.75 ], [ 563781.75, 6449683.75 ], [ 563782.25, 6449683.75 ], [ 563782.25, 6449680.25 ], [ 563782.75, 6449680.25 ], [ 563782.75, 6449677.75 ], [ 563781.75, 6449677.75 ], [ 563781.75, 6449677.25 ], [ 563782.25, 6449677.25 ], [ 563782.25, 6449676.25 ], [ 563782.75, 6449676.25 ], [ 563782.75, 6449675.25 ], [ 563783.25, 6449675.25 ], [ 563783.25, 6449675.75 ], [ 563784.25, 6449675.75 ], [ 563784.25, 6449676.25 ], [ 563784.75, 6449676.25 ], [ 563784.75, 6449675.75 ], [ 563785.25, 6449675.75 ], [ 563785.25, 6449676.25 ], [ 563786.25, 6449676.25 ], [ 563786.25, 6449676.75 ], [ 563786.75, 6449676.75 ], [ 563786.75, 6449676.25 ], [ 563787.25, 6449676.25 ], [ 563787.25, 6449676.75 ], [ 563789.25, 6449676.75 ], [ 563789.25, 6449677.25 ], [ 563789.75, 6449677.25 ], [ 563789.75, 6449676.75 ], [ 563790.25, 6449676.75 ], [ 563790.25, 6449677.25 ], [ 563793.25, 6449677.25 ], [ 563793.25, 6449677.75 ], [ 563795.25, 6449677.75 ], [ 563795.25, 6449678.25 ], [ 563796.75, 6449678.25 ], [ 563796.75, 6449678.75 ], [ 563796.25, 6449678.75 ], [ 563796.25, 6449679.75 ], [ 563796.75, 6449679.75 ], [ 563796.75, 6449680.75 ], [ 563796.25, 6449680.75 ], [ 563796.25, 6449682.25 ], [ 563796.75, 6449682.25 ], [ 563796.75, 6449682.75 ], [ 563796.25, 6449682.75 ], [ 563796.25, 6449683.75 ], [ 563795.75, 6449683.75 ], [ 563795.75, 6449684.25 ], [ 563796.25, 6449684.25 ], [ 563796.25, 6449684.75 ], [ 563795.75, 6449684.75 ], [ 563795.75, 6449685.25 ], [ 563795.25, 6449685.25 ], [ 563795.25, 6449687.25 ], [ 563794.75, 6449687.25 ], [ 563794.75, 6449688.75 ], [ 563794.25, 6449688.75 ], [ 563794.25, 6449690.25 ], [ 563793.75, 6449690.25 ], [ 563793.75, 6449692.25 ], [ 563793.25, 6449692.25 ], [ 563793.25, 6449692.75 ], [ 563792.75, 6449692.75 ] ], [ [ 563782.75, 6449677.25 ], [ 563783.25, 6449677.25 ], [ 563783.25, 6449676.25 ], [ 563782.75, 6449676.25 ], [ 563782.75, 6449677.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563756.25, 6449675.75 ], [ 563756.25, 6449674.75 ], [ 563757.25, 6449674.75 ], [ 563757.25, 6449675.25 ], [ 563757.75, 6449675.25 ], [ 563757.75, 6449675.75 ], [ 563756.25, 6449675.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563760.25, 6449673.75 ], [ 563760.25, 6449673.25 ], [ 563760.75, 6449673.25 ], [ 563760.75, 6449673.75 ], [ 563760.25, 6449673.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563761.25, 6449673.75 ], [ 563761.25, 6449672.25 ], [ 563762.75, 6449672.25 ], [ 563762.75, 6449672.75 ], [ 563763.25, 6449672.75 ], [ 563763.25, 6449673.25 ], [ 563762.75, 6449673.25 ], [ 563762.75, 6449673.75 ], [ 563761.25, 6449673.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563758.75, 6449672.25 ], [ 563758.75, 6449671.75 ], [ 563759.25, 6449671.75 ], [ 563759.25, 6449672.25 ], [ 563758.75, 6449672.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563760.75, 6449670.75 ], [ 563760.75, 6449670.25 ], [ 563761.25, 6449670.25 ], [ 563761.25, 6449670.75 ], [ 563760.75, 6449670.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563743.75, 6449663.75 ], [ 563743.75, 6449663.25 ], [ 563743.25, 6449663.25 ], [ 563743.25, 6449661.75 ], [ 563744.25, 6449661.75 ], [ 563744.25, 6449663.75 ], [ 563743.75, 6449663.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563690.25, 6449648.25 ], [ 563690.25, 6449647.75 ], [ 563690.75, 6449647.75 ], [ 563690.75, 6449648.25 ], [ 563690.25, 6449648.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563798.25, 6449647.75 ], [ 563798.25, 6449647.25 ], [ 563797.75, 6449647.25 ], [ 563797.75, 6449646.75 ], [ 563798.75, 6449646.75 ], [ 563798.75, 6449647.75 ], [ 563798.25, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.25, 6449647.75 ], [ 563799.25, 6449646.75 ], [ 563799.75, 6449646.75 ], [ 563799.75, 6449647.75 ], [ 563799.25, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563795.75, 6449647.25 ], [ 563795.75, 6449646.75 ], [ 563797.25, 6449646.75 ], [ 563797.25, 6449647.25 ], [ 563795.75, 6449647.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563793.75, 6449646.75 ], [ 563793.75, 6449646.25 ], [ 563794.25, 6449646.25 ], [ 563794.25, 6449646.75 ], [ 563793.75, 6449646.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563791.25, 6449646.25 ], [ 563791.25, 6449645.75 ], [ 563788.75, 6449645.75 ], [ 563788.75, 6449645.25 ], [ 563791.25, 6449645.25 ], [ 563791.25, 6449645.75 ], [ 563791.75, 6449645.75 ], [ 563791.75, 6449646.25 ], [ 563791.25, 6449646.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563785.25, 6449645.25 ], [ 563785.25, 6449644.75 ], [ 563784.75, 6449644.75 ], [ 563784.75, 6449644.25 ], [ 563785.25, 6449644.25 ], [ 563785.25, 6449644.75 ], [ 563785.75, 6449644.75 ], [ 563785.75, 6449645.25 ], [ 563785.25, 6449645.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563783.75, 6449644.75 ], [ 563783.75, 6449644.25 ], [ 563784.25, 6449644.25 ], [ 563784.25, 6449644.75 ], [ 563783.75, 6449644.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563691.25, 6449647.75 ], [ 563691.25, 6449647.25 ], [ 563690.75, 6449647.25 ], [ 563690.75, 6449646.25 ], [ 563691.25, 6449646.25 ], [ 563691.25, 6449645.75 ], [ 563690.75, 6449645.75 ], [ 563690.75, 6449645.25 ], [ 563691.25, 6449645.25 ], [ 563691.25, 6449644.25 ], [ 563691.75, 6449644.25 ], [ 563691.75, 6449643.75 ], [ 563692.25, 6449643.75 ], [ 563692.25, 6449644.25 ], [ 563692.75, 6449644.25 ], [ 563692.75, 6449647.75 ], [ 563691.25, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563782.25, 6449644.75 ], [ 563782.25, 6449644.25 ], [ 563780.25, 6449644.25 ], [ 563780.25, 6449643.75 ], [ 563781.75, 6449643.75 ], [ 563781.75, 6449643.25 ], [ 563782.25, 6449643.25 ], [ 563782.25, 6449643.75 ], [ 563782.75, 6449643.75 ], [ 563782.75, 6449644.75 ], [ 563782.25, 6449644.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563776.25, 6449643.75 ], [ 563776.25, 6449643.25 ], [ 563776.75, 6449643.25 ], [ 563776.75, 6449643.75 ], [ 563776.25, 6449643.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563779.25, 6449644.25 ], [ 563779.25, 6449643.75 ], [ 563777.25, 6449643.75 ], [ 563777.25, 6449642.75 ], [ 563777.75, 6449642.75 ], [ 563777.75, 6449643.25 ], [ 563779.25, 6449643.25 ], [ 563779.25, 6449643.75 ], [ 563779.75, 6449643.75 ], [ 563779.75, 6449644.25 ], [ 563779.25, 6449644.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563774.25, 6449643.25 ], [ 563774.25, 6449642.75 ], [ 563772.75, 6449642.75 ], [ 563772.75, 6449642.25 ], [ 563774.25, 6449642.25 ], [ 563774.25, 6449642.75 ], [ 563774.75, 6449642.75 ], [ 563774.75, 6449642.25 ], [ 563775.25, 6449642.25 ], [ 563775.25, 6449642.75 ], [ 563774.75, 6449642.75 ], [ 563774.75, 6449643.25 ], [ 563774.25, 6449643.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563770.75, 6449642.25 ], [ 563770.75, 6449641.75 ], [ 563771.25, 6449641.75 ], [ 563771.25, 6449641.25 ], [ 563772.25, 6449641.25 ], [ 563772.25, 6449642.25 ], [ 563770.75, 6449642.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563791.75, 6449638.75 ], [ 563791.75, 6449637.75 ], [ 563792.75, 6449637.75 ], [ 563792.75, 6449638.25 ], [ 563793.25, 6449638.25 ], [ 563793.25, 6449638.75 ], [ 563791.75, 6449638.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563719.75, 6449623.75 ], [ 563719.75, 6449623.25 ], [ 563719.25, 6449623.25 ], [ 563719.25, 6449622.75 ], [ 563718.75, 6449622.75 ], [ 563718.75, 6449622.25 ], [ 563718.25, 6449622.25 ], [ 563718.25, 6449621.25 ], [ 563718.75, 6449621.25 ], [ 563718.75, 6449620.75 ], [ 563719.25, 6449620.75 ], [ 563719.25, 6449620.25 ], [ 563721.75, 6449620.25 ], [ 563721.75, 6449621.25 ], [ 563722.25, 6449621.25 ], [ 563722.25, 6449622.25 ], [ 563721.75, 6449622.25 ], [ 563721.75, 6449623.25 ], [ 563720.75, 6449623.25 ], [ 563720.75, 6449623.75 ], [ 563719.75, 6449623.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.25, 6449629.75 ], [ 563799.25, 6449629.25 ], [ 563796.75, 6449629.25 ], [ 563796.75, 6449628.75 ], [ 563794.75, 6449628.75 ], [ 563794.75, 6449628.25 ], [ 563792.75, 6449628.25 ], [ 563792.75, 6449627.75 ], [ 563791.25, 6449627.75 ], [ 563791.25, 6449627.25 ], [ 563790.25, 6449627.25 ], [ 563790.25, 6449626.75 ], [ 563789.25, 6449626.75 ], [ 563789.25, 6449626.25 ], [ 563789.75, 6449626.25 ], [ 563789.75, 6449624.75 ], [ 563790.25, 6449624.75 ], [ 563790.25, 6449623.25 ], [ 563790.75, 6449623.25 ], [ 563790.75, 6449622.25 ], [ 563791.25, 6449622.25 ], [ 563791.25, 6449621.25 ], [ 563790.75, 6449621.25 ], [ 563790.75, 6449620.75 ], [ 563791.25, 6449620.75 ], [ 563791.25, 6449619.75 ], [ 563791.75, 6449619.75 ], [ 563791.75, 6449618.25 ], [ 563792.25, 6449618.25 ], [ 563792.25, 6449615.75 ], [ 563792.75, 6449615.75 ], [ 563792.75, 6449614.25 ], [ 563793.25, 6449614.25 ], [ 563793.25, 6449613.75 ], [ 563794.25, 6449613.75 ], [ 563794.25, 6449614.25 ], [ 563795.75, 6449614.25 ], [ 563795.75, 6449614.75 ], [ 563796.75, 6449614.75 ], [ 563796.75, 6449614.25 ], [ 563797.25, 6449614.25 ], [ 563797.25, 6449614.75 ], [ 563798.75, 6449614.75 ], [ 563798.75, 6449615.25 ], [ 563799.25, 6449615.25 ], [ 563799.25, 6449616.25 ], [ 563799.75, 6449616.25 ], [ 563799.75, 6449615.75 ], [ 563800.25, 6449615.75 ], [ 563800.25, 6449616.75 ], [ 563799.75, 6449616.75 ], [ 563799.75, 6449617.25 ], [ 563800.25, 6449617.25 ], [ 563800.25, 6449621.25 ], [ 563799.75, 6449621.25 ], [ 563799.75, 6449622.25 ], [ 563800.25, 6449622.25 ], [ 563800.25, 6449623.75 ], [ 563799.75, 6449623.75 ], [ 563799.75, 6449624.75 ], [ 563800.25, 6449624.75 ], [ 563800.25, 6449625.75 ], [ 563799.75, 6449625.75 ], [ 563799.75, 6449626.75 ], [ 563800.25, 6449626.75 ], [ 563800.25, 6449627.75 ], [ 563799.75, 6449627.75 ], [ 563799.75, 6449628.25 ], [ 563800.25, 6449628.25 ], [ 563800.25, 6449629.75 ], [ 563799.25, 6449629.75 ] ], [ [ 563796.25, 6449618.25 ], [ 563796.75, 6449618.25 ], [ 563796.75, 6449617.75 ], [ 563796.25, 6449617.75 ], [ 563796.25, 6449618.25 ] ], [ [ 563793.25, 6449615.75 ], [ 563793.75, 6449615.75 ], [ 563793.75, 6449615.25 ], [ 563793.25, 6449615.25 ], [ 563793.25, 6449615.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563769.75, 6449632.25 ], [ 563769.75, 6449630.75 ], [ 563768.75, 6449630.75 ], [ 563768.75, 6449630.25 ], [ 563767.75, 6449630.25 ], [ 563767.75, 6449629.25 ], [ 563766.25, 6449629.25 ], [ 563766.25, 6449628.25 ], [ 563765.75, 6449628.25 ], [ 563765.75, 6449628.75 ], [ 563764.75, 6449628.75 ], [ 563764.75, 6449628.25 ], [ 563764.25, 6449628.25 ], [ 563764.25, 6449627.75 ], [ 563763.75, 6449627.75 ], [ 563763.75, 6449626.25 ], [ 563761.75, 6449626.25 ], [ 563761.75, 6449625.75 ], [ 563760.75, 6449625.75 ], [ 563760.75, 6449625.25 ], [ 563759.75, 6449625.25 ], [ 563759.75, 6449624.75 ], [ 563759.25, 6449624.75 ], [ 563759.25, 6449623.75 ], [ 563759.75, 6449623.75 ], [ 563759.75, 6449622.25 ], [ 563760.25, 6449622.25 ], [ 563760.25, 6449620.75 ], [ 563760.75, 6449620.75 ], [ 563760.75, 6449619.75 ], [ 563761.25, 6449619.75 ], [ 563761.25, 6449618.25 ], [ 563760.75, 6449618.25 ], [ 563760.75, 6449618.75 ], [ 563760.25, 6449618.75 ], [ 563760.25, 6449618.25 ], [ 563759.75, 6449618.25 ], [ 563759.75, 6449616.75 ], [ 563760.25, 6449616.75 ], [ 563760.25, 6449615.25 ], [ 563761.25, 6449615.25 ], [ 563761.25, 6449615.75 ], [ 563761.75, 6449615.75 ], [ 563761.75, 6449613.25 ], [ 563762.25, 6449613.25 ], [ 563762.25, 6449612.25 ], [ 563762.75, 6449612.25 ], [ 563762.75, 6449611.75 ], [ 563763.25, 6449611.75 ], [ 563763.25, 6449612.25 ], [ 563764.25, 6449612.25 ], [ 563764.25, 6449613.25 ], [ 563764.75, 6449613.25 ], [ 563764.75, 6449612.75 ], [ 563765.75, 6449612.75 ], [ 563765.75, 6449613.25 ], [ 563767.25, 6449613.25 ], [ 563767.25, 6449613.75 ], [ 563768.75, 6449613.75 ], [ 563768.75, 6449614.25 ], [ 563769.75, 6449614.25 ], [ 563769.75, 6449613.25 ], [ 563770.25, 6449613.25 ], [ 563770.25, 6449611.75 ], [ 563772.75, 6449611.75 ], [ 563772.75, 6449612.25 ], [ 563773.75, 6449612.25 ], [ 563773.75, 6449613.25 ], [ 563773.25, 6449613.25 ], [ 563773.25, 6449614.75 ], [ 563772.75, 6449614.75 ], [ 563772.75, 6449615.25 ], [ 563773.25, 6449615.25 ], [ 563773.25, 6449615.75 ], [ 563774.75, 6449615.75 ], [ 563774.75, 6449616.25 ], [ 563775.25, 6449616.25 ], [ 563775.25, 6449616.75 ], [ 563774.75, 6449616.75 ], [ 563774.75, 6449618.75 ], [ 563774.25, 6449618.75 ], [ 563774.25, 6449620.75 ], [ 563773.75, 6449620.75 ], [ 563773.75, 6449621.75 ], [ 563773.25, 6449621.75 ], [ 563773.25, 6449624.25 ], [ 563772.75, 6449624.25 ], [ 563772.75, 6449624.75 ], [ 563773.75, 6449624.75 ], [ 563773.75, 6449625.25 ], [ 563774.75, 6449625.25 ], [ 563774.75, 6449624.75 ], [ 563775.25, 6449624.75 ], [ 563775.25, 6449626.75 ], [ 563774.75, 6449626.75 ], [ 563774.75, 6449629.75 ], [ 563774.25, 6449629.75 ], [ 563774.25, 6449630.25 ], [ 563771.25, 6449630.25 ], [ 563771.25, 6449631.75 ], [ 563770.75, 6449631.75 ], [ 563770.75, 6449632.25 ], [ 563769.75, 6449632.25 ] ], [ [ 563770.75, 6449630.25 ], [ 563771.25, 6449630.25 ], [ 563771.25, 6449629.75 ], [ 563770.75, 6449629.75 ], [ 563770.75, 6449630.25 ] ], [ [ 563771.25, 6449628.75 ], [ 563771.75, 6449628.75 ], [ 563771.75, 6449628.25 ], [ 563771.25, 6449628.25 ], [ 563771.25, 6449628.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563765.25, 6449610.75 ], [ 563765.25, 6449610.25 ], [ 563765.75, 6449610.25 ], [ 563765.75, 6449610.75 ], [ 563765.25, 6449610.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563766.25, 6449611.25 ], [ 563766.25, 6449609.25 ], [ 563766.75, 6449609.25 ], [ 563766.75, 6449610.25 ], [ 563767.25, 6449610.25 ], [ 563767.25, 6449611.25 ], [ 563766.25, 6449611.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563762.75, 6449609.75 ], [ 563762.75, 6449608.25 ], [ 563762.25, 6449608.25 ], [ 563762.25, 6449607.75 ], [ 563762.75, 6449607.75 ], [ 563762.75, 6449608.25 ], [ 563763.25, 6449608.25 ], [ 563763.25, 6449609.75 ], [ 563762.75, 6449609.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563729.75, 6449608.25 ], [ 563729.75, 6449607.75 ], [ 563729.25, 6449607.75 ], [ 563729.25, 6449607.25 ], [ 563728.75, 6449607.25 ], [ 563728.75, 6449606.25 ], [ 563729.25, 6449606.25 ], [ 563729.25, 6449606.75 ], [ 563731.25, 6449606.75 ], [ 563731.25, 6449608.25 ], [ 563729.75, 6449608.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563752.75, 6449613.75 ], [ 563752.75, 6449613.25 ], [ 563751.25, 6449613.25 ], [ 563751.25, 6449612.75 ], [ 563750.25, 6449612.75 ], [ 563750.25, 6449612.25 ], [ 563749.75, 6449612.25 ], [ 563749.75, 6449611.25 ], [ 563747.25, 6449611.25 ], [ 563747.25, 6449610.75 ], [ 563746.25, 6449610.75 ], [ 563746.25, 6449610.25 ], [ 563745.75, 6449610.25 ], [ 563745.75, 6449608.75 ], [ 563746.25, 6449608.75 ], [ 563746.25, 6449608.25 ], [ 563746.75, 6449608.25 ], [ 563746.75, 6449605.75 ], [ 563748.75, 6449605.75 ], [ 563748.75, 6449606.25 ], [ 563750.25, 6449606.25 ], [ 563750.25, 6449606.75 ], [ 563751.75, 6449606.75 ], [ 563751.75, 6449607.25 ], [ 563752.75, 6449607.25 ], [ 563752.75, 6449607.75 ], [ 563753.75, 6449607.75 ], [ 563753.75, 6449608.25 ], [ 563756.75, 6449608.25 ], [ 563756.75, 6449608.75 ], [ 563757.75, 6449608.75 ], [ 563757.75, 6449609.25 ], [ 563758.25, 6449609.25 ], [ 563758.25, 6449609.75 ], [ 563758.75, 6449609.75 ], [ 563758.75, 6449612.25 ], [ 563758.25, 6449612.25 ], [ 563758.25, 6449612.75 ], [ 563757.75, 6449612.75 ], [ 563757.75, 6449613.25 ], [ 563757.25, 6449613.25 ], [ 563757.25, 6449613.75 ], [ 563756.75, 6449613.75 ], [ 563756.75, 6449613.25 ], [ 563754.75, 6449613.25 ], [ 563754.75, 6449613.75 ], [ 563752.75, 6449613.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563723.75, 6449607.25 ], [ 563723.75, 6449605.75 ], [ 563724.75, 6449605.75 ], [ 563724.75, 6449606.75 ], [ 563725.25, 6449606.75 ], [ 563725.25, 6449607.25 ], [ 563723.75, 6449607.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563739.25, 6449606.25 ], [ 563739.25, 6449605.75 ], [ 563738.75, 6449605.75 ], [ 563738.75, 6449605.25 ], [ 563738.25, 6449605.25 ], [ 563738.25, 6449604.75 ], [ 563739.25, 6449604.75 ], [ 563739.25, 6449605.25 ], [ 563740.25, 6449605.25 ], [ 563740.25, 6449605.75 ], [ 563739.75, 6449605.75 ], [ 563739.75, 6449606.25 ], [ 563739.25, 6449606.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563751.75, 6449604.25 ], [ 563751.75, 6449603.75 ], [ 563752.25, 6449603.75 ], [ 563752.25, 6449604.25 ], [ 563751.75, 6449604.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563750.75, 6449604.25 ], [ 563750.75, 6449603.75 ], [ 563750.25, 6449603.75 ], [ 563750.25, 6449603.25 ], [ 563748.75, 6449603.25 ], [ 563748.75, 6449602.75 ], [ 563748.25, 6449602.75 ], [ 563748.25, 6449602.25 ], [ 563748.75, 6449602.25 ], [ 563748.75, 6449602.75 ], [ 563750.75, 6449602.75 ], [ 563750.75, 6449603.25 ], [ 563751.25, 6449603.25 ], [ 563751.25, 6449604.25 ], [ 563750.75, 6449604.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563740.75, 6449600.75 ], [ 563740.75, 6449600.25 ], [ 563741.25, 6449600.25 ], [ 563741.25, 6449600.75 ], [ 563740.75, 6449600.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563720.75, 6449609.75 ], [ 563720.75, 6449609.25 ], [ 563720.25, 6449609.25 ], [ 563720.25, 6449608.75 ], [ 563719.75, 6449608.75 ], [ 563719.75, 6449609.25 ], [ 563718.25, 6449609.25 ], [ 563718.25, 6449608.75 ], [ 563718.75, 6449608.75 ], [ 563718.75, 6449608.25 ], [ 563718.25, 6449608.25 ], [ 563718.25, 6449603.75 ], [ 563720.25, 6449603.75 ], [ 563720.25, 6449602.25 ], [ 563719.75, 6449602.25 ], [ 563719.75, 6449600.75 ], [ 563720.25, 6449600.75 ], [ 563720.25, 6449599.75 ], [ 563722.25, 6449599.75 ], [ 563722.25, 6449600.25 ], [ 563722.75, 6449600.25 ], [ 563722.75, 6449599.75 ], [ 563728.25, 6449599.75 ], [ 563728.25, 6449600.25 ], [ 563728.75, 6449600.25 ], [ 563728.75, 6449599.75 ], [ 563731.25, 6449599.75 ], [ 563731.25, 6449600.25 ], [ 563732.75, 6449600.25 ], [ 563732.75, 6449599.75 ], [ 563734.75, 6449599.75 ], [ 563734.75, 6449603.75 ], [ 563735.75, 6449603.75 ], [ 563735.75, 6449605.25 ], [ 563736.25, 6449605.25 ], [ 563736.25, 6449604.75 ], [ 563736.75, 6449604.75 ], [ 563736.75, 6449605.25 ], [ 563737.75, 6449605.25 ], [ 563737.75, 6449605.75 ], [ 563737.25, 6449605.75 ], [ 563737.25, 6449606.25 ], [ 563736.75, 6449606.25 ], [ 563736.75, 6449605.75 ], [ 563735.75, 6449605.75 ], [ 563735.75, 6449605.25 ], [ 563735.25, 6449605.25 ], [ 563735.25, 6449605.75 ], [ 563734.25, 6449605.75 ], [ 563734.25, 6449606.25 ], [ 563732.25, 6449606.25 ], [ 563732.25, 6449605.75 ], [ 563727.25, 6449605.75 ], [ 563727.25, 6449608.25 ], [ 563725.75, 6449608.25 ], [ 563725.75, 6449607.75 ], [ 563726.25, 6449607.75 ], [ 563726.25, 6449607.25 ], [ 563726.75, 6449607.25 ], [ 563726.75, 6449606.25 ], [ 563726.25, 6449606.25 ], [ 563726.25, 6449605.75 ], [ 563725.25, 6449605.75 ], [ 563725.25, 6449605.25 ], [ 563722.75, 6449605.25 ], [ 563722.75, 6449605.75 ], [ 563722.25, 6449605.75 ], [ 563722.25, 6449606.25 ], [ 563722.75, 6449606.25 ], [ 563722.75, 6449608.25 ], [ 563722.25, 6449608.25 ], [ 563722.25, 6449609.75 ], [ 563720.75, 6449609.75 ] ], [ [ 563721.25, 6449606.75 ], [ 563721.75, 6449606.75 ], [ 563721.75, 6449606.25 ], [ 563721.25, 6449606.25 ], [ 563721.25, 6449606.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563744.75, 6449602.25 ], [ 563744.75, 6449601.25 ], [ 563744.25, 6449601.25 ], [ 563744.25, 6449600.25 ], [ 563743.75, 6449600.25 ], [ 563743.75, 6449599.75 ], [ 563750.75, 6449599.75 ], [ 563750.75, 6449601.25 ], [ 563750.25, 6449601.25 ], [ 563750.25, 6449602.25 ], [ 563749.25, 6449602.25 ], [ 563749.25, 6449601.75 ], [ 563747.25, 6449601.75 ], [ 563747.25, 6449602.25 ], [ 563746.75, 6449602.25 ], [ 563746.75, 6449601.75 ], [ 563747.25, 6449601.75 ], [ 563747.25, 6449601.25 ], [ 563746.25, 6449601.25 ], [ 563746.25, 6449602.25 ], [ 563744.75, 6449602.25 ] ], [ [ 563745.25, 6449601.25 ], [ 563745.75, 6449601.25 ], [ 563745.75, 6449600.75 ], [ 563745.25, 6449600.75 ], [ 563745.25, 6449601.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563763.75, 6449708.75 ], [ 563763.75, 6449708.25 ], [ 563763.25, 6449708.25 ], [ 563763.25, 6449707.75 ], [ 563762.75, 6449707.75 ], [ 563762.75, 6449706.75 ], [ 563761.75, 6449706.75 ], [ 563761.75, 6449705.75 ], [ 563762.25, 6449705.75 ], [ 563762.25, 6449699.75 ], [ 563762.75, 6449699.75 ], [ 563762.75, 6449697.75 ], [ 563763.25, 6449697.75 ], [ 563763.25, 6449697.25 ], [ 563762.75, 6449697.25 ], [ 563762.75, 6449696.75 ], [ 563763.25, 6449696.75 ], [ 563763.25, 6449694.25 ], [ 563763.75, 6449694.25 ], [ 563763.75, 6449693.25 ], [ 563764.25, 6449693.25 ], [ 563764.25, 6449692.75 ], [ 563763.75, 6449692.75 ], [ 563763.75, 6449691.25 ], [ 563765.25, 6449691.25 ], [ 563765.25, 6449691.75 ], [ 563766.75, 6449691.75 ], [ 563766.75, 6449691.25 ], [ 563767.25, 6449691.25 ], [ 563767.25, 6449692.25 ], [ 563767.75, 6449692.25 ], [ 563767.75, 6449692.75 ], [ 563768.25, 6449692.75 ], [ 563768.25, 6449693.25 ], [ 563767.75, 6449693.25 ], [ 563767.75, 6449694.25 ], [ 563768.25, 6449694.25 ], [ 563768.25, 6449695.75 ], [ 563767.75, 6449695.75 ], [ 563767.75, 6449697.75 ], [ 563767.25, 6449697.75 ], [ 563767.25, 6449698.25 ], [ 563767.75, 6449698.25 ], [ 563767.75, 6449698.75 ], [ 563767.25, 6449698.75 ], [ 563767.25, 6449699.75 ], [ 563766.75, 6449699.75 ], [ 563766.75, 6449702.75 ], [ 563766.25, 6449702.75 ], [ 563766.25, 6449703.75 ], [ 563765.75, 6449703.75 ], [ 563765.75, 6449704.25 ], [ 563765.25, 6449704.25 ], [ 563765.25, 6449704.75 ], [ 563764.75, 6449704.75 ], [ 563764.75, 6449706.75 ], [ 563765.25, 6449706.75 ], [ 563765.25, 6449707.25 ], [ 563765.75, 6449707.25 ], [ 563765.75, 6449706.75 ], [ 563766.25, 6449706.75 ], [ 563766.25, 6449708.75 ], [ 563765.25, 6449708.75 ], [ 563765.25, 6449708.25 ], [ 563764.25, 6449708.25 ], [ 563764.25, 6449708.75 ], [ 563763.75, 6449708.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563690.25, 6449692.25 ], [ 563690.25, 6449691.75 ], [ 563689.75, 6449691.75 ], [ 563689.75, 6449691.25 ], [ 563689.25, 6449691.25 ], [ 563689.25, 6449691.75 ], [ 563687.75, 6449691.75 ], [ 563687.75, 6449691.25 ], [ 563687.25, 6449691.25 ], [ 563687.25, 6449690.75 ], [ 563687.75, 6449690.75 ], [ 563687.75, 6449687.75 ], [ 563688.25, 6449687.75 ], [ 563688.25, 6449686.25 ], [ 563688.75, 6449686.25 ], [ 563688.75, 6449685.75 ], [ 563688.25, 6449685.75 ], [ 563688.25, 6449684.75 ], [ 563688.75, 6449684.75 ], [ 563688.75, 6449683.75 ], [ 563691.75, 6449683.75 ], [ 563691.75, 6449684.25 ], [ 563693.25, 6449684.25 ], [ 563693.25, 6449684.75 ], [ 563693.75, 6449684.75 ], [ 563693.75, 6449686.75 ], [ 563693.25, 6449686.75 ], [ 563693.25, 6449689.25 ], [ 563692.75, 6449689.25 ], [ 563692.75, 6449691.75 ], [ 563692.25, 6449691.75 ], [ 563692.25, 6449692.25 ], [ 563691.25, 6449692.25 ], [ 563691.25, 6449691.75 ], [ 563690.75, 6449691.75 ], [ 563690.75, 6449692.25 ], [ 563690.25, 6449692.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563767.75, 6449685.75 ], [ 563767.75, 6449685.25 ], [ 563766.75, 6449685.25 ], [ 563766.75, 6449684.75 ], [ 563766.25, 6449684.75 ], [ 563766.25, 6449684.25 ], [ 563765.75, 6449684.25 ], [ 563765.75, 6449681.75 ], [ 563766.25, 6449681.75 ], [ 563766.25, 6449679.75 ], [ 563766.75, 6449679.75 ], [ 563766.75, 6449678.25 ], [ 563767.25, 6449678.25 ], [ 563767.25, 6449677.75 ], [ 563767.75, 6449677.75 ], [ 563767.75, 6449678.25 ], [ 563770.75, 6449678.25 ], [ 563770.75, 6449680.25 ], [ 563770.25, 6449680.25 ], [ 563770.25, 6449680.75 ], [ 563769.75, 6449680.75 ], [ 563769.75, 6449681.25 ], [ 563769.25, 6449681.25 ], [ 563769.25, 6449681.75 ], [ 563768.75, 6449681.75 ], [ 563768.75, 6449682.25 ], [ 563769.25, 6449682.25 ], [ 563769.25, 6449683.25 ], [ 563769.75, 6449683.25 ], [ 563769.75, 6449685.25 ], [ 563769.25, 6449685.25 ], [ 563769.25, 6449685.75 ], [ 563767.75, 6449685.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563736.25, 6449672.75 ], [ 563736.25, 6449671.25 ], [ 563735.75, 6449671.25 ], [ 563735.75, 6449670.75 ], [ 563736.25, 6449670.75 ], [ 563736.25, 6449669.25 ], [ 563736.75, 6449669.25 ], [ 563736.75, 6449668.75 ], [ 563736.25, 6449668.75 ], [ 563736.25, 6449668.25 ], [ 563738.25, 6449668.25 ], [ 563738.25, 6449668.75 ], [ 563739.25, 6449668.75 ], [ 563739.25, 6449669.25 ], [ 563739.75, 6449669.25 ], [ 563739.75, 6449672.75 ], [ 563736.25, 6449672.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563749.25, 6449677.75 ], [ 563749.25, 6449677.25 ], [ 563745.25, 6449677.25 ], [ 563745.25, 6449676.75 ], [ 563744.25, 6449676.75 ], [ 563744.25, 6449676.25 ], [ 563743.75, 6449676.25 ], [ 563743.75, 6449676.75 ], [ 563742.75, 6449676.75 ], [ 563742.75, 6449676.25 ], [ 563742.25, 6449676.25 ], [ 563742.25, 6449674.25 ], [ 563742.75, 6449674.25 ], [ 563742.75, 6449671.25 ], [ 563743.25, 6449671.25 ], [ 563743.25, 6449667.25 ], [ 563743.75, 6449667.25 ], [ 563743.75, 6449665.75 ], [ 563744.25, 6449665.75 ], [ 563744.25, 6449665.25 ], [ 563743.75, 6449665.25 ], [ 563743.75, 6449664.75 ], [ 563744.25, 6449664.75 ], [ 563744.25, 6449662.75 ], [ 563744.75, 6449662.75 ], [ 563744.75, 6449662.25 ], [ 563744.25, 6449662.25 ], [ 563744.25, 6449661.75 ], [ 563744.75, 6449661.75 ], [ 563744.75, 6449661.25 ], [ 563745.25, 6449661.25 ], [ 563745.25, 6449660.75 ], [ 563747.25, 6449660.75 ], [ 563747.25, 6449661.25 ], [ 563750.25, 6449661.25 ], [ 563750.25, 6449661.75 ], [ 563752.25, 6449661.75 ], [ 563752.25, 6449662.25 ], [ 563752.75, 6449662.25 ], [ 563752.75, 6449664.25 ], [ 563755.75, 6449664.25 ], [ 563755.75, 6449664.75 ], [ 563758.25, 6449664.75 ], [ 563758.25, 6449665.25 ], [ 563758.75, 6449665.25 ], [ 563758.75, 6449664.75 ], [ 563759.25, 6449664.75 ], [ 563759.25, 6449666.25 ], [ 563759.75, 6449666.25 ], [ 563759.75, 6449666.75 ], [ 563759.25, 6449666.75 ], [ 563759.25, 6449668.25 ], [ 563758.75, 6449668.25 ], [ 563758.75, 6449671.25 ], [ 563758.25, 6449671.25 ], [ 563758.25, 6449674.75 ], [ 563757.75, 6449674.75 ], [ 563757.75, 6449675.25 ], [ 563755.25, 6449675.25 ], [ 563755.25, 6449674.75 ], [ 563754.75, 6449674.75 ], [ 563754.75, 6449675.25 ], [ 563754.25, 6449675.25 ], [ 563754.25, 6449674.75 ], [ 563753.75, 6449674.75 ], [ 563753.75, 6449674.25 ], [ 563753.25, 6449674.25 ], [ 563753.25, 6449674.75 ], [ 563752.25, 6449674.75 ], [ 563752.25, 6449674.25 ], [ 563750.75, 6449674.25 ], [ 563750.75, 6449675.25 ], [ 563750.25, 6449675.25 ], [ 563750.25, 6449677.25 ], [ 563749.75, 6449677.25 ], [ 563749.75, 6449677.75 ], [ 563749.25, 6449677.75 ] ], [ [ 563747.25, 6449673.25 ], [ 563747.75, 6449673.25 ], [ 563747.75, 6449672.75 ], [ 563747.25, 6449672.75 ], [ 563747.25, 6449673.25 ] ], [ [ 563750.25, 6449671.75 ], [ 563750.75, 6449671.75 ], [ 563750.75, 6449670.75 ], [ 563750.25, 6449670.75 ], [ 563750.25, 6449671.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563687.25, 6449654.25 ], [ 563687.25, 6449653.75 ], [ 563684.75, 6449653.75 ], [ 563684.75, 6449653.25 ], [ 563682.25, 6449653.25 ], [ 563682.25, 6449652.75 ], [ 563679.75, 6449652.75 ], [ 563679.75, 6449652.25 ], [ 563679.25, 6449652.25 ], [ 563679.25, 6449641.75 ], [ 563679.75, 6449641.75 ], [ 563679.75, 6449640.25 ], [ 563680.25, 6449640.25 ], [ 563680.25, 6449639.75 ], [ 563680.75, 6449639.75 ], [ 563680.75, 6449640.25 ], [ 563681.25, 6449640.25 ], [ 563681.25, 6449639.75 ], [ 563681.75, 6449639.75 ], [ 563681.75, 6449640.25 ], [ 563682.25, 6449640.25 ], [ 563682.25, 6449639.25 ], [ 563683.25, 6449639.25 ], [ 563683.25, 6449640.25 ], [ 563684.25, 6449640.25 ], [ 563684.25, 6449640.75 ], [ 563686.25, 6449640.75 ], [ 563686.25, 6449642.25 ], [ 563686.75, 6449642.25 ], [ 563686.75, 6449642.75 ], [ 563686.25, 6449642.75 ], [ 563686.25, 6449643.25 ], [ 563687.25, 6449643.25 ], [ 563687.25, 6449643.75 ], [ 563688.75, 6449643.75 ], [ 563688.75, 6449644.25 ], [ 563689.25, 6449644.25 ], [ 563689.25, 6449643.75 ], [ 563689.75, 6449643.75 ], [ 563689.75, 6449644.25 ], [ 563690.75, 6449644.25 ], [ 563690.75, 6449646.25 ], [ 563690.25, 6449646.25 ], [ 563690.25, 6449646.75 ], [ 563690.75, 6449646.75 ], [ 563690.75, 6449647.25 ], [ 563690.25, 6449647.25 ], [ 563690.25, 6449649.25 ], [ 563689.75, 6449649.25 ], [ 563689.75, 6449652.25 ], [ 563689.25, 6449652.25 ], [ 563689.25, 6449653.75 ], [ 563688.75, 6449653.75 ], [ 563688.75, 6449654.25 ], [ 563687.25, 6449654.25 ] ], [ [ 563685.75, 6449642.75 ], [ 563686.25, 6449642.75 ], [ 563686.25, 6449642.25 ], [ 563685.75, 6449642.25 ], [ 563685.75, 6449642.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563681.75, 6449622.75 ], [ 563681.75, 6449622.25 ], [ 563679.25, 6449622.25 ], [ 563679.25, 6449609.75 ], [ 563679.75, 6449609.75 ], [ 563679.75, 6449609.25 ], [ 563680.75, 6449609.25 ], [ 563680.75, 6449609.75 ], [ 563682.25, 6449609.75 ], [ 563682.25, 6449610.25 ], [ 563684.25, 6449610.25 ], [ 563684.25, 6449610.75 ], [ 563686.25, 6449610.75 ], [ 563686.25, 6449611.25 ], [ 563686.75, 6449611.25 ], [ 563686.75, 6449613.25 ], [ 563686.25, 6449613.25 ], [ 563686.25, 6449615.75 ], [ 563685.75, 6449615.75 ], [ 563685.75, 6449618.25 ], [ 563685.25, 6449618.25 ], [ 563685.25, 6449619.75 ], [ 563684.75, 6449619.75 ], [ 563684.75, 6449622.25 ], [ 563684.25, 6449622.25 ], [ 563684.25, 6449622.75 ], [ 563681.75, 6449622.75 ] ] ] } } +] +} diff --git a/data/mobj0/niv4/intrinsic/tile_splitted_2819_32247.geojson b/data/mobj0/niv4/intrinsic/tile_splitted_2819_32247.geojson new file mode 100644 index 0000000..cd0cd94 --- /dev/null +++ b/data/mobj0/niv4/intrinsic/tile_splitted_2819_32247.geojson @@ -0,0 +1,20 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563855.75, 6449586.25 ], [ 563855.75, 6449585.75 ], [ 563854.25, 6449585.75 ], [ 563854.25, 6449585.25 ], [ 563853.25, 6449585.25 ], [ 563853.25, 6449584.25 ], [ 563855.25, 6449584.25 ], [ 563855.25, 6449584.75 ], [ 563856.25, 6449584.75 ], [ 563856.25, 6449585.25 ], [ 563856.75, 6449585.25 ], [ 563856.75, 6449586.25 ], [ 563855.75, 6449586.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563855.75, 6449584.25 ], [ 563855.75, 6449583.75 ], [ 563855.25, 6449583.75 ], [ 563855.25, 6449583.25 ], [ 563855.75, 6449583.25 ], [ 563855.75, 6449582.75 ], [ 563856.75, 6449582.75 ], [ 563856.75, 6449583.75 ], [ 563856.25, 6449583.75 ], [ 563856.25, 6449584.25 ], [ 563855.75, 6449584.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563866.25, 6449582.75 ], [ 563866.25, 6449582.25 ], [ 563866.75, 6449582.25 ], [ 563866.75, 6449581.75 ], [ 563867.25, 6449581.75 ], [ 563867.25, 6449582.75 ], [ 563866.25, 6449582.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563868.25, 6449561.75 ], [ 563868.25, 6449561.25 ], [ 563867.75, 6449561.25 ], [ 563867.75, 6449560.25 ], [ 563868.25, 6449560.25 ], [ 563868.25, 6449559.75 ], [ 563868.75, 6449559.75 ], [ 563868.75, 6449560.25 ], [ 563869.25, 6449560.25 ], [ 563869.25, 6449561.25 ], [ 563868.75, 6449561.25 ], [ 563868.75, 6449561.75 ], [ 563868.25, 6449561.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563874.25, 6449560.75 ], [ 563874.25, 6449560.25 ], [ 563872.25, 6449560.25 ], [ 563872.25, 6449559.75 ], [ 563871.75, 6449559.75 ], [ 563871.75, 6449560.25 ], [ 563870.75, 6449560.25 ], [ 563870.75, 6449558.75 ], [ 563870.25, 6449558.75 ], [ 563870.25, 6449556.75 ], [ 563870.75, 6449556.75 ], [ 563870.75, 6449555.75 ], [ 563871.25, 6449555.75 ], [ 563871.25, 6449555.25 ], [ 563873.25, 6449555.25 ], [ 563873.25, 6449555.75 ], [ 563874.25, 6449555.75 ], [ 563874.25, 6449556.25 ], [ 563876.25, 6449556.25 ], [ 563876.25, 6449557.25 ], [ 563875.75, 6449557.25 ], [ 563875.75, 6449556.75 ], [ 563874.25, 6449556.75 ], [ 563874.25, 6449556.25 ], [ 563871.25, 6449556.25 ], [ 563871.25, 6449557.25 ], [ 563870.75, 6449557.25 ], [ 563870.75, 6449558.25 ], [ 563871.25, 6449558.25 ], [ 563871.25, 6449558.75 ], [ 563871.75, 6449558.75 ], [ 563871.75, 6449559.25 ], [ 563872.75, 6449559.25 ], [ 563872.75, 6449559.75 ], [ 563874.25, 6449559.75 ], [ 563874.25, 6449560.25 ], [ 563876.25, 6449560.25 ], [ 563876.25, 6449560.75 ], [ 563874.25, 6449560.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563848.75, 6449559.75 ], [ 563848.75, 6449557.75 ], [ 563849.25, 6449557.75 ], [ 563849.25, 6449557.25 ], [ 563849.75, 6449557.25 ], [ 563849.75, 6449555.25 ], [ 563850.25, 6449555.25 ], [ 563850.25, 6449554.25 ], [ 563851.25, 6449554.25 ], [ 563851.25, 6449555.75 ], [ 563850.75, 6449555.75 ], [ 563850.75, 6449556.75 ], [ 563850.25, 6449556.75 ], [ 563850.25, 6449557.25 ], [ 563849.75, 6449557.25 ], [ 563849.75, 6449559.25 ], [ 563849.25, 6449559.25 ], [ 563849.25, 6449559.75 ], [ 563848.75, 6449559.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563869.25, 6449555.25 ], [ 563869.25, 6449553.75 ], [ 563870.25, 6449553.75 ], [ 563870.25, 6449555.25 ], [ 563869.25, 6449555.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563863.75, 6449553.25 ], [ 563863.75, 6449551.25 ], [ 563864.25, 6449551.25 ], [ 563864.25, 6449550.25 ], [ 563864.75, 6449550.25 ], [ 563864.75, 6449549.25 ], [ 563863.25, 6449549.25 ], [ 563863.25, 6449548.75 ], [ 563862.25, 6449548.75 ], [ 563862.25, 6449547.75 ], [ 563863.75, 6449547.75 ], [ 563863.75, 6449548.25 ], [ 563864.25, 6449548.25 ], [ 563864.25, 6449548.75 ], [ 563865.25, 6449548.75 ], [ 563865.25, 6449550.75 ], [ 563864.75, 6449550.75 ], [ 563864.75, 6449552.25 ], [ 563864.25, 6449552.25 ], [ 563864.25, 6449553.25 ], [ 563863.75, 6449553.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563851.25, 6449549.75 ], [ 563851.25, 6449549.25 ], [ 563851.75, 6449549.25 ], [ 563851.75, 6449547.75 ], [ 563852.25, 6449547.75 ], [ 563852.25, 6449546.75 ], [ 563852.75, 6449546.75 ], [ 563852.75, 6449544.75 ], [ 563853.25, 6449544.75 ], [ 563853.25, 6449544.25 ], [ 563854.25, 6449544.25 ], [ 563854.25, 6449544.75 ], [ 563855.75, 6449544.75 ], [ 563855.75, 6449545.25 ], [ 563856.25, 6449545.25 ], [ 563856.25, 6449545.75 ], [ 563857.75, 6449545.75 ], [ 563857.75, 6449546.25 ], [ 563858.75, 6449546.25 ], [ 563858.75, 6449546.75 ], [ 563860.75, 6449546.75 ], [ 563860.75, 6449547.25 ], [ 563861.25, 6449547.25 ], [ 563861.25, 6449547.75 ], [ 563859.25, 6449547.75 ], [ 563859.25, 6449547.25 ], [ 563857.75, 6449547.25 ], [ 563857.75, 6449546.75 ], [ 563856.25, 6449546.75 ], [ 563856.25, 6449546.25 ], [ 563855.25, 6449546.25 ], [ 563855.25, 6449545.75 ], [ 563853.75, 6449545.75 ], [ 563853.75, 6449545.25 ], [ 563853.25, 6449545.25 ], [ 563853.25, 6449546.75 ], [ 563852.75, 6449546.75 ], [ 563852.75, 6449549.75 ], [ 563851.25, 6449549.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563846.25, 6449538.25 ], [ 563846.25, 6449537.75 ], [ 563846.75, 6449537.75 ], [ 563846.75, 6449537.25 ], [ 563847.25, 6449537.25 ], [ 563847.25, 6449536.75 ], [ 563847.75, 6449536.75 ], [ 563847.75, 6449537.25 ], [ 563848.25, 6449537.25 ], [ 563848.25, 6449537.75 ], [ 563847.75, 6449537.75 ], [ 563847.75, 6449538.25 ], [ 563846.25, 6449538.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563844.75, 6449537.25 ], [ 563844.75, 6449536.25 ], [ 563845.75, 6449536.25 ], [ 563845.75, 6449537.25 ], [ 563844.75, 6449537.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563873.75, 6449536.75 ], [ 563873.75, 6449536.25 ], [ 563871.75, 6449536.25 ], [ 563871.75, 6449535.75 ], [ 563871.25, 6449535.75 ], [ 563871.25, 6449534.75 ], [ 563871.75, 6449534.75 ], [ 563871.75, 6449535.25 ], [ 563873.25, 6449535.25 ], [ 563873.25, 6449535.75 ], [ 563875.75, 6449535.75 ], [ 563875.75, 6449536.25 ], [ 563876.25, 6449536.25 ], [ 563876.25, 6449536.75 ], [ 563873.75, 6449536.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563815.25, 6449522.75 ], [ 563815.25, 6449522.25 ], [ 563812.75, 6449522.25 ], [ 563812.75, 6449521.75 ], [ 563810.25, 6449521.75 ], [ 563810.25, 6449521.25 ], [ 563809.25, 6449521.25 ], [ 563809.25, 6449520.75 ], [ 563805.75, 6449520.75 ], [ 563805.75, 6449520.25 ], [ 563803.25, 6449520.25 ], [ 563803.25, 6449519.75 ], [ 563801.25, 6449519.75 ], [ 563801.25, 6449519.25 ], [ 563799.75, 6449519.25 ], [ 563799.75, 6449518.75 ], [ 563800.25, 6449518.75 ], [ 563800.25, 6449518.25 ], [ 563801.25, 6449518.25 ], [ 563801.25, 6449517.75 ], [ 563801.75, 6449517.75 ], [ 563801.75, 6449518.25 ], [ 563803.25, 6449518.25 ], [ 563803.25, 6449518.75 ], [ 563805.25, 6449518.75 ], [ 563805.25, 6449519.25 ], [ 563805.75, 6449519.25 ], [ 563805.75, 6449519.75 ], [ 563807.75, 6449519.75 ], [ 563807.75, 6449520.25 ], [ 563809.75, 6449520.25 ], [ 563809.75, 6449519.75 ], [ 563810.25, 6449519.75 ], [ 563810.25, 6449520.25 ], [ 563811.75, 6449520.25 ], [ 563811.75, 6449520.75 ], [ 563812.75, 6449520.75 ], [ 563812.75, 6449521.25 ], [ 563814.25, 6449521.25 ], [ 563814.25, 6449521.75 ], [ 563814.75, 6449521.75 ], [ 563814.75, 6449521.25 ], [ 563815.25, 6449521.25 ], [ 563815.25, 6449521.75 ], [ 563815.75, 6449521.75 ], [ 563815.75, 6449522.75 ], [ 563815.25, 6449522.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563872.25, 6449570.25 ], [ 563872.25, 6449569.75 ], [ 563870.75, 6449569.75 ], [ 563870.75, 6449569.25 ], [ 563870.25, 6449569.25 ], [ 563870.25, 6449569.75 ], [ 563869.75, 6449569.75 ], [ 563869.75, 6449569.25 ], [ 563868.25, 6449569.25 ], [ 563868.25, 6449568.75 ], [ 563867.75, 6449568.75 ], [ 563867.75, 6449568.25 ], [ 563868.25, 6449568.25 ], [ 563868.25, 6449567.75 ], [ 563867.75, 6449567.75 ], [ 563867.75, 6449567.25 ], [ 563868.25, 6449567.25 ], [ 563868.25, 6449565.25 ], [ 563868.75, 6449565.25 ], [ 563868.75, 6449564.75 ], [ 563869.25, 6449564.75 ], [ 563869.25, 6449563.25 ], [ 563870.75, 6449563.25 ], [ 563870.75, 6449563.75 ], [ 563872.75, 6449563.75 ], [ 563872.75, 6449564.25 ], [ 563873.75, 6449564.25 ], [ 563873.75, 6449564.75 ], [ 563874.75, 6449564.75 ], [ 563874.75, 6449566.25 ], [ 563874.25, 6449566.25 ], [ 563874.25, 6449568.25 ], [ 563873.75, 6449568.25 ], [ 563873.75, 6449569.25 ], [ 563873.25, 6449569.25 ], [ 563873.25, 6449570.25 ], [ 563872.25, 6449570.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563848.75, 6449583.75 ], [ 563848.75, 6449583.25 ], [ 563846.75, 6449583.25 ], [ 563846.75, 6449582.75 ], [ 563845.25, 6449582.75 ], [ 563845.25, 6449582.25 ], [ 563843.75, 6449582.25 ], [ 563843.75, 6449581.75 ], [ 563843.25, 6449581.75 ], [ 563843.25, 6449580.25 ], [ 563843.75, 6449580.25 ], [ 563843.75, 6449576.25 ], [ 563844.25, 6449576.25 ], [ 563844.25, 6449575.25 ], [ 563844.75, 6449575.25 ], [ 563844.75, 6449572.25 ], [ 563845.25, 6449572.25 ], [ 563845.25, 6449571.25 ], [ 563845.75, 6449571.25 ], [ 563845.75, 6449567.75 ], [ 563846.25, 6449567.75 ], [ 563846.25, 6449567.25 ], [ 563846.75, 6449567.25 ], [ 563846.75, 6449566.25 ], [ 563846.25, 6449566.25 ], [ 563846.25, 6449565.75 ], [ 563846.75, 6449565.75 ], [ 563846.75, 6449564.25 ], [ 563847.25, 6449564.25 ], [ 563847.25, 6449562.75 ], [ 563847.75, 6449562.75 ], [ 563847.75, 6449560.75 ], [ 563848.25, 6449560.75 ], [ 563848.25, 6449559.75 ], [ 563848.75, 6449559.75 ], [ 563848.75, 6449559.25 ], [ 563849.25, 6449559.25 ], [ 563849.25, 6449559.75 ], [ 563849.75, 6449559.75 ], [ 563849.75, 6449559.25 ], [ 563850.25, 6449559.25 ], [ 563850.25, 6449559.75 ], [ 563851.75, 6449559.75 ], [ 563851.75, 6449560.25 ], [ 563853.25, 6449560.25 ], [ 563853.25, 6449560.75 ], [ 563853.75, 6449560.75 ], [ 563853.75, 6449559.25 ], [ 563854.25, 6449559.25 ], [ 563854.25, 6449558.75 ], [ 563853.75, 6449558.75 ], [ 563853.75, 6449558.25 ], [ 563854.25, 6449558.25 ], [ 563854.25, 6449557.75 ], [ 563853.75, 6449557.75 ], [ 563853.75, 6449555.25 ], [ 563852.75, 6449555.25 ], [ 563852.75, 6449554.75 ], [ 563851.75, 6449554.75 ], [ 563851.75, 6449552.75 ], [ 563852.25, 6449552.75 ], [ 563852.25, 6449550.75 ], [ 563852.75, 6449550.75 ], [ 563852.75, 6449549.25 ], [ 563853.25, 6449549.25 ], [ 563853.25, 6449548.75 ], [ 563854.25, 6449548.75 ], [ 563854.25, 6449549.25 ], [ 563855.25, 6449549.25 ], [ 563855.25, 6449549.75 ], [ 563857.25, 6449549.75 ], [ 563857.25, 6449550.25 ], [ 563858.25, 6449550.25 ], [ 563858.25, 6449550.75 ], [ 563859.75, 6449550.75 ], [ 563859.75, 6449551.25 ], [ 563862.25, 6449551.25 ], [ 563862.25, 6449551.75 ], [ 563863.25, 6449551.75 ], [ 563863.25, 6449553.25 ], [ 563862.75, 6449553.25 ], [ 563862.75, 6449554.75 ], [ 563862.25, 6449554.75 ], [ 563862.25, 6449555.75 ], [ 563861.75, 6449555.75 ], [ 563861.75, 6449556.25 ], [ 563862.25, 6449556.25 ], [ 563862.25, 6449556.75 ], [ 563861.75, 6449556.75 ], [ 563861.75, 6449557.25 ], [ 563862.25, 6449557.25 ], [ 563862.25, 6449557.75 ], [ 563862.75, 6449557.75 ], [ 563862.75, 6449558.75 ], [ 563862.25, 6449558.75 ], [ 563862.25, 6449560.25 ], [ 563861.75, 6449560.25 ], [ 563861.75, 6449560.75 ], [ 563861.25, 6449560.75 ], [ 563861.25, 6449561.75 ], [ 563860.75, 6449561.75 ], [ 563860.75, 6449561.25 ], [ 563860.25, 6449561.25 ], [ 563860.25, 6449563.25 ], [ 563859.75, 6449563.25 ], [ 563859.75, 6449564.75 ], [ 563859.25, 6449564.75 ], [ 563859.25, 6449565.25 ], [ 563858.75, 6449565.25 ], [ 563858.75, 6449564.75 ], [ 563857.25, 6449564.75 ], [ 563857.25, 6449564.25 ], [ 563856.25, 6449564.25 ], [ 563856.25, 6449563.75 ], [ 563853.75, 6449563.75 ], [ 563853.75, 6449565.25 ], [ 563853.25, 6449565.25 ], [ 563853.25, 6449566.75 ], [ 563852.75, 6449566.75 ], [ 563852.75, 6449568.25 ], [ 563852.25, 6449568.25 ], [ 563852.25, 6449570.75 ], [ 563851.75, 6449570.75 ], [ 563851.75, 6449571.75 ], [ 563851.25, 6449571.75 ], [ 563851.25, 6449573.75 ], [ 563850.75, 6449573.75 ], [ 563850.75, 6449575.75 ], [ 563850.25, 6449575.75 ], [ 563850.25, 6449576.75 ], [ 563849.75, 6449576.75 ], [ 563849.75, 6449578.75 ], [ 563851.25, 6449578.75 ], [ 563851.25, 6449582.75 ], [ 563850.75, 6449582.75 ], [ 563850.75, 6449583.25 ], [ 563850.25, 6449583.25 ], [ 563850.25, 6449583.75 ], [ 563848.75, 6449583.75 ] ], [ [ 563853.25, 6449563.75 ], [ 563853.75, 6449563.75 ], [ 563853.75, 6449563.25 ], [ 563853.25, 6449563.25 ], [ 563853.25, 6449563.75 ] ] ] } } +] +} diff --git a/data/mobj0/niv4/intrinsic/tile_splitted_2819_32248.geojson b/data/mobj0/niv4/intrinsic/tile_splitted_2819_32248.geojson new file mode 100644 index 0000000..194af0b --- /dev/null +++ b/data/mobj0/niv4/intrinsic/tile_splitted_2819_32248.geojson @@ -0,0 +1,26 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563875.25, 6449704.25 ], [ 563875.25, 6449700.25 ], [ 563876.25, 6449700.25 ], [ 563876.25, 6449702.75 ], [ 563875.75, 6449702.75 ], [ 563875.75, 6449704.25 ], [ 563875.25, 6449704.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563847.25, 6449691.75 ], [ 563847.25, 6449691.25 ], [ 563842.75, 6449691.25 ], [ 563842.75, 6449690.75 ], [ 563842.25, 6449690.75 ], [ 563842.25, 6449690.25 ], [ 563840.25, 6449690.25 ], [ 563840.25, 6449689.75 ], [ 563838.25, 6449689.75 ], [ 563838.25, 6449689.25 ], [ 563837.75, 6449689.25 ], [ 563837.75, 6449688.75 ], [ 563838.25, 6449688.75 ], [ 563838.25, 6449686.75 ], [ 563838.75, 6449686.75 ], [ 563838.75, 6449684.75 ], [ 563839.25, 6449684.75 ], [ 563839.25, 6449682.75 ], [ 563839.75, 6449682.75 ], [ 563839.75, 6449681.25 ], [ 563840.25, 6449681.25 ], [ 563840.25, 6449680.25 ], [ 563840.75, 6449680.25 ], [ 563840.75, 6449679.75 ], [ 563841.25, 6449679.75 ], [ 563841.25, 6449680.25 ], [ 563843.75, 6449680.25 ], [ 563843.75, 6449680.75 ], [ 563845.75, 6449680.75 ], [ 563845.75, 6449680.25 ], [ 563846.75, 6449680.25 ], [ 563846.75, 6449680.75 ], [ 563848.75, 6449680.75 ], [ 563848.75, 6449681.25 ], [ 563849.75, 6449681.25 ], [ 563849.75, 6449681.75 ], [ 563850.75, 6449681.75 ], [ 563850.75, 6449682.25 ], [ 563851.25, 6449682.25 ], [ 563851.25, 6449685.25 ], [ 563850.75, 6449685.25 ], [ 563850.75, 6449686.75 ], [ 563850.25, 6449686.75 ], [ 563850.25, 6449688.75 ], [ 563849.75, 6449688.75 ], [ 563849.75, 6449691.75 ], [ 563847.25, 6449691.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563821.75, 6449687.25 ], [ 563821.75, 6449684.75 ], [ 563820.75, 6449684.75 ], [ 563820.75, 6449685.25 ], [ 563819.75, 6449685.25 ], [ 563819.75, 6449684.25 ], [ 563818.25, 6449684.25 ], [ 563818.25, 6449683.75 ], [ 563817.25, 6449683.75 ], [ 563817.25, 6449681.75 ], [ 563817.75, 6449681.75 ], [ 563817.75, 6449680.25 ], [ 563818.25, 6449680.25 ], [ 563818.25, 6449678.25 ], [ 563818.75, 6449678.25 ], [ 563818.75, 6449676.25 ], [ 563819.25, 6449676.25 ], [ 563819.25, 6449675.75 ], [ 563818.75, 6449675.75 ], [ 563818.75, 6449675.25 ], [ 563819.25, 6449675.25 ], [ 563819.25, 6449673.75 ], [ 563819.75, 6449673.75 ], [ 563819.75, 6449673.25 ], [ 563821.75, 6449673.25 ], [ 563821.75, 6449673.75 ], [ 563822.25, 6449673.75 ], [ 563822.25, 6449673.25 ], [ 563822.75, 6449673.25 ], [ 563822.75, 6449673.75 ], [ 563824.75, 6449673.75 ], [ 563824.75, 6449674.25 ], [ 563825.75, 6449674.25 ], [ 563825.75, 6449674.75 ], [ 563827.75, 6449674.75 ], [ 563827.75, 6449675.25 ], [ 563830.25, 6449675.25 ], [ 563830.25, 6449675.75 ], [ 563830.75, 6449675.75 ], [ 563830.75, 6449678.25 ], [ 563830.25, 6449678.25 ], [ 563830.25, 6449680.75 ], [ 563829.75, 6449680.75 ], [ 563829.75, 6449682.75 ], [ 563829.25, 6449682.75 ], [ 563829.25, 6449684.75 ], [ 563828.75, 6449684.75 ], [ 563828.75, 6449686.25 ], [ 563825.75, 6449686.25 ], [ 563825.75, 6449685.75 ], [ 563823.75, 6449685.75 ], [ 563823.75, 6449686.75 ], [ 563823.25, 6449686.75 ], [ 563823.25, 6449687.25 ], [ 563822.75, 6449687.25 ], [ 563822.75, 6449686.75 ], [ 563822.25, 6449686.75 ], [ 563822.25, 6449687.25 ], [ 563821.75, 6449687.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563857.25, 6449665.75 ], [ 563857.25, 6449664.75 ], [ 563857.75, 6449664.75 ], [ 563857.75, 6449665.25 ], [ 563858.25, 6449665.25 ], [ 563858.25, 6449665.75 ], [ 563857.25, 6449665.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563816.75, 6449665.75 ], [ 563816.75, 6449665.25 ], [ 563815.75, 6449665.25 ], [ 563815.75, 6449664.75 ], [ 563816.75, 6449664.75 ], [ 563816.75, 6449665.25 ], [ 563817.25, 6449665.25 ], [ 563817.25, 6449664.75 ], [ 563818.75, 6449664.75 ], [ 563818.75, 6449664.25 ], [ 563819.75, 6449664.25 ], [ 563819.75, 6449664.75 ], [ 563820.25, 6449664.75 ], [ 563820.25, 6449665.75 ], [ 563818.25, 6449665.75 ], [ 563818.25, 6449665.25 ], [ 563817.25, 6449665.25 ], [ 563817.25, 6449665.75 ], [ 563816.75, 6449665.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563851.75, 6449668.25 ], [ 563851.75, 6449667.75 ], [ 563849.25, 6449667.75 ], [ 563849.25, 6449667.25 ], [ 563848.25, 6449667.25 ], [ 563848.25, 6449665.75 ], [ 563848.75, 6449665.75 ], [ 563848.75, 6449665.25 ], [ 563848.25, 6449665.25 ], [ 563848.25, 6449664.75 ], [ 563847.75, 6449664.75 ], [ 563847.75, 6449664.25 ], [ 563847.25, 6449664.25 ], [ 563847.25, 6449663.75 ], [ 563845.75, 6449663.75 ], [ 563845.75, 6449662.75 ], [ 563847.25, 6449662.75 ], [ 563847.25, 6449663.25 ], [ 563848.75, 6449663.25 ], [ 563848.75, 6449663.75 ], [ 563849.25, 6449663.75 ], [ 563849.25, 6449664.25 ], [ 563849.75, 6449664.25 ], [ 563849.75, 6449667.25 ], [ 563852.75, 6449667.25 ], [ 563852.75, 6449667.75 ], [ 563853.25, 6449667.75 ], [ 563853.25, 6449666.75 ], [ 563853.75, 6449666.75 ], [ 563853.75, 6449666.25 ], [ 563854.25, 6449666.25 ], [ 563854.25, 6449665.75 ], [ 563854.75, 6449665.75 ], [ 563854.75, 6449665.25 ], [ 563855.25, 6449665.25 ], [ 563855.25, 6449664.75 ], [ 563856.25, 6449664.75 ], [ 563856.25, 6449665.25 ], [ 563856.75, 6449665.25 ], [ 563856.75, 6449665.75 ], [ 563854.75, 6449665.75 ], [ 563854.75, 6449666.25 ], [ 563854.25, 6449666.25 ], [ 563854.25, 6449666.75 ], [ 563854.75, 6449666.75 ], [ 563854.75, 6449667.25 ], [ 563854.25, 6449667.25 ], [ 563854.25, 6449667.75 ], [ 563854.75, 6449667.75 ], [ 563854.75, 6449668.25 ], [ 563851.75, 6449668.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563807.25, 6449649.25 ], [ 563807.25, 6449648.75 ], [ 563806.75, 6449648.75 ], [ 563806.75, 6449648.25 ], [ 563807.75, 6449648.25 ], [ 563807.75, 6449649.25 ], [ 563807.25, 6449649.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563803.75, 6449648.75 ], [ 563803.75, 6449648.25 ], [ 563803.25, 6449648.25 ], [ 563803.25, 6449647.75 ], [ 563803.75, 6449647.75 ], [ 563803.75, 6449648.25 ], [ 563806.25, 6449648.25 ], [ 563806.25, 6449648.75 ], [ 563803.75, 6449648.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563802.25, 6449648.25 ], [ 563802.25, 6449647.75 ], [ 563802.75, 6449647.75 ], [ 563802.75, 6449648.25 ], [ 563802.25, 6449648.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.75, 6449647.75 ], [ 563799.75, 6449647.25 ], [ 563800.25, 6449647.25 ], [ 563800.25, 6449647.75 ], [ 563799.75, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563801.25, 6449647.75 ], [ 563801.25, 6449647.25 ], [ 563801.75, 6449647.25 ], [ 563801.75, 6449647.75 ], [ 563801.25, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563812.75, 6449649.25 ], [ 563812.75, 6449648.25 ], [ 563813.25, 6449648.25 ], [ 563813.25, 6449645.25 ], [ 563814.25, 6449645.25 ], [ 563814.25, 6449647.75 ], [ 563813.75, 6449647.75 ], [ 563813.75, 6449648.75 ], [ 563813.25, 6449648.75 ], [ 563813.25, 6449649.25 ], [ 563812.75, 6449649.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563828.25, 6449643.75 ], [ 563828.25, 6449643.25 ], [ 563826.75, 6449643.25 ], [ 563826.75, 6449641.75 ], [ 563828.75, 6449641.75 ], [ 563828.75, 6449642.25 ], [ 563829.25, 6449642.25 ], [ 563829.25, 6449643.25 ], [ 563829.75, 6449643.25 ], [ 563829.75, 6449642.25 ], [ 563830.25, 6449642.25 ], [ 563830.25, 6449642.75 ], [ 563830.75, 6449642.75 ], [ 563830.75, 6449643.75 ], [ 563829.25, 6449643.75 ], [ 563829.25, 6449643.25 ], [ 563828.75, 6449643.25 ], [ 563828.75, 6449643.75 ], [ 563828.25, 6449643.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563829.75, 6449639.75 ], [ 563829.75, 6449639.25 ], [ 563829.25, 6449639.25 ], [ 563829.25, 6449638.75 ], [ 563828.75, 6449638.75 ], [ 563828.75, 6449638.25 ], [ 563829.25, 6449638.25 ], [ 563829.25, 6449637.75 ], [ 563830.25, 6449637.75 ], [ 563830.25, 6449638.25 ], [ 563831.75, 6449638.25 ], [ 563831.75, 6449639.75 ], [ 563829.75, 6449639.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563851.25, 6449635.75 ], [ 563851.25, 6449635.25 ], [ 563851.75, 6449635.25 ], [ 563851.75, 6449633.25 ], [ 563852.25, 6449633.25 ], [ 563852.25, 6449632.75 ], [ 563852.75, 6449632.75 ], [ 563852.75, 6449633.25 ], [ 563853.25, 6449633.25 ], [ 563853.25, 6449634.25 ], [ 563852.75, 6449634.25 ], [ 563852.75, 6449635.25 ], [ 563851.75, 6449635.25 ], [ 563851.75, 6449635.75 ], [ 563851.25, 6449635.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563828.75, 6449632.25 ], [ 563828.75, 6449631.75 ], [ 563829.25, 6449631.75 ], [ 563829.25, 6449632.25 ], [ 563828.75, 6449632.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563831.75, 6449637.25 ], [ 563831.75, 6449636.25 ], [ 563830.75, 6449636.25 ], [ 563830.75, 6449635.75 ], [ 563829.75, 6449635.75 ], [ 563829.75, 6449636.25 ], [ 563829.25, 6449636.25 ], [ 563829.25, 6449635.75 ], [ 563829.75, 6449635.75 ], [ 563829.75, 6449635.25 ], [ 563829.25, 6449635.25 ], [ 563829.25, 6449634.75 ], [ 563829.75, 6449634.75 ], [ 563829.75, 6449633.25 ], [ 563830.25, 6449633.25 ], [ 563830.25, 6449632.25 ], [ 563830.75, 6449632.25 ], [ 563830.75, 6449630.25 ], [ 563831.25, 6449630.25 ], [ 563831.25, 6449629.25 ], [ 563830.75, 6449629.25 ], [ 563830.75, 6449628.25 ], [ 563832.25, 6449628.25 ], [ 563832.25, 6449629.75 ], [ 563832.75, 6449629.75 ], [ 563832.75, 6449630.25 ], [ 563833.75, 6449630.25 ], [ 563833.75, 6449630.75 ], [ 563834.25, 6449630.75 ], [ 563834.25, 6449630.25 ], [ 563834.75, 6449630.25 ], [ 563834.75, 6449631.25 ], [ 563834.25, 6449631.25 ], [ 563834.25, 6449632.25 ], [ 563833.75, 6449632.25 ], [ 563833.75, 6449633.25 ], [ 563833.25, 6449633.25 ], [ 563833.25, 6449634.75 ], [ 563832.75, 6449634.75 ], [ 563832.75, 6449636.25 ], [ 563832.25, 6449636.25 ], [ 563832.25, 6449637.25 ], [ 563831.75, 6449637.25 ] ], [ [ 563833.25, 6449631.75 ], [ 563833.75, 6449631.75 ], [ 563833.75, 6449631.25 ], [ 563833.25, 6449631.25 ], [ 563833.25, 6449631.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563800.25, 6449630.25 ], [ 563800.25, 6449629.75 ], [ 563799.75, 6449629.75 ], [ 563799.75, 6449623.75 ], [ 563800.25, 6449623.75 ], [ 563800.25, 6449623.25 ], [ 563799.75, 6449623.25 ], [ 563799.75, 6449616.25 ], [ 563800.25, 6449616.25 ], [ 563800.25, 6449615.75 ], [ 563801.75, 6449615.75 ], [ 563801.75, 6449616.25 ], [ 563803.25, 6449616.25 ], [ 563803.25, 6449616.75 ], [ 563805.25, 6449616.75 ], [ 563805.25, 6449616.25 ], [ 563805.75, 6449616.25 ], [ 563805.75, 6449616.75 ], [ 563806.25, 6449616.75 ], [ 563806.25, 6449617.25 ], [ 563805.75, 6449617.25 ], [ 563805.75, 6449619.25 ], [ 563805.25, 6449619.25 ], [ 563805.25, 6449620.75 ], [ 563805.75, 6449620.75 ], [ 563805.75, 6449621.25 ], [ 563805.25, 6449621.25 ], [ 563805.25, 6449622.25 ], [ 563804.75, 6449622.25 ], [ 563804.75, 6449624.75 ], [ 563804.25, 6449624.75 ], [ 563804.25, 6449625.75 ], [ 563803.75, 6449625.75 ], [ 563803.75, 6449626.25 ], [ 563804.25, 6449626.25 ], [ 563804.25, 6449626.75 ], [ 563803.75, 6449626.75 ], [ 563803.75, 6449628.25 ], [ 563803.25, 6449628.25 ], [ 563803.25, 6449630.25 ], [ 563800.25, 6449630.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563829.75, 6449708.75 ], [ 563829.75, 6449708.25 ], [ 563829.25, 6449708.25 ], [ 563829.25, 6449707.75 ], [ 563829.75, 6449707.75 ], [ 563829.75, 6449706.75 ], [ 563831.75, 6449706.75 ], [ 563831.75, 6449707.25 ], [ 563835.75, 6449707.25 ], [ 563835.75, 6449708.25 ], [ 563834.25, 6449708.25 ], [ 563834.25, 6449708.75 ], [ 563833.75, 6449708.75 ], [ 563833.75, 6449708.25 ], [ 563833.25, 6449708.25 ], [ 563833.25, 6449708.75 ], [ 563832.75, 6449708.75 ], [ 563832.75, 6449708.25 ], [ 563832.25, 6449708.25 ], [ 563832.25, 6449708.75 ], [ 563831.25, 6449708.75 ], [ 563831.25, 6449708.25 ], [ 563830.25, 6449708.25 ], [ 563830.25, 6449708.75 ], [ 563829.75, 6449708.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563871.25, 6449706.25 ], [ 563871.25, 6449705.75 ], [ 563869.25, 6449705.75 ], [ 563869.25, 6449705.25 ], [ 563868.25, 6449705.25 ], [ 563868.25, 6449703.25 ], [ 563868.75, 6449703.25 ], [ 563868.75, 6449700.75 ], [ 563869.25, 6449700.75 ], [ 563869.25, 6449699.75 ], [ 563868.75, 6449699.75 ], [ 563868.75, 6449699.25 ], [ 563869.25, 6449699.25 ], [ 563869.25, 6449698.75 ], [ 563869.75, 6449698.75 ], [ 563869.75, 6449698.25 ], [ 563871.75, 6449698.25 ], [ 563871.75, 6449697.75 ], [ 563873.75, 6449697.75 ], [ 563873.75, 6449698.25 ], [ 563874.25, 6449698.25 ], [ 563874.25, 6449698.75 ], [ 563873.75, 6449698.75 ], [ 563873.75, 6449699.25 ], [ 563874.25, 6449699.25 ], [ 563874.25, 6449702.25 ], [ 563873.75, 6449702.25 ], [ 563873.75, 6449703.75 ], [ 563872.75, 6449703.75 ], [ 563872.75, 6449705.75 ], [ 563872.25, 6449705.75 ], [ 563872.25, 6449706.25 ], [ 563871.25, 6449706.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563843.75, 6449640.75 ], [ 563843.75, 6449640.25 ], [ 563842.25, 6449640.25 ], [ 563842.25, 6449639.75 ], [ 563840.25, 6449639.75 ], [ 563840.25, 6449639.25 ], [ 563839.25, 6449639.25 ], [ 563839.25, 6449638.75 ], [ 563838.25, 6449638.75 ], [ 563838.25, 6449638.25 ], [ 563837.75, 6449638.25 ], [ 563837.75, 6449638.75 ], [ 563837.25, 6449638.75 ], [ 563837.25, 6449638.25 ], [ 563836.75, 6449638.25 ], [ 563836.75, 6449637.75 ], [ 563834.75, 6449637.75 ], [ 563834.75, 6449637.25 ], [ 563833.25, 6449637.25 ], [ 563833.25, 6449636.75 ], [ 563832.25, 6449636.75 ], [ 563832.25, 6449634.25 ], [ 563832.75, 6449634.25 ], [ 563832.75, 6449633.75 ], [ 563833.25, 6449633.75 ], [ 563833.25, 6449631.75 ], [ 563833.75, 6449631.75 ], [ 563833.75, 6449629.75 ], [ 563834.25, 6449629.75 ], [ 563834.25, 6449628.75 ], [ 563834.75, 6449628.75 ], [ 563834.75, 6449627.25 ], [ 563835.25, 6449627.25 ], [ 563835.25, 6449626.75 ], [ 563836.25, 6449626.75 ], [ 563836.25, 6449627.25 ], [ 563837.75, 6449627.25 ], [ 563837.75, 6449627.75 ], [ 563838.75, 6449627.75 ], [ 563838.75, 6449628.25 ], [ 563840.25, 6449628.25 ], [ 563840.25, 6449627.75 ], [ 563841.75, 6449627.75 ], [ 563841.75, 6449628.25 ], [ 563842.25, 6449628.25 ], [ 563842.25, 6449628.75 ], [ 563843.75, 6449628.75 ], [ 563843.75, 6449629.25 ], [ 563844.75, 6449629.25 ], [ 563844.75, 6449629.75 ], [ 563845.25, 6449629.75 ], [ 563845.25, 6449629.25 ], [ 563845.75, 6449629.25 ], [ 563845.75, 6449629.75 ], [ 563847.25, 6449629.75 ], [ 563847.25, 6449630.25 ], [ 563848.75, 6449630.25 ], [ 563848.75, 6449633.25 ], [ 563848.25, 6449633.25 ], [ 563848.25, 6449633.75 ], [ 563847.75, 6449633.75 ], [ 563847.75, 6449634.25 ], [ 563848.25, 6449634.25 ], [ 563848.25, 6449635.25 ], [ 563847.75, 6449635.25 ], [ 563847.75, 6449635.75 ], [ 563847.25, 6449635.75 ], [ 563847.25, 6449637.75 ], [ 563846.75, 6449637.75 ], [ 563846.75, 6449638.75 ], [ 563845.75, 6449638.75 ], [ 563845.75, 6449639.25 ], [ 563845.25, 6449639.25 ], [ 563845.25, 6449639.75 ], [ 563844.75, 6449639.75 ], [ 563844.75, 6449640.75 ], [ 563843.75, 6449640.75 ] ], [ [ 563846.25, 6449637.75 ], [ 563846.75, 6449637.75 ], [ 563846.75, 6449637.25 ], [ 563846.25, 6449637.25 ], [ 563846.25, 6449637.75 ] ], [ [ 563847.75, 6449632.25 ], [ 563848.25, 6449632.25 ], [ 563848.25, 6449631.75 ], [ 563847.75, 6449631.75 ], [ 563847.75, 6449632.25 ] ], [ [ 563835.75, 6449627.75 ], [ 563836.25, 6449627.75 ], [ 563836.25, 6449627.25 ], [ 563835.75, 6449627.25 ], [ 563835.75, 6449627.75 ] ] ] } } +] +} diff --git a/data/mobj0/ref/intrinsic/tile_splitted_2818_32247.geojson b/data/mobj0/ref/intrinsic/tile_splitted_2818_32247.geojson new file mode 100644 index 0000000..311e788 --- /dev/null +++ b/data/mobj0/ref/intrinsic/tile_splitted_2818_32247.geojson @@ -0,0 +1,29 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563740.75, 6449600.25 ], [ 563740.75, 6449599.75 ], [ 563740.25, 6449599.75 ], [ 563740.25, 6449599.25 ], [ 563741.25, 6449599.25 ], [ 563741.25, 6449600.25 ], [ 563740.75, 6449600.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563733.25, 6449598.75 ], [ 563733.25, 6449598.25 ], [ 563732.25, 6449598.25 ], [ 563732.25, 6449597.75 ], [ 563733.25, 6449597.75 ], [ 563733.25, 6449598.25 ], [ 563733.75, 6449598.25 ], [ 563733.75, 6449598.75 ], [ 563733.25, 6449598.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563730.75, 6449597.75 ], [ 563730.75, 6449597.25 ], [ 563731.25, 6449597.25 ], [ 563731.25, 6449597.75 ], [ 563730.75, 6449597.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563724.25, 6449597.75 ], [ 563724.25, 6449597.25 ], [ 563723.75, 6449597.25 ], [ 563723.75, 6449596.75 ], [ 563724.25, 6449596.75 ], [ 563724.25, 6449597.25 ], [ 563725.75, 6449597.25 ], [ 563725.75, 6449597.75 ], [ 563724.25, 6449597.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563727.75, 6449597.75 ], [ 563727.75, 6449596.75 ], [ 563728.25, 6449596.75 ], [ 563728.25, 6449597.75 ], [ 563727.75, 6449597.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563750.25, 6449595.25 ], [ 563750.25, 6449594.75 ], [ 563749.75, 6449594.75 ], [ 563749.75, 6449593.25 ], [ 563750.25, 6449593.25 ], [ 563750.25, 6449593.75 ], [ 563750.75, 6449593.75 ], [ 563750.75, 6449595.25 ], [ 563750.25, 6449595.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563778.75, 6449592.75 ], [ 563778.75, 6449592.25 ], [ 563780.25, 6449592.25 ], [ 563780.25, 6449592.75 ], [ 563778.75, 6449592.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563737.75, 6449591.25 ], [ 563737.75, 6449590.75 ], [ 563737.25, 6449590.75 ], [ 563737.25, 6449589.75 ], [ 563738.25, 6449589.75 ], [ 563738.25, 6449591.25 ], [ 563737.75, 6449591.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563703.25, 6449590.75 ], [ 563703.25, 6449588.25 ], [ 563703.75, 6449588.25 ], [ 563703.75, 6449587.25 ], [ 563705.25, 6449587.25 ], [ 563705.25, 6449589.25 ], [ 563704.75, 6449589.25 ], [ 563704.75, 6449590.75 ], [ 563703.25, 6449590.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563700.75, 6449588.75 ], [ 563700.75, 6449588.25 ], [ 563700.25, 6449588.25 ], [ 563700.25, 6449586.25 ], [ 563700.75, 6449586.25 ], [ 563700.75, 6449585.75 ], [ 563701.75, 6449585.75 ], [ 563701.75, 6449586.25 ], [ 563703.25, 6449586.25 ], [ 563703.25, 6449586.75 ], [ 563702.75, 6449586.75 ], [ 563702.75, 6449587.75 ], [ 563702.25, 6449587.75 ], [ 563702.25, 6449588.75 ], [ 563700.75, 6449588.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563717.25, 6449541.25 ], [ 563717.25, 6449540.25 ], [ 563717.75, 6449540.25 ], [ 563717.75, 6449541.25 ], [ 563717.25, 6449541.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563691.25, 6449531.25 ], [ 563691.25, 6449529.75 ], [ 563690.75, 6449529.75 ], [ 563690.75, 6449529.25 ], [ 563689.75, 6449529.25 ], [ 563689.75, 6449528.75 ], [ 563691.25, 6449528.75 ], [ 563691.25, 6449529.25 ], [ 563693.75, 6449529.25 ], [ 563693.75, 6449528.25 ], [ 563693.25, 6449528.25 ], [ 563693.25, 6449527.75 ], [ 563693.75, 6449527.75 ], [ 563693.75, 6449528.25 ], [ 563694.25, 6449528.25 ], [ 563694.25, 6449528.75 ], [ 563694.75, 6449528.75 ], [ 563694.75, 6449529.25 ], [ 563695.25, 6449529.25 ], [ 563695.25, 6449528.25 ], [ 563695.75, 6449528.25 ], [ 563695.75, 6449527.25 ], [ 563696.75, 6449527.25 ], [ 563696.75, 6449528.25 ], [ 563696.25, 6449528.25 ], [ 563696.25, 6449529.75 ], [ 563695.75, 6449529.75 ], [ 563695.75, 6449530.75 ], [ 563695.25, 6449530.75 ], [ 563695.25, 6449530.25 ], [ 563694.75, 6449530.25 ], [ 563694.75, 6449529.25 ], [ 563694.25, 6449529.25 ], [ 563694.25, 6449530.25 ], [ 563693.75, 6449530.25 ], [ 563693.75, 6449530.75 ], [ 563692.75, 6449530.75 ], [ 563692.75, 6449530.25 ], [ 563692.25, 6449530.25 ], [ 563692.25, 6449530.75 ], [ 563691.75, 6449530.75 ], [ 563691.75, 6449531.25 ], [ 563691.25, 6449531.25 ] ], [ [ 563691.75, 6449530.25 ], [ 563692.25, 6449530.25 ], [ 563692.25, 6449529.75 ], [ 563691.75, 6449529.75 ], [ 563691.75, 6449530.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563693.25, 6449526.75 ], [ 563693.25, 6449526.25 ], [ 563692.25, 6449526.25 ], [ 563692.25, 6449525.75 ], [ 563691.75, 6449525.75 ], [ 563691.75, 6449524.75 ], [ 563692.25, 6449524.75 ], [ 563692.25, 6449525.25 ], [ 563693.25, 6449525.25 ], [ 563693.25, 6449523.25 ], [ 563693.75, 6449523.25 ], [ 563693.75, 6449522.75 ], [ 563694.25, 6449522.75 ], [ 563694.25, 6449524.75 ], [ 563694.75, 6449524.75 ], [ 563694.75, 6449523.75 ], [ 563695.25, 6449523.75 ], [ 563695.25, 6449523.25 ], [ 563694.75, 6449523.25 ], [ 563694.75, 6449522.75 ], [ 563695.25, 6449522.75 ], [ 563695.25, 6449522.25 ], [ 563695.75, 6449522.25 ], [ 563695.75, 6449523.75 ], [ 563695.25, 6449523.75 ], [ 563695.25, 6449524.75 ], [ 563695.75, 6449524.75 ], [ 563695.75, 6449525.25 ], [ 563695.25, 6449525.25 ], [ 563695.25, 6449526.75 ], [ 563693.25, 6449526.75 ] ], [ [ 563693.75, 6449525.75 ], [ 563694.25, 6449525.75 ], [ 563694.25, 6449525.25 ], [ 563693.75, 6449525.25 ], [ 563693.75, 6449525.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563775.25, 6449521.75 ], [ 563775.25, 6449521.25 ], [ 563774.25, 6449521.25 ], [ 563774.25, 6449520.75 ], [ 563775.25, 6449520.75 ], [ 563775.25, 6449520.25 ], [ 563775.75, 6449520.25 ], [ 563775.75, 6449521.75 ], [ 563775.25, 6449521.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563796.75, 6449517.25 ], [ 563796.75, 6449516.75 ], [ 563797.25, 6449516.75 ], [ 563797.25, 6449517.25 ], [ 563796.75, 6449517.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.25, 6449519.25 ], [ 563799.25, 6449518.75 ], [ 563797.25, 6449518.75 ], [ 563797.25, 6449518.25 ], [ 563795.75, 6449518.25 ], [ 563795.75, 6449517.75 ], [ 563791.75, 6449517.75 ], [ 563791.75, 6449517.25 ], [ 563789.75, 6449517.25 ], [ 563789.75, 6449516.75 ], [ 563788.25, 6449516.75 ], [ 563788.25, 6449516.25 ], [ 563787.25, 6449516.25 ], [ 563787.25, 6449516.75 ], [ 563786.75, 6449516.75 ], [ 563786.75, 6449516.25 ], [ 563786.25, 6449516.25 ], [ 563786.25, 6449515.75 ], [ 563784.75, 6449515.75 ], [ 563784.75, 6449514.75 ], [ 563785.25, 6449514.75 ], [ 563785.25, 6449515.25 ], [ 563786.25, 6449515.25 ], [ 563786.25, 6449514.75 ], [ 563786.75, 6449514.75 ], [ 563786.75, 6449515.25 ], [ 563787.75, 6449515.25 ], [ 563787.75, 6449515.75 ], [ 563789.75, 6449515.75 ], [ 563789.75, 6449516.25 ], [ 563791.75, 6449516.25 ], [ 563791.75, 6449516.75 ], [ 563792.25, 6449516.75 ], [ 563792.25, 6449516.25 ], [ 563792.75, 6449516.25 ], [ 563792.75, 6449516.75 ], [ 563794.25, 6449516.75 ], [ 563794.25, 6449517.25 ], [ 563794.75, 6449517.25 ], [ 563794.75, 6449516.75 ], [ 563795.75, 6449516.75 ], [ 563795.75, 6449517.25 ], [ 563796.25, 6449517.25 ], [ 563796.25, 6449517.75 ], [ 563798.25, 6449517.75 ], [ 563798.25, 6449518.25 ], [ 563798.75, 6449518.25 ], [ 563798.75, 6449517.75 ], [ 563799.25, 6449517.75 ], [ 563799.25, 6449517.25 ], [ 563799.75, 6449517.25 ], [ 563799.75, 6449517.75 ], [ 563799.25, 6449517.75 ], [ 563799.25, 6449518.25 ], [ 563799.75, 6449518.25 ], [ 563799.75, 6449519.25 ], [ 563799.25, 6449519.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563783.25, 6449515.25 ], [ 563783.25, 6449514.75 ], [ 563783.75, 6449514.75 ], [ 563783.75, 6449515.25 ], [ 563783.25, 6449515.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563746.75, 6449515.25 ], [ 563746.75, 6449514.25 ], [ 563747.75, 6449514.25 ], [ 563747.75, 6449514.75 ], [ 563748.25, 6449514.75 ], [ 563748.25, 6449515.25 ], [ 563746.75, 6449515.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563745.25, 6449515.75 ], [ 563745.25, 6449514.25 ], [ 563745.75, 6449514.25 ], [ 563745.75, 6449513.75 ], [ 563746.25, 6449513.75 ], [ 563746.25, 6449515.25 ], [ 563745.75, 6449515.25 ], [ 563745.75, 6449515.75 ], [ 563745.25, 6449515.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563720.25, 6449600.25 ], [ 563720.25, 6449598.25 ], [ 563720.75, 6449598.25 ], [ 563720.75, 6449597.25 ], [ 563721.25, 6449597.25 ], [ 563721.25, 6449597.75 ], [ 563722.75, 6449597.75 ], [ 563722.75, 6449597.25 ], [ 563723.25, 6449597.25 ], [ 563723.25, 6449597.75 ], [ 563730.25, 6449597.75 ], [ 563730.25, 6449598.25 ], [ 563734.75, 6449598.25 ], [ 563734.75, 6449600.25 ], [ 563732.75, 6449600.25 ], [ 563732.75, 6449599.75 ], [ 563732.25, 6449599.75 ], [ 563732.25, 6449600.25 ], [ 563722.25, 6449600.25 ], [ 563722.25, 6449599.75 ], [ 563721.75, 6449599.75 ], [ 563721.75, 6449600.25 ], [ 563720.25, 6449600.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563782.75, 6449597.75 ], [ 563782.75, 6449597.25 ], [ 563781.25, 6449597.25 ], [ 563781.25, 6449596.75 ], [ 563779.75, 6449596.75 ], [ 563779.75, 6449596.25 ], [ 563779.25, 6449596.25 ], [ 563779.25, 6449595.75 ], [ 563778.75, 6449595.75 ], [ 563778.75, 6449594.25 ], [ 563779.25, 6449594.25 ], [ 563779.25, 6449592.75 ], [ 563779.75, 6449592.75 ], [ 563779.75, 6449592.25 ], [ 563780.25, 6449592.25 ], [ 563780.25, 6449591.75 ], [ 563780.75, 6449591.75 ], [ 563780.75, 6449592.25 ], [ 563781.75, 6449592.25 ], [ 563781.75, 6449592.75 ], [ 563783.25, 6449592.75 ], [ 563783.25, 6449593.25 ], [ 563783.75, 6449593.25 ], [ 563783.75, 6449593.75 ], [ 563784.25, 6449593.75 ], [ 563784.25, 6449594.25 ], [ 563783.75, 6449594.25 ], [ 563783.75, 6449594.75 ], [ 563784.25, 6449594.75 ], [ 563784.25, 6449596.25 ], [ 563783.75, 6449596.25 ], [ 563783.75, 6449597.25 ], [ 563783.25, 6449597.25 ], [ 563783.25, 6449597.75 ], [ 563782.75, 6449597.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563743.25, 6449600.25 ], [ 563743.25, 6449599.75 ], [ 563741.25, 6449599.75 ], [ 563741.25, 6449599.25 ], [ 563740.25, 6449599.25 ], [ 563740.25, 6449598.75 ], [ 563739.25, 6449598.75 ], [ 563739.25, 6449598.25 ], [ 563737.25, 6449598.25 ], [ 563737.25, 6449597.75 ], [ 563735.75, 6449597.75 ], [ 563735.75, 6449597.25 ], [ 563735.25, 6449597.25 ], [ 563735.25, 6449595.75 ], [ 563735.75, 6449595.75 ], [ 563735.75, 6449594.25 ], [ 563736.25, 6449594.25 ], [ 563736.25, 6449592.25 ], [ 563736.75, 6449592.25 ], [ 563736.75, 6449591.75 ], [ 563737.25, 6449591.75 ], [ 563737.25, 6449591.25 ], [ 563737.75, 6449591.25 ], [ 563737.75, 6449590.75 ], [ 563738.25, 6449590.75 ], [ 563738.25, 6449591.25 ], [ 563738.75, 6449591.25 ], [ 563738.75, 6449590.75 ], [ 563739.25, 6449590.75 ], [ 563739.25, 6449591.25 ], [ 563740.25, 6449591.25 ], [ 563740.25, 6449591.75 ], [ 563742.25, 6449591.75 ], [ 563742.25, 6449592.25 ], [ 563742.75, 6449592.25 ], [ 563742.75, 6449591.75 ], [ 563743.25, 6449591.75 ], [ 563743.25, 6449590.75 ], [ 563743.75, 6449590.75 ], [ 563743.75, 6449590.25 ], [ 563744.75, 6449590.25 ], [ 563744.75, 6449590.75 ], [ 563746.25, 6449590.75 ], [ 563746.25, 6449591.25 ], [ 563747.25, 6449591.25 ], [ 563747.25, 6449591.75 ], [ 563746.75, 6449591.75 ], [ 563746.75, 6449592.25 ], [ 563746.25, 6449592.25 ], [ 563746.25, 6449593.75 ], [ 563747.25, 6449593.75 ], [ 563747.25, 6449594.25 ], [ 563749.25, 6449594.25 ], [ 563749.25, 6449594.75 ], [ 563750.25, 6449594.75 ], [ 563750.25, 6449595.25 ], [ 563751.75, 6449595.25 ], [ 563751.75, 6449595.75 ], [ 563752.25, 6449595.75 ], [ 563752.25, 6449596.75 ], [ 563751.75, 6449596.75 ], [ 563751.75, 6449598.25 ], [ 563751.25, 6449598.25 ], [ 563751.25, 6449599.25 ], [ 563750.75, 6449599.25 ], [ 563750.75, 6449600.25 ], [ 563743.25, 6449600.25 ] ], [ [ 563747.25, 6449596.25 ], [ 563747.75, 6449596.25 ], [ 563747.75, 6449595.75 ], [ 563747.25, 6449595.75 ], [ 563747.25, 6449596.25 ] ], [ [ 563739.75, 6449593.75 ], [ 563740.25, 6449593.75 ], [ 563740.25, 6449593.25 ], [ 563739.75, 6449593.25 ], [ 563739.75, 6449593.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563711.25, 6449590.75 ], [ 563711.25, 6449590.25 ], [ 563707.25, 6449590.25 ], [ 563707.25, 6449589.75 ], [ 563706.25, 6449589.75 ], [ 563706.25, 6449589.25 ], [ 563705.75, 6449589.25 ], [ 563705.75, 6449587.75 ], [ 563706.25, 6449587.75 ], [ 563706.25, 6449584.75 ], [ 563706.75, 6449584.75 ], [ 563706.75, 6449583.25 ], [ 563707.25, 6449583.25 ], [ 563707.25, 6449583.75 ], [ 563709.75, 6449583.75 ], [ 563709.75, 6449584.25 ], [ 563711.75, 6449584.25 ], [ 563711.75, 6449584.75 ], [ 563712.75, 6449584.75 ], [ 563712.75, 6449587.25 ], [ 563712.25, 6449587.25 ], [ 563712.25, 6449588.25 ], [ 563712.75, 6449588.25 ], [ 563712.75, 6449588.75 ], [ 563712.25, 6449588.75 ], [ 563712.25, 6449590.75 ], [ 563711.25, 6449590.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563717.25, 6449553.25 ], [ 563717.25, 6449552.75 ], [ 563715.25, 6449552.75 ], [ 563715.25, 6449552.25 ], [ 563713.25, 6449552.25 ], [ 563713.25, 6449551.75 ], [ 563710.75, 6449551.75 ], [ 563710.75, 6449551.25 ], [ 563709.25, 6449551.25 ], [ 563709.25, 6449550.75 ], [ 563708.75, 6449550.75 ], [ 563708.75, 6449551.25 ], [ 563708.25, 6449551.25 ], [ 563708.25, 6449550.75 ], [ 563706.75, 6449550.75 ], [ 563706.75, 6449549.25 ], [ 563704.75, 6449549.25 ], [ 563704.75, 6449548.75 ], [ 563703.75, 6449548.75 ], [ 563703.75, 6449546.75 ], [ 563704.25, 6449546.75 ], [ 563704.25, 6449543.25 ], [ 563704.75, 6449543.25 ], [ 563704.75, 6449540.75 ], [ 563705.25, 6449540.75 ], [ 563705.25, 6449538.75 ], [ 563706.25, 6449538.75 ], [ 563706.25, 6449539.25 ], [ 563707.25, 6449539.25 ], [ 563707.25, 6449539.75 ], [ 563709.25, 6449539.75 ], [ 563709.25, 6449539.25 ], [ 563711.25, 6449539.25 ], [ 563711.25, 6449539.75 ], [ 563711.75, 6449539.75 ], [ 563711.75, 6449540.25 ], [ 563713.75, 6449540.25 ], [ 563713.75, 6449540.75 ], [ 563716.25, 6449540.75 ], [ 563716.25, 6449541.25 ], [ 563719.75, 6449541.25 ], [ 563719.75, 6449541.75 ], [ 563720.25, 6449541.75 ], [ 563720.25, 6449542.25 ], [ 563721.25, 6449542.25 ], [ 563721.25, 6449544.25 ], [ 563720.75, 6449544.25 ], [ 563720.75, 6449547.25 ], [ 563720.25, 6449547.25 ], [ 563720.25, 6449549.25 ], [ 563719.75, 6449549.25 ], [ 563719.75, 6449551.25 ], [ 563719.25, 6449551.25 ], [ 563719.25, 6449552.75 ], [ 563718.75, 6449552.75 ], [ 563718.75, 6449553.25 ], [ 563717.25, 6449553.25 ] ], [ [ 563706.75, 6449547.75 ], [ 563707.25, 6449547.75 ], [ 563707.25, 6449547.25 ], [ 563706.75, 6449547.25 ], [ 563706.75, 6449547.75 ] ], [ [ 563706.75, 6449546.75 ], [ 563707.25, 6449546.75 ], [ 563707.25, 6449546.25 ], [ 563706.75, 6449546.25 ], [ 563706.75, 6449546.75 ] ] ] } } +] +} diff --git a/data/mobj0/ref/intrinsic/tile_splitted_2818_32248.geojson b/data/mobj0/ref/intrinsic/tile_splitted_2818_32248.geojson new file mode 100644 index 0000000..9991818 --- /dev/null +++ b/data/mobj0/ref/intrinsic/tile_splitted_2818_32248.geojson @@ -0,0 +1,69 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563757.25, 6449706.25 ], [ 563757.25, 6449705.75 ], [ 563755.75, 6449705.75 ], [ 563755.75, 6449705.25 ], [ 563756.25, 6449705.25 ], [ 563756.25, 6449704.75 ], [ 563757.25, 6449704.75 ], [ 563757.25, 6449705.25 ], [ 563760.25, 6449705.25 ], [ 563760.25, 6449705.75 ], [ 563759.75, 6449705.75 ], [ 563759.75, 6449706.25 ], [ 563758.75, 6449706.25 ], [ 563758.75, 6449705.75 ], [ 563757.75, 6449705.75 ], [ 563757.75, 6449706.25 ], [ 563757.25, 6449706.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563765.25, 6449707.25 ], [ 563765.25, 6449706.25 ], [ 563765.75, 6449706.25 ], [ 563765.75, 6449705.75 ], [ 563766.25, 6449705.75 ], [ 563766.25, 6449701.75 ], [ 563766.75, 6449701.75 ], [ 563766.75, 6449699.75 ], [ 563767.25, 6449699.75 ], [ 563767.25, 6449698.75 ], [ 563767.75, 6449698.75 ], [ 563767.75, 6449701.75 ], [ 563767.25, 6449701.75 ], [ 563767.25, 6449702.25 ], [ 563767.75, 6449702.25 ], [ 563767.75, 6449702.75 ], [ 563767.25, 6449702.75 ], [ 563767.25, 6449704.75 ], [ 563766.75, 6449704.75 ], [ 563766.75, 6449707.25 ], [ 563765.25, 6449707.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563758.25, 6449702.75 ], [ 563758.25, 6449702.25 ], [ 563757.75, 6449702.25 ], [ 563757.75, 6449701.75 ], [ 563757.25, 6449701.75 ], [ 563757.25, 6449702.25 ], [ 563756.25, 6449702.25 ], [ 563756.25, 6449700.25 ], [ 563756.75, 6449700.25 ], [ 563756.75, 6449698.75 ], [ 563760.25, 6449698.75 ], [ 563760.25, 6449699.25 ], [ 563761.25, 6449699.25 ], [ 563761.25, 6449700.75 ], [ 563760.75, 6449700.75 ], [ 563760.75, 6449701.75 ], [ 563761.75, 6449701.75 ], [ 563761.75, 6449702.25 ], [ 563761.25, 6449702.25 ], [ 563761.25, 6449702.75 ], [ 563758.25, 6449702.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563767.75, 6449697.25 ], [ 563767.75, 6449696.75 ], [ 563768.25, 6449696.75 ], [ 563768.25, 6449697.25 ], [ 563767.75, 6449697.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563758.25, 6449698.25 ], [ 563758.25, 6449697.25 ], [ 563758.75, 6449697.25 ], [ 563758.75, 6449696.75 ], [ 563757.25, 6449696.75 ], [ 563757.25, 6449696.25 ], [ 563759.25, 6449696.25 ], [ 563759.25, 6449696.75 ], [ 563759.75, 6449696.75 ], [ 563759.75, 6449697.25 ], [ 563758.75, 6449697.25 ], [ 563758.75, 6449697.75 ], [ 563759.25, 6449697.75 ], [ 563759.25, 6449698.25 ], [ 563758.25, 6449698.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563767.75, 6449696.25 ], [ 563767.75, 6449694.25 ], [ 563768.25, 6449694.25 ], [ 563768.25, 6449691.25 ], [ 563766.25, 6449691.25 ], [ 563766.25, 6449690.25 ], [ 563765.75, 6449690.25 ], [ 563765.75, 6449689.75 ], [ 563769.25, 6449689.75 ], [ 563769.25, 6449691.25 ], [ 563768.75, 6449691.25 ], [ 563768.75, 6449696.25 ], [ 563767.75, 6449696.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563745.25, 6449691.75 ], [ 563745.25, 6449691.25 ], [ 563744.75, 6449691.25 ], [ 563744.75, 6449688.25 ], [ 563745.25, 6449688.25 ], [ 563745.25, 6449687.75 ], [ 563746.75, 6449687.75 ], [ 563746.75, 6449688.25 ], [ 563747.75, 6449688.25 ], [ 563747.75, 6449690.25 ], [ 563747.25, 6449690.25 ], [ 563747.25, 6449691.75 ], [ 563745.25, 6449691.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563747.25, 6449686.75 ], [ 563747.25, 6449686.25 ], [ 563747.75, 6449686.25 ], [ 563747.75, 6449686.75 ], [ 563747.25, 6449686.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563760.25, 6449676.25 ], [ 563760.25, 6449675.75 ], [ 563760.75, 6449675.75 ], [ 563760.75, 6449676.25 ], [ 563760.25, 6449676.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563781.75, 6449677.75 ], [ 563781.75, 6449677.25 ], [ 563782.25, 6449677.25 ], [ 563782.25, 6449676.25 ], [ 563782.75, 6449676.25 ], [ 563782.75, 6449675.25 ], [ 563783.25, 6449675.25 ], [ 563783.25, 6449675.75 ], [ 563783.75, 6449675.75 ], [ 563783.75, 6449676.25 ], [ 563782.75, 6449676.25 ], [ 563782.75, 6449677.25 ], [ 563783.25, 6449677.25 ], [ 563783.25, 6449677.75 ], [ 563781.75, 6449677.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563756.25, 6449675.75 ], [ 563756.25, 6449674.75 ], [ 563757.25, 6449674.75 ], [ 563757.25, 6449675.25 ], [ 563757.75, 6449675.25 ], [ 563757.75, 6449675.75 ], [ 563756.25, 6449675.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563760.25, 6449673.75 ], [ 563760.25, 6449673.25 ], [ 563760.75, 6449673.25 ], [ 563760.75, 6449673.75 ], [ 563760.25, 6449673.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563761.25, 6449673.75 ], [ 563761.25, 6449672.25 ], [ 563762.75, 6449672.25 ], [ 563762.75, 6449672.75 ], [ 563763.25, 6449672.75 ], [ 563763.25, 6449673.25 ], [ 563762.75, 6449673.25 ], [ 563762.75, 6449673.75 ], [ 563761.25, 6449673.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563758.75, 6449672.25 ], [ 563758.75, 6449671.75 ], [ 563759.25, 6449671.75 ], [ 563759.25, 6449672.25 ], [ 563758.75, 6449672.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563760.75, 6449670.75 ], [ 563760.75, 6449670.25 ], [ 563761.25, 6449670.25 ], [ 563761.25, 6449670.75 ], [ 563760.75, 6449670.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563743.75, 6449663.75 ], [ 563743.75, 6449663.25 ], [ 563743.25, 6449663.25 ], [ 563743.25, 6449661.75 ], [ 563744.25, 6449661.75 ], [ 563744.25, 6449663.75 ], [ 563743.75, 6449663.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563690.25, 6449648.25 ], [ 563690.25, 6449647.75 ], [ 563690.75, 6449647.75 ], [ 563690.75, 6449648.25 ], [ 563690.25, 6449648.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563798.25, 6449647.75 ], [ 563798.25, 6449647.25 ], [ 563797.75, 6449647.25 ], [ 563797.75, 6449646.75 ], [ 563798.75, 6449646.75 ], [ 563798.75, 6449647.75 ], [ 563798.25, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.25, 6449647.75 ], [ 563799.25, 6449646.75 ], [ 563799.75, 6449646.75 ], [ 563799.75, 6449647.75 ], [ 563799.25, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563795.75, 6449647.25 ], [ 563795.75, 6449646.75 ], [ 563797.25, 6449646.75 ], [ 563797.25, 6449647.25 ], [ 563795.75, 6449647.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563793.75, 6449646.75 ], [ 563793.75, 6449646.25 ], [ 563794.25, 6449646.25 ], [ 563794.25, 6449646.75 ], [ 563793.75, 6449646.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563791.25, 6449646.25 ], [ 563791.25, 6449645.75 ], [ 563788.75, 6449645.75 ], [ 563788.75, 6449645.25 ], [ 563791.25, 6449645.25 ], [ 563791.25, 6449645.75 ], [ 563791.75, 6449645.75 ], [ 563791.75, 6449646.25 ], [ 563791.25, 6449646.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563785.25, 6449645.25 ], [ 563785.25, 6449644.75 ], [ 563784.75, 6449644.75 ], [ 563784.75, 6449644.25 ], [ 563785.25, 6449644.25 ], [ 563785.25, 6449644.75 ], [ 563785.75, 6449644.75 ], [ 563785.75, 6449645.25 ], [ 563785.25, 6449645.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563783.75, 6449644.75 ], [ 563783.75, 6449644.25 ], [ 563784.25, 6449644.25 ], [ 563784.25, 6449644.75 ], [ 563783.75, 6449644.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563691.25, 6449647.75 ], [ 563691.25, 6449647.25 ], [ 563690.75, 6449647.25 ], [ 563690.75, 6449646.25 ], [ 563691.25, 6449646.25 ], [ 563691.25, 6449645.75 ], [ 563690.75, 6449645.75 ], [ 563690.75, 6449645.25 ], [ 563691.25, 6449645.25 ], [ 563691.25, 6449644.25 ], [ 563691.75, 6449644.25 ], [ 563691.75, 6449643.75 ], [ 563692.25, 6449643.75 ], [ 563692.25, 6449644.25 ], [ 563692.75, 6449644.25 ], [ 563692.75, 6449647.75 ], [ 563691.25, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563782.25, 6449644.75 ], [ 563782.25, 6449644.25 ], [ 563780.25, 6449644.25 ], [ 563780.25, 6449643.75 ], [ 563781.75, 6449643.75 ], [ 563781.75, 6449643.25 ], [ 563782.25, 6449643.25 ], [ 563782.25, 6449643.75 ], [ 563782.75, 6449643.75 ], [ 563782.75, 6449644.75 ], [ 563782.25, 6449644.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563776.25, 6449643.75 ], [ 563776.25, 6449643.25 ], [ 563776.75, 6449643.25 ], [ 563776.75, 6449643.75 ], [ 563776.25, 6449643.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563779.25, 6449644.25 ], [ 563779.25, 6449643.75 ], [ 563777.25, 6449643.75 ], [ 563777.25, 6449642.75 ], [ 563777.75, 6449642.75 ], [ 563777.75, 6449643.25 ], [ 563779.25, 6449643.25 ], [ 563779.25, 6449643.75 ], [ 563779.75, 6449643.75 ], [ 563779.75, 6449644.25 ], [ 563779.25, 6449644.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563774.25, 6449643.25 ], [ 563774.25, 6449642.75 ], [ 563772.75, 6449642.75 ], [ 563772.75, 6449642.25 ], [ 563774.25, 6449642.25 ], [ 563774.25, 6449642.75 ], [ 563774.75, 6449642.75 ], [ 563774.75, 6449642.25 ], [ 563775.25, 6449642.25 ], [ 563775.25, 6449642.75 ], [ 563774.75, 6449642.75 ], [ 563774.75, 6449643.25 ], [ 563774.25, 6449643.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563770.75, 6449642.25 ], [ 563770.75, 6449641.75 ], [ 563771.25, 6449641.75 ], [ 563771.25, 6449641.25 ], [ 563772.25, 6449641.25 ], [ 563772.25, 6449642.25 ], [ 563770.75, 6449642.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563791.75, 6449638.75 ], [ 563791.75, 6449637.75 ], [ 563792.75, 6449637.75 ], [ 563792.75, 6449638.25 ], [ 563793.25, 6449638.25 ], [ 563793.25, 6449638.75 ], [ 563791.75, 6449638.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563769.75, 6449632.25 ], [ 563769.75, 6449630.75 ], [ 563768.75, 6449630.75 ], [ 563768.75, 6449630.25 ], [ 563767.75, 6449630.25 ], [ 563767.75, 6449629.75 ], [ 563770.75, 6449629.75 ], [ 563770.75, 6449628.75 ], [ 563771.75, 6449628.75 ], [ 563771.75, 6449628.25 ], [ 563771.25, 6449628.25 ], [ 563771.25, 6449627.25 ], [ 563771.75, 6449627.25 ], [ 563771.75, 6449626.25 ], [ 563772.25, 6449626.25 ], [ 563772.25, 6449624.75 ], [ 563773.75, 6449624.75 ], [ 563773.75, 6449625.25 ], [ 563774.75, 6449625.25 ], [ 563774.75, 6449624.75 ], [ 563775.25, 6449624.75 ], [ 563775.25, 6449626.75 ], [ 563774.75, 6449626.75 ], [ 563774.75, 6449629.75 ], [ 563774.25, 6449629.75 ], [ 563774.25, 6449630.25 ], [ 563771.25, 6449630.25 ], [ 563771.25, 6449631.75 ], [ 563770.75, 6449631.75 ], [ 563770.75, 6449632.25 ], [ 563769.75, 6449632.25 ] ], [ [ 563770.75, 6449630.25 ], [ 563771.25, 6449630.25 ], [ 563771.25, 6449629.75 ], [ 563770.75, 6449629.75 ], [ 563770.75, 6449630.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563719.75, 6449623.75 ], [ 563719.75, 6449623.25 ], [ 563719.25, 6449623.25 ], [ 563719.25, 6449622.75 ], [ 563718.75, 6449622.75 ], [ 563718.75, 6449622.25 ], [ 563718.25, 6449622.25 ], [ 563718.25, 6449621.25 ], [ 563718.75, 6449621.25 ], [ 563718.75, 6449620.75 ], [ 563719.25, 6449620.75 ], [ 563719.25, 6449620.25 ], [ 563721.75, 6449620.25 ], [ 563721.75, 6449621.25 ], [ 563722.25, 6449621.25 ], [ 563722.25, 6449622.25 ], [ 563721.75, 6449622.25 ], [ 563721.75, 6449623.25 ], [ 563720.75, 6449623.25 ], [ 563720.75, 6449623.75 ], [ 563719.75, 6449623.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563760.25, 6449618.75 ], [ 563760.25, 6449618.25 ], [ 563759.75, 6449618.25 ], [ 563759.75, 6449616.75 ], [ 563760.25, 6449616.75 ], [ 563760.25, 6449615.25 ], [ 563761.25, 6449615.25 ], [ 563761.25, 6449615.75 ], [ 563761.75, 6449615.75 ], [ 563761.75, 6449616.25 ], [ 563761.25, 6449616.25 ], [ 563761.25, 6449616.75 ], [ 563761.75, 6449616.75 ], [ 563761.75, 6449617.25 ], [ 563761.25, 6449617.25 ], [ 563761.25, 6449618.25 ], [ 563760.75, 6449618.25 ], [ 563760.75, 6449618.75 ], [ 563760.25, 6449618.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563772.25, 6449615.75 ], [ 563772.25, 6449615.25 ], [ 563771.25, 6449615.25 ], [ 563771.25, 6449614.75 ], [ 563769.75, 6449614.75 ], [ 563769.75, 6449613.25 ], [ 563770.25, 6449613.25 ], [ 563770.25, 6449611.75 ], [ 563772.75, 6449611.75 ], [ 563772.75, 6449612.25 ], [ 563773.75, 6449612.25 ], [ 563773.75, 6449613.25 ], [ 563773.25, 6449613.25 ], [ 563773.25, 6449614.75 ], [ 563772.75, 6449614.75 ], [ 563772.75, 6449615.75 ], [ 563772.25, 6449615.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563752.75, 6449613.75 ], [ 563752.75, 6449613.25 ], [ 563751.25, 6449613.25 ], [ 563751.25, 6449612.75 ], [ 563750.25, 6449612.75 ], [ 563750.25, 6449612.25 ], [ 563749.75, 6449612.25 ], [ 563749.75, 6449611.75 ], [ 563750.25, 6449611.75 ], [ 563750.25, 6449611.25 ], [ 563750.75, 6449611.25 ], [ 563750.75, 6449611.75 ], [ 563751.75, 6449611.75 ], [ 563751.75, 6449612.25 ], [ 563753.25, 6449612.25 ], [ 563753.25, 6449612.75 ], [ 563754.75, 6449612.75 ], [ 563754.75, 6449613.75 ], [ 563752.75, 6449613.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563765.25, 6449610.75 ], [ 563765.25, 6449610.25 ], [ 563765.75, 6449610.25 ], [ 563765.75, 6449610.75 ], [ 563765.25, 6449610.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563766.25, 6449611.25 ], [ 563766.25, 6449609.25 ], [ 563766.75, 6449609.25 ], [ 563766.75, 6449610.25 ], [ 563767.25, 6449610.25 ], [ 563767.25, 6449611.25 ], [ 563766.25, 6449611.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563747.25, 6449611.25 ], [ 563747.25, 6449610.75 ], [ 563746.25, 6449610.75 ], [ 563746.25, 6449610.25 ], [ 563745.75, 6449610.25 ], [ 563745.75, 6449609.25 ], [ 563746.25, 6449609.25 ], [ 563746.25, 6449609.75 ], [ 563747.25, 6449609.75 ], [ 563747.25, 6449610.25 ], [ 563748.25, 6449610.25 ], [ 563748.25, 6449610.75 ], [ 563749.25, 6449610.75 ], [ 563749.25, 6449611.25 ], [ 563747.25, 6449611.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563762.75, 6449609.75 ], [ 563762.75, 6449608.25 ], [ 563762.25, 6449608.25 ], [ 563762.25, 6449607.75 ], [ 563762.75, 6449607.75 ], [ 563762.75, 6449608.25 ], [ 563763.25, 6449608.25 ], [ 563763.25, 6449609.75 ], [ 563762.75, 6449609.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563729.75, 6449608.25 ], [ 563729.75, 6449607.75 ], [ 563729.25, 6449607.75 ], [ 563729.25, 6449607.25 ], [ 563728.75, 6449607.25 ], [ 563728.75, 6449606.25 ], [ 563729.25, 6449606.25 ], [ 563729.25, 6449606.75 ], [ 563731.25, 6449606.75 ], [ 563731.25, 6449608.25 ], [ 563729.75, 6449608.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563723.75, 6449607.25 ], [ 563723.75, 6449605.75 ], [ 563724.75, 6449605.75 ], [ 563724.75, 6449606.75 ], [ 563725.25, 6449606.75 ], [ 563725.25, 6449607.25 ], [ 563723.75, 6449607.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563733.25, 6449606.25 ], [ 563733.25, 6449605.75 ], [ 563734.25, 6449605.75 ], [ 563734.25, 6449606.25 ], [ 563733.25, 6449606.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563739.25, 6449606.25 ], [ 563739.25, 6449605.75 ], [ 563738.75, 6449605.75 ], [ 563738.75, 6449605.25 ], [ 563738.25, 6449605.25 ], [ 563738.25, 6449604.75 ], [ 563739.25, 6449604.75 ], [ 563739.25, 6449605.25 ], [ 563740.25, 6449605.25 ], [ 563740.25, 6449605.75 ], [ 563739.75, 6449605.75 ], [ 563739.75, 6449606.25 ], [ 563739.25, 6449606.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563725.75, 6449608.25 ], [ 563725.75, 6449607.75 ], [ 563726.25, 6449607.75 ], [ 563726.25, 6449607.25 ], [ 563726.75, 6449607.25 ], [ 563726.75, 6449606.25 ], [ 563726.25, 6449606.25 ], [ 563726.25, 6449605.75 ], [ 563725.25, 6449605.75 ], [ 563725.25, 6449604.75 ], [ 563726.25, 6449604.75 ], [ 563726.25, 6449605.25 ], [ 563727.25, 6449605.25 ], [ 563727.25, 6449608.25 ], [ 563725.75, 6449608.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563736.75, 6449606.25 ], [ 563736.75, 6449605.75 ], [ 563735.75, 6449605.75 ], [ 563735.75, 6449605.25 ], [ 563735.25, 6449605.25 ], [ 563735.25, 6449605.75 ], [ 563734.75, 6449605.75 ], [ 563734.75, 6449605.25 ], [ 563734.25, 6449605.25 ], [ 563734.25, 6449603.75 ], [ 563735.75, 6449603.75 ], [ 563735.75, 6449605.25 ], [ 563736.25, 6449605.25 ], [ 563736.25, 6449604.75 ], [ 563736.75, 6449604.75 ], [ 563736.75, 6449605.25 ], [ 563737.75, 6449605.25 ], [ 563737.75, 6449605.75 ], [ 563737.25, 6449605.75 ], [ 563737.25, 6449606.25 ], [ 563736.75, 6449606.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563751.75, 6449604.25 ], [ 563751.75, 6449603.75 ], [ 563752.25, 6449603.75 ], [ 563752.25, 6449604.25 ], [ 563751.75, 6449604.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563750.75, 6449604.25 ], [ 563750.75, 6449603.75 ], [ 563750.25, 6449603.75 ], [ 563750.25, 6449603.25 ], [ 563748.75, 6449603.25 ], [ 563748.75, 6449602.75 ], [ 563748.25, 6449602.75 ], [ 563748.25, 6449602.25 ], [ 563748.75, 6449602.25 ], [ 563748.75, 6449602.75 ], [ 563750.75, 6449602.75 ], [ 563750.75, 6449603.25 ], [ 563751.25, 6449603.25 ], [ 563751.25, 6449604.25 ], [ 563750.75, 6449604.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563746.75, 6449602.25 ], [ 563746.75, 6449601.75 ], [ 563747.25, 6449601.75 ], [ 563747.25, 6449602.25 ], [ 563746.75, 6449602.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563744.75, 6449602.25 ], [ 563744.75, 6449601.25 ], [ 563744.25, 6449601.25 ], [ 563744.25, 6449600.75 ], [ 563745.25, 6449600.75 ], [ 563745.25, 6449601.25 ], [ 563746.25, 6449601.25 ], [ 563746.25, 6449602.25 ], [ 563744.75, 6449602.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563740.75, 6449600.75 ], [ 563740.75, 6449600.25 ], [ 563741.25, 6449600.25 ], [ 563741.25, 6449600.75 ], [ 563740.75, 6449600.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563763.75, 6449708.75 ], [ 563763.75, 6449708.25 ], [ 563763.25, 6449708.25 ], [ 563763.25, 6449707.75 ], [ 563762.75, 6449707.75 ], [ 563762.75, 6449706.75 ], [ 563761.75, 6449706.75 ], [ 563761.75, 6449705.75 ], [ 563762.25, 6449705.75 ], [ 563762.25, 6449699.75 ], [ 563762.75, 6449699.75 ], [ 563762.75, 6449697.75 ], [ 563763.25, 6449697.75 ], [ 563763.25, 6449697.25 ], [ 563762.75, 6449697.25 ], [ 563762.75, 6449696.75 ], [ 563763.25, 6449696.75 ], [ 563763.25, 6449694.25 ], [ 563763.75, 6449694.25 ], [ 563763.75, 6449693.25 ], [ 563764.25, 6449693.25 ], [ 563764.25, 6449692.75 ], [ 563763.75, 6449692.75 ], [ 563763.75, 6449691.25 ], [ 563765.25, 6449691.25 ], [ 563765.25, 6449691.75 ], [ 563766.75, 6449691.75 ], [ 563766.75, 6449691.25 ], [ 563767.25, 6449691.25 ], [ 563767.25, 6449692.25 ], [ 563767.75, 6449692.25 ], [ 563767.75, 6449692.75 ], [ 563768.25, 6449692.75 ], [ 563768.25, 6449693.25 ], [ 563767.75, 6449693.25 ], [ 563767.75, 6449694.25 ], [ 563768.25, 6449694.25 ], [ 563768.25, 6449695.75 ], [ 563767.75, 6449695.75 ], [ 563767.75, 6449697.75 ], [ 563767.25, 6449697.75 ], [ 563767.25, 6449698.25 ], [ 563767.75, 6449698.25 ], [ 563767.75, 6449698.75 ], [ 563767.25, 6449698.75 ], [ 563767.25, 6449699.75 ], [ 563766.75, 6449699.75 ], [ 563766.75, 6449702.75 ], [ 563766.25, 6449702.75 ], [ 563766.25, 6449703.75 ], [ 563765.75, 6449703.75 ], [ 563765.75, 6449704.25 ], [ 563765.25, 6449704.25 ], [ 563765.25, 6449704.75 ], [ 563764.75, 6449704.75 ], [ 563764.75, 6449706.75 ], [ 563765.25, 6449706.75 ], [ 563765.25, 6449707.25 ], [ 563765.75, 6449707.25 ], [ 563765.75, 6449706.75 ], [ 563766.25, 6449706.75 ], [ 563766.25, 6449708.75 ], [ 563765.25, 6449708.75 ], [ 563765.25, 6449708.25 ], [ 563764.25, 6449708.25 ], [ 563764.25, 6449708.75 ], [ 563763.75, 6449708.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563690.25, 6449692.25 ], [ 563690.25, 6449691.75 ], [ 563689.75, 6449691.75 ], [ 563689.75, 6449691.25 ], [ 563689.25, 6449691.25 ], [ 563689.25, 6449691.75 ], [ 563687.75, 6449691.75 ], [ 563687.75, 6449691.25 ], [ 563687.25, 6449691.25 ], [ 563687.25, 6449690.75 ], [ 563687.75, 6449690.75 ], [ 563687.75, 6449687.75 ], [ 563688.25, 6449687.75 ], [ 563688.25, 6449686.25 ], [ 563688.75, 6449686.25 ], [ 563688.75, 6449685.75 ], [ 563688.25, 6449685.75 ], [ 563688.25, 6449684.75 ], [ 563688.75, 6449684.75 ], [ 563688.75, 6449683.75 ], [ 563691.75, 6449683.75 ], [ 563691.75, 6449684.25 ], [ 563693.25, 6449684.25 ], [ 563693.25, 6449684.75 ], [ 563693.75, 6449684.75 ], [ 563693.75, 6449686.75 ], [ 563693.25, 6449686.75 ], [ 563693.25, 6449689.25 ], [ 563692.75, 6449689.25 ], [ 563692.75, 6449691.75 ], [ 563692.25, 6449691.75 ], [ 563692.25, 6449692.25 ], [ 563691.25, 6449692.25 ], [ 563691.25, 6449691.75 ], [ 563690.75, 6449691.75 ], [ 563690.75, 6449692.25 ], [ 563690.25, 6449692.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563767.75, 6449685.75 ], [ 563767.75, 6449685.25 ], [ 563766.75, 6449685.25 ], [ 563766.75, 6449684.75 ], [ 563766.25, 6449684.75 ], [ 563766.25, 6449684.25 ], [ 563765.75, 6449684.25 ], [ 563765.75, 6449681.75 ], [ 563766.25, 6449681.75 ], [ 563766.25, 6449679.75 ], [ 563766.75, 6449679.75 ], [ 563766.75, 6449678.25 ], [ 563767.25, 6449678.25 ], [ 563767.25, 6449677.75 ], [ 563767.75, 6449677.75 ], [ 563767.75, 6449678.25 ], [ 563770.75, 6449678.25 ], [ 563770.75, 6449680.25 ], [ 563770.25, 6449680.25 ], [ 563770.25, 6449680.75 ], [ 563769.75, 6449680.75 ], [ 563769.75, 6449681.25 ], [ 563769.25, 6449681.25 ], [ 563769.25, 6449681.75 ], [ 563768.75, 6449681.75 ], [ 563768.75, 6449682.25 ], [ 563769.25, 6449682.25 ], [ 563769.25, 6449683.25 ], [ 563769.75, 6449683.25 ], [ 563769.75, 6449685.25 ], [ 563769.25, 6449685.25 ], [ 563769.25, 6449685.75 ], [ 563767.75, 6449685.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563792.75, 6449692.75 ], [ 563792.75, 6449692.25 ], [ 563790.75, 6449692.25 ], [ 563790.75, 6449691.75 ], [ 563790.25, 6449691.75 ], [ 563790.25, 6449692.25 ], [ 563789.25, 6449692.25 ], [ 563789.25, 6449691.75 ], [ 563788.75, 6449691.75 ], [ 563788.75, 6449688.75 ], [ 563789.25, 6449688.75 ], [ 563789.25, 6449688.25 ], [ 563787.75, 6449688.25 ], [ 563787.75, 6449687.75 ], [ 563784.25, 6449687.75 ], [ 563784.25, 6449687.25 ], [ 563782.75, 6449687.25 ], [ 563782.75, 6449687.75 ], [ 563781.75, 6449687.75 ], [ 563781.75, 6449683.75 ], [ 563782.25, 6449683.75 ], [ 563782.25, 6449680.25 ], [ 563782.75, 6449680.25 ], [ 563782.75, 6449677.75 ], [ 563783.25, 6449677.75 ], [ 563783.25, 6449675.75 ], [ 563784.25, 6449675.75 ], [ 563784.25, 6449676.25 ], [ 563784.75, 6449676.25 ], [ 563784.75, 6449675.75 ], [ 563785.25, 6449675.75 ], [ 563785.25, 6449676.25 ], [ 563786.25, 6449676.25 ], [ 563786.25, 6449676.75 ], [ 563786.75, 6449676.75 ], [ 563786.75, 6449676.25 ], [ 563787.25, 6449676.25 ], [ 563787.25, 6449676.75 ], [ 563789.25, 6449676.75 ], [ 563789.25, 6449677.25 ], [ 563789.75, 6449677.25 ], [ 563789.75, 6449676.75 ], [ 563790.25, 6449676.75 ], [ 563790.25, 6449677.25 ], [ 563793.25, 6449677.25 ], [ 563793.25, 6449677.75 ], [ 563795.25, 6449677.75 ], [ 563795.25, 6449678.25 ], [ 563796.75, 6449678.25 ], [ 563796.75, 6449678.75 ], [ 563796.25, 6449678.75 ], [ 563796.25, 6449679.75 ], [ 563796.75, 6449679.75 ], [ 563796.75, 6449680.75 ], [ 563796.25, 6449680.75 ], [ 563796.25, 6449682.25 ], [ 563796.75, 6449682.25 ], [ 563796.75, 6449682.75 ], [ 563796.25, 6449682.75 ], [ 563796.25, 6449683.75 ], [ 563795.75, 6449683.75 ], [ 563795.75, 6449684.25 ], [ 563796.25, 6449684.25 ], [ 563796.25, 6449684.75 ], [ 563795.75, 6449684.75 ], [ 563795.75, 6449685.25 ], [ 563795.25, 6449685.25 ], [ 563795.25, 6449687.25 ], [ 563794.75, 6449687.25 ], [ 563794.75, 6449688.75 ], [ 563794.25, 6449688.75 ], [ 563794.25, 6449690.25 ], [ 563793.75, 6449690.25 ], [ 563793.75, 6449692.25 ], [ 563793.25, 6449692.25 ], [ 563793.25, 6449692.75 ], [ 563792.75, 6449692.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563736.25, 6449672.75 ], [ 563736.25, 6449671.25 ], [ 563735.75, 6449671.25 ], [ 563735.75, 6449670.75 ], [ 563736.25, 6449670.75 ], [ 563736.25, 6449669.25 ], [ 563736.75, 6449669.25 ], [ 563736.75, 6449668.75 ], [ 563736.25, 6449668.75 ], [ 563736.25, 6449668.25 ], [ 563738.25, 6449668.25 ], [ 563738.25, 6449668.75 ], [ 563739.25, 6449668.75 ], [ 563739.25, 6449669.25 ], [ 563739.75, 6449669.25 ], [ 563739.75, 6449672.75 ], [ 563736.25, 6449672.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563749.25, 6449677.75 ], [ 563749.25, 6449677.25 ], [ 563745.25, 6449677.25 ], [ 563745.25, 6449676.75 ], [ 563744.25, 6449676.75 ], [ 563744.25, 6449676.25 ], [ 563743.75, 6449676.25 ], [ 563743.75, 6449676.75 ], [ 563742.75, 6449676.75 ], [ 563742.75, 6449676.25 ], [ 563742.25, 6449676.25 ], [ 563742.25, 6449674.25 ], [ 563742.75, 6449674.25 ], [ 563742.75, 6449671.25 ], [ 563743.25, 6449671.25 ], [ 563743.25, 6449667.25 ], [ 563743.75, 6449667.25 ], [ 563743.75, 6449665.75 ], [ 563744.25, 6449665.75 ], [ 563744.25, 6449665.25 ], [ 563743.75, 6449665.25 ], [ 563743.75, 6449664.75 ], [ 563744.25, 6449664.75 ], [ 563744.25, 6449662.75 ], [ 563744.75, 6449662.75 ], [ 563744.75, 6449662.25 ], [ 563744.25, 6449662.25 ], [ 563744.25, 6449661.75 ], [ 563744.75, 6449661.75 ], [ 563744.75, 6449661.25 ], [ 563745.25, 6449661.25 ], [ 563745.25, 6449660.75 ], [ 563747.25, 6449660.75 ], [ 563747.25, 6449661.25 ], [ 563750.25, 6449661.25 ], [ 563750.25, 6449661.75 ], [ 563752.25, 6449661.75 ], [ 563752.25, 6449662.25 ], [ 563752.75, 6449662.25 ], [ 563752.75, 6449664.25 ], [ 563755.75, 6449664.25 ], [ 563755.75, 6449664.75 ], [ 563758.25, 6449664.75 ], [ 563758.25, 6449665.25 ], [ 563758.75, 6449665.25 ], [ 563758.75, 6449664.75 ], [ 563759.25, 6449664.75 ], [ 563759.25, 6449666.25 ], [ 563759.75, 6449666.25 ], [ 563759.75, 6449666.75 ], [ 563759.25, 6449666.75 ], [ 563759.25, 6449668.25 ], [ 563758.75, 6449668.25 ], [ 563758.75, 6449671.25 ], [ 563758.25, 6449671.25 ], [ 563758.25, 6449674.75 ], [ 563757.75, 6449674.75 ], [ 563757.75, 6449675.25 ], [ 563755.25, 6449675.25 ], [ 563755.25, 6449674.75 ], [ 563754.75, 6449674.75 ], [ 563754.75, 6449675.25 ], [ 563754.25, 6449675.25 ], [ 563754.25, 6449674.75 ], [ 563753.75, 6449674.75 ], [ 563753.75, 6449674.25 ], [ 563753.25, 6449674.25 ], [ 563753.25, 6449674.75 ], [ 563752.25, 6449674.75 ], [ 563752.25, 6449674.25 ], [ 563750.75, 6449674.25 ], [ 563750.75, 6449675.25 ], [ 563750.25, 6449675.25 ], [ 563750.25, 6449677.25 ], [ 563749.75, 6449677.25 ], [ 563749.75, 6449677.75 ], [ 563749.25, 6449677.75 ] ], [ [ 563747.25, 6449673.25 ], [ 563747.75, 6449673.25 ], [ 563747.75, 6449672.75 ], [ 563747.25, 6449672.75 ], [ 563747.25, 6449673.25 ] ], [ [ 563750.25, 6449671.75 ], [ 563750.75, 6449671.75 ], [ 563750.75, 6449670.75 ], [ 563750.25, 6449670.75 ], [ 563750.25, 6449671.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563687.25, 6449654.25 ], [ 563687.25, 6449653.75 ], [ 563684.75, 6449653.75 ], [ 563684.75, 6449653.25 ], [ 563682.25, 6449653.25 ], [ 563682.25, 6449652.75 ], [ 563679.75, 6449652.75 ], [ 563679.75, 6449652.25 ], [ 563679.25, 6449652.25 ], [ 563679.25, 6449641.75 ], [ 563679.75, 6449641.75 ], [ 563679.75, 6449640.25 ], [ 563680.25, 6449640.25 ], [ 563680.25, 6449639.75 ], [ 563680.75, 6449639.75 ], [ 563680.75, 6449640.25 ], [ 563681.25, 6449640.25 ], [ 563681.25, 6449639.75 ], [ 563681.75, 6449639.75 ], [ 563681.75, 6449640.25 ], [ 563682.25, 6449640.25 ], [ 563682.25, 6449639.25 ], [ 563683.25, 6449639.25 ], [ 563683.25, 6449640.25 ], [ 563684.25, 6449640.25 ], [ 563684.25, 6449640.75 ], [ 563686.25, 6449640.75 ], [ 563686.25, 6449642.25 ], [ 563686.75, 6449642.25 ], [ 563686.75, 6449642.75 ], [ 563686.25, 6449642.75 ], [ 563686.25, 6449643.25 ], [ 563687.25, 6449643.25 ], [ 563687.25, 6449643.75 ], [ 563688.75, 6449643.75 ], [ 563688.75, 6449644.25 ], [ 563689.25, 6449644.25 ], [ 563689.25, 6449643.75 ], [ 563689.75, 6449643.75 ], [ 563689.75, 6449644.25 ], [ 563690.75, 6449644.25 ], [ 563690.75, 6449646.25 ], [ 563690.25, 6449646.25 ], [ 563690.25, 6449646.75 ], [ 563690.75, 6449646.75 ], [ 563690.75, 6449647.25 ], [ 563690.25, 6449647.25 ], [ 563690.25, 6449649.25 ], [ 563689.75, 6449649.25 ], [ 563689.75, 6449652.25 ], [ 563689.25, 6449652.25 ], [ 563689.25, 6449653.75 ], [ 563688.75, 6449653.75 ], [ 563688.75, 6449654.25 ], [ 563687.25, 6449654.25 ] ], [ [ 563685.75, 6449642.75 ], [ 563686.25, 6449642.75 ], [ 563686.25, 6449642.25 ], [ 563685.75, 6449642.25 ], [ 563685.75, 6449642.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.25, 6449629.75 ], [ 563799.25, 6449629.25 ], [ 563796.75, 6449629.25 ], [ 563796.75, 6449628.75 ], [ 563794.75, 6449628.75 ], [ 563794.75, 6449628.25 ], [ 563792.75, 6449628.25 ], [ 563792.75, 6449627.75 ], [ 563791.25, 6449627.75 ], [ 563791.25, 6449627.25 ], [ 563790.25, 6449627.25 ], [ 563790.25, 6449626.75 ], [ 563789.25, 6449626.75 ], [ 563789.25, 6449626.25 ], [ 563789.75, 6449626.25 ], [ 563789.75, 6449624.75 ], [ 563790.25, 6449624.75 ], [ 563790.25, 6449623.25 ], [ 563790.75, 6449623.25 ], [ 563790.75, 6449622.25 ], [ 563791.25, 6449622.25 ], [ 563791.25, 6449621.25 ], [ 563790.75, 6449621.25 ], [ 563790.75, 6449620.75 ], [ 563791.25, 6449620.75 ], [ 563791.25, 6449619.75 ], [ 563791.75, 6449619.75 ], [ 563791.75, 6449618.25 ], [ 563792.25, 6449618.25 ], [ 563792.25, 6449615.75 ], [ 563792.75, 6449615.75 ], [ 563792.75, 6449614.25 ], [ 563793.25, 6449614.25 ], [ 563793.25, 6449613.75 ], [ 563794.25, 6449613.75 ], [ 563794.25, 6449614.25 ], [ 563795.75, 6449614.25 ], [ 563795.75, 6449614.75 ], [ 563796.75, 6449614.75 ], [ 563796.75, 6449614.25 ], [ 563797.25, 6449614.25 ], [ 563797.25, 6449614.75 ], [ 563798.75, 6449614.75 ], [ 563798.75, 6449615.25 ], [ 563799.25, 6449615.25 ], [ 563799.25, 6449616.25 ], [ 563799.75, 6449616.25 ], [ 563799.75, 6449615.75 ], [ 563800.25, 6449615.75 ], [ 563800.25, 6449616.75 ], [ 563799.75, 6449616.75 ], [ 563799.75, 6449617.25 ], [ 563800.25, 6449617.25 ], [ 563800.25, 6449621.25 ], [ 563799.75, 6449621.25 ], [ 563799.75, 6449622.25 ], [ 563800.25, 6449622.25 ], [ 563800.25, 6449623.75 ], [ 563799.75, 6449623.75 ], [ 563799.75, 6449624.75 ], [ 563800.25, 6449624.75 ], [ 563800.25, 6449625.75 ], [ 563799.75, 6449625.75 ], [ 563799.75, 6449626.75 ], [ 563800.25, 6449626.75 ], [ 563800.25, 6449627.75 ], [ 563799.75, 6449627.75 ], [ 563799.75, 6449628.25 ], [ 563800.25, 6449628.25 ], [ 563800.25, 6449629.75 ], [ 563799.25, 6449629.75 ] ], [ [ 563796.25, 6449618.25 ], [ 563796.75, 6449618.25 ], [ 563796.75, 6449617.75 ], [ 563796.25, 6449617.75 ], [ 563796.25, 6449618.25 ] ], [ [ 563793.25, 6449615.75 ], [ 563793.75, 6449615.75 ], [ 563793.75, 6449615.25 ], [ 563793.25, 6449615.25 ], [ 563793.25, 6449615.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563769.25, 6449630.25 ], [ 563769.25, 6449629.75 ], [ 563767.75, 6449629.75 ], [ 563767.75, 6449629.25 ], [ 563766.25, 6449629.25 ], [ 563766.25, 6449628.25 ], [ 563765.75, 6449628.25 ], [ 563765.75, 6449628.75 ], [ 563764.75, 6449628.75 ], [ 563764.75, 6449628.25 ], [ 563764.25, 6449628.25 ], [ 563764.25, 6449627.75 ], [ 563763.75, 6449627.75 ], [ 563763.75, 6449626.25 ], [ 563761.75, 6449626.25 ], [ 563761.75, 6449625.75 ], [ 563760.75, 6449625.75 ], [ 563760.75, 6449625.25 ], [ 563759.75, 6449625.25 ], [ 563759.75, 6449624.75 ], [ 563759.25, 6449624.75 ], [ 563759.25, 6449623.75 ], [ 563759.75, 6449623.75 ], [ 563759.75, 6449622.25 ], [ 563760.25, 6449622.25 ], [ 563760.25, 6449620.75 ], [ 563760.75, 6449620.75 ], [ 563760.75, 6449619.75 ], [ 563761.25, 6449619.75 ], [ 563761.25, 6449617.25 ], [ 563761.75, 6449617.25 ], [ 563761.75, 6449616.75 ], [ 563761.25, 6449616.75 ], [ 563761.25, 6449616.25 ], [ 563761.75, 6449616.25 ], [ 563761.75, 6449613.25 ], [ 563762.25, 6449613.25 ], [ 563762.25, 6449612.25 ], [ 563762.75, 6449612.25 ], [ 563762.75, 6449611.75 ], [ 563763.25, 6449611.75 ], [ 563763.25, 6449612.25 ], [ 563764.25, 6449612.25 ], [ 563764.25, 6449613.25 ], [ 563764.75, 6449613.25 ], [ 563764.75, 6449612.75 ], [ 563765.75, 6449612.75 ], [ 563765.75, 6449613.25 ], [ 563767.25, 6449613.25 ], [ 563767.25, 6449613.75 ], [ 563768.75, 6449613.75 ], [ 563768.75, 6449614.25 ], [ 563769.75, 6449614.25 ], [ 563769.75, 6449614.75 ], [ 563771.75, 6449614.75 ], [ 563771.75, 6449615.25 ], [ 563773.25, 6449615.25 ], [ 563773.25, 6449615.75 ], [ 563774.75, 6449615.75 ], [ 563774.75, 6449616.25 ], [ 563775.25, 6449616.25 ], [ 563775.25, 6449616.75 ], [ 563774.75, 6449616.75 ], [ 563774.75, 6449618.75 ], [ 563774.25, 6449618.75 ], [ 563774.25, 6449620.75 ], [ 563773.75, 6449620.75 ], [ 563773.75, 6449621.75 ], [ 563773.25, 6449621.75 ], [ 563773.25, 6449624.25 ], [ 563772.75, 6449624.25 ], [ 563772.75, 6449625.25 ], [ 563772.25, 6449625.25 ], [ 563772.25, 6449626.75 ], [ 563771.75, 6449626.75 ], [ 563771.75, 6449627.75 ], [ 563771.25, 6449627.75 ], [ 563771.25, 6449629.75 ], [ 563770.75, 6449629.75 ], [ 563770.75, 6449630.25 ], [ 563769.25, 6449630.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563681.75, 6449622.75 ], [ 563681.75, 6449622.25 ], [ 563679.25, 6449622.25 ], [ 563679.25, 6449609.75 ], [ 563679.75, 6449609.75 ], [ 563679.75, 6449609.25 ], [ 563680.75, 6449609.25 ], [ 563680.75, 6449609.75 ], [ 563682.25, 6449609.75 ], [ 563682.25, 6449610.25 ], [ 563684.25, 6449610.25 ], [ 563684.25, 6449610.75 ], [ 563686.25, 6449610.75 ], [ 563686.25, 6449611.25 ], [ 563686.75, 6449611.25 ], [ 563686.75, 6449613.25 ], [ 563686.25, 6449613.25 ], [ 563686.25, 6449615.75 ], [ 563685.75, 6449615.75 ], [ 563685.75, 6449618.25 ], [ 563685.25, 6449618.25 ], [ 563685.25, 6449619.75 ], [ 563684.75, 6449619.75 ], [ 563684.75, 6449622.25 ], [ 563684.25, 6449622.25 ], [ 563684.25, 6449622.75 ], [ 563681.75, 6449622.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563756.75, 6449613.75 ], [ 563756.75, 6449613.25 ], [ 563754.25, 6449613.25 ], [ 563754.25, 6449612.75 ], [ 563752.75, 6449612.75 ], [ 563752.75, 6449612.25 ], [ 563751.25, 6449612.25 ], [ 563751.25, 6449611.75 ], [ 563749.75, 6449611.75 ], [ 563749.75, 6449611.25 ], [ 563748.75, 6449611.25 ], [ 563748.75, 6449610.75 ], [ 563747.25, 6449610.75 ], [ 563747.25, 6449610.25 ], [ 563746.25, 6449610.25 ], [ 563746.25, 6449609.75 ], [ 563745.75, 6449609.75 ], [ 563745.75, 6449608.75 ], [ 563746.25, 6449608.75 ], [ 563746.25, 6449608.25 ], [ 563746.75, 6449608.25 ], [ 563746.75, 6449605.75 ], [ 563748.75, 6449605.75 ], [ 563748.75, 6449606.25 ], [ 563750.25, 6449606.25 ], [ 563750.25, 6449606.75 ], [ 563751.75, 6449606.75 ], [ 563751.75, 6449607.25 ], [ 563752.75, 6449607.25 ], [ 563752.75, 6449607.75 ], [ 563753.75, 6449607.75 ], [ 563753.75, 6449608.25 ], [ 563756.75, 6449608.25 ], [ 563756.75, 6449608.75 ], [ 563757.75, 6449608.75 ], [ 563757.75, 6449609.25 ], [ 563758.25, 6449609.25 ], [ 563758.25, 6449609.75 ], [ 563758.75, 6449609.75 ], [ 563758.75, 6449612.25 ], [ 563758.25, 6449612.25 ], [ 563758.25, 6449612.75 ], [ 563757.75, 6449612.75 ], [ 563757.75, 6449613.25 ], [ 563757.25, 6449613.25 ], [ 563757.25, 6449613.75 ], [ 563756.75, 6449613.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563720.75, 6449609.75 ], [ 563720.75, 6449609.25 ], [ 563720.25, 6449609.25 ], [ 563720.25, 6449608.75 ], [ 563719.75, 6449608.75 ], [ 563719.75, 6449609.25 ], [ 563718.25, 6449609.25 ], [ 563718.25, 6449608.75 ], [ 563718.75, 6449608.75 ], [ 563718.75, 6449608.25 ], [ 563718.25, 6449608.25 ], [ 563718.25, 6449603.75 ], [ 563720.25, 6449603.75 ], [ 563720.25, 6449602.25 ], [ 563719.75, 6449602.25 ], [ 563719.75, 6449600.75 ], [ 563720.25, 6449600.75 ], [ 563720.25, 6449599.75 ], [ 563722.25, 6449599.75 ], [ 563722.25, 6449600.25 ], [ 563722.75, 6449600.25 ], [ 563722.75, 6449599.75 ], [ 563728.25, 6449599.75 ], [ 563728.25, 6449600.25 ], [ 563728.75, 6449600.25 ], [ 563728.75, 6449599.75 ], [ 563731.25, 6449599.75 ], [ 563731.25, 6449600.25 ], [ 563732.75, 6449600.25 ], [ 563732.75, 6449599.75 ], [ 563734.75, 6449599.75 ], [ 563734.75, 6449605.75 ], [ 563734.25, 6449605.75 ], [ 563734.25, 6449606.25 ], [ 563733.75, 6449606.25 ], [ 563733.75, 6449605.75 ], [ 563733.25, 6449605.75 ], [ 563733.25, 6449606.25 ], [ 563732.25, 6449606.25 ], [ 563732.25, 6449605.75 ], [ 563726.75, 6449605.75 ], [ 563726.75, 6449605.25 ], [ 563722.75, 6449605.25 ], [ 563722.75, 6449605.75 ], [ 563722.25, 6449605.75 ], [ 563722.25, 6449606.25 ], [ 563722.75, 6449606.25 ], [ 563722.75, 6449608.25 ], [ 563722.25, 6449608.25 ], [ 563722.25, 6449609.75 ], [ 563720.75, 6449609.75 ] ], [ [ 563721.25, 6449606.75 ], [ 563721.75, 6449606.75 ], [ 563721.75, 6449606.25 ], [ 563721.25, 6449606.25 ], [ 563721.25, 6449606.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563749.25, 6449602.25 ], [ 563749.25, 6449601.75 ], [ 563747.25, 6449601.75 ], [ 563747.25, 6449601.25 ], [ 563745.75, 6449601.25 ], [ 563745.75, 6449600.75 ], [ 563744.25, 6449600.75 ], [ 563744.25, 6449600.25 ], [ 563743.75, 6449600.25 ], [ 563743.75, 6449599.75 ], [ 563750.75, 6449599.75 ], [ 563750.75, 6449601.25 ], [ 563750.25, 6449601.25 ], [ 563750.25, 6449602.25 ], [ 563749.25, 6449602.25 ] ] ] } } +] +} diff --git a/data/mobj0/ref/intrinsic/tile_splitted_2819_32247.geojson b/data/mobj0/ref/intrinsic/tile_splitted_2819_32247.geojson new file mode 100644 index 0000000..c1a614a --- /dev/null +++ b/data/mobj0/ref/intrinsic/tile_splitted_2819_32247.geojson @@ -0,0 +1,20 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563855.75, 6449586.25 ], [ 563855.75, 6449585.75 ], [ 563854.25, 6449585.75 ], [ 563854.25, 6449585.25 ], [ 563853.25, 6449585.25 ], [ 563853.25, 6449584.25 ], [ 563855.25, 6449584.25 ], [ 563855.25, 6449584.75 ], [ 563856.25, 6449584.75 ], [ 563856.25, 6449585.25 ], [ 563856.75, 6449585.25 ], [ 563856.75, 6449586.25 ], [ 563855.75, 6449586.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563855.75, 6449584.25 ], [ 563855.75, 6449583.75 ], [ 563855.25, 6449583.75 ], [ 563855.25, 6449583.25 ], [ 563855.75, 6449583.25 ], [ 563855.75, 6449582.75 ], [ 563856.75, 6449582.75 ], [ 563856.75, 6449583.75 ], [ 563856.25, 6449583.75 ], [ 563856.25, 6449584.25 ], [ 563855.75, 6449584.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563866.25, 6449582.75 ], [ 563866.25, 6449582.25 ], [ 563866.75, 6449582.25 ], [ 563866.75, 6449581.75 ], [ 563867.25, 6449581.75 ], [ 563867.25, 6449582.75 ], [ 563866.25, 6449582.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563868.25, 6449561.75 ], [ 563868.25, 6449561.25 ], [ 563867.75, 6449561.25 ], [ 563867.75, 6449560.25 ], [ 563868.25, 6449560.25 ], [ 563868.25, 6449559.75 ], [ 563868.75, 6449559.75 ], [ 563868.75, 6449560.25 ], [ 563869.25, 6449560.25 ], [ 563869.25, 6449561.25 ], [ 563868.75, 6449561.25 ], [ 563868.75, 6449561.75 ], [ 563868.25, 6449561.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563874.25, 6449560.75 ], [ 563874.25, 6449560.25 ], [ 563872.25, 6449560.25 ], [ 563872.25, 6449559.75 ], [ 563871.75, 6449559.75 ], [ 563871.75, 6449560.25 ], [ 563870.75, 6449560.25 ], [ 563870.75, 6449558.75 ], [ 563870.25, 6449558.75 ], [ 563870.25, 6449556.75 ], [ 563870.75, 6449556.75 ], [ 563870.75, 6449555.75 ], [ 563871.25, 6449555.75 ], [ 563871.25, 6449555.25 ], [ 563873.25, 6449555.25 ], [ 563873.25, 6449555.75 ], [ 563874.25, 6449555.75 ], [ 563874.25, 6449556.25 ], [ 563876.25, 6449556.25 ], [ 563876.25, 6449557.25 ], [ 563875.75, 6449557.25 ], [ 563875.75, 6449556.75 ], [ 563874.25, 6449556.75 ], [ 563874.25, 6449556.25 ], [ 563871.25, 6449556.25 ], [ 563871.25, 6449557.25 ], [ 563870.75, 6449557.25 ], [ 563870.75, 6449558.25 ], [ 563871.25, 6449558.25 ], [ 563871.25, 6449558.75 ], [ 563871.75, 6449558.75 ], [ 563871.75, 6449559.25 ], [ 563872.75, 6449559.25 ], [ 563872.75, 6449559.75 ], [ 563874.25, 6449559.75 ], [ 563874.25, 6449560.25 ], [ 563876.25, 6449560.25 ], [ 563876.25, 6449560.75 ], [ 563874.25, 6449560.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563848.75, 6449559.75 ], [ 563848.75, 6449557.75 ], [ 563849.25, 6449557.75 ], [ 563849.25, 6449557.25 ], [ 563849.75, 6449557.25 ], [ 563849.75, 6449555.25 ], [ 563850.25, 6449555.25 ], [ 563850.25, 6449554.25 ], [ 563851.25, 6449554.25 ], [ 563851.25, 6449555.75 ], [ 563850.75, 6449555.75 ], [ 563850.75, 6449556.75 ], [ 563850.25, 6449556.75 ], [ 563850.25, 6449557.25 ], [ 563849.75, 6449557.25 ], [ 563849.75, 6449559.25 ], [ 563849.25, 6449559.25 ], [ 563849.25, 6449559.75 ], [ 563848.75, 6449559.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563869.25, 6449555.25 ], [ 563869.25, 6449553.75 ], [ 563870.25, 6449553.75 ], [ 563870.25, 6449555.25 ], [ 563869.25, 6449555.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563863.75, 6449553.25 ], [ 563863.75, 6449551.25 ], [ 563864.25, 6449551.25 ], [ 563864.25, 6449550.25 ], [ 563864.75, 6449550.25 ], [ 563864.75, 6449549.25 ], [ 563863.25, 6449549.25 ], [ 563863.25, 6449548.75 ], [ 563862.25, 6449548.75 ], [ 563862.25, 6449547.75 ], [ 563863.75, 6449547.75 ], [ 563863.75, 6449548.25 ], [ 563864.25, 6449548.25 ], [ 563864.25, 6449548.75 ], [ 563865.25, 6449548.75 ], [ 563865.25, 6449550.75 ], [ 563864.75, 6449550.75 ], [ 563864.75, 6449552.25 ], [ 563864.25, 6449552.25 ], [ 563864.25, 6449553.25 ], [ 563863.75, 6449553.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563851.25, 6449549.75 ], [ 563851.25, 6449549.25 ], [ 563851.75, 6449549.25 ], [ 563851.75, 6449547.75 ], [ 563852.25, 6449547.75 ], [ 563852.25, 6449546.75 ], [ 563852.75, 6449546.75 ], [ 563852.75, 6449544.75 ], [ 563853.25, 6449544.75 ], [ 563853.25, 6449544.25 ], [ 563854.25, 6449544.25 ], [ 563854.25, 6449544.75 ], [ 563855.75, 6449544.75 ], [ 563855.75, 6449545.25 ], [ 563856.25, 6449545.25 ], [ 563856.25, 6449545.75 ], [ 563857.75, 6449545.75 ], [ 563857.75, 6449546.25 ], [ 563858.75, 6449546.25 ], [ 563858.75, 6449546.75 ], [ 563860.75, 6449546.75 ], [ 563860.75, 6449547.25 ], [ 563861.25, 6449547.25 ], [ 563861.25, 6449547.75 ], [ 563859.25, 6449547.75 ], [ 563859.25, 6449547.25 ], [ 563857.75, 6449547.25 ], [ 563857.75, 6449546.75 ], [ 563856.25, 6449546.75 ], [ 563856.25, 6449546.25 ], [ 563855.25, 6449546.25 ], [ 563855.25, 6449545.75 ], [ 563853.75, 6449545.75 ], [ 563853.75, 6449545.25 ], [ 563853.25, 6449545.25 ], [ 563853.25, 6449546.75 ], [ 563852.75, 6449546.75 ], [ 563852.75, 6449549.75 ], [ 563851.25, 6449549.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563846.25, 6449538.25 ], [ 563846.25, 6449537.75 ], [ 563846.75, 6449537.75 ], [ 563846.75, 6449537.25 ], [ 563847.25, 6449537.25 ], [ 563847.25, 6449536.75 ], [ 563847.75, 6449536.75 ], [ 563847.75, 6449537.25 ], [ 563848.25, 6449537.25 ], [ 563848.25, 6449537.75 ], [ 563847.75, 6449537.75 ], [ 563847.75, 6449538.25 ], [ 563846.25, 6449538.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563844.75, 6449537.25 ], [ 563844.75, 6449536.25 ], [ 563845.75, 6449536.25 ], [ 563845.75, 6449537.25 ], [ 563844.75, 6449537.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563873.75, 6449536.75 ], [ 563873.75, 6449536.25 ], [ 563871.75, 6449536.25 ], [ 563871.75, 6449535.75 ], [ 563869.25, 6449535.75 ], [ 563869.25, 6449535.25 ], [ 563868.25, 6449535.25 ], [ 563868.25, 6449534.75 ], [ 563865.75, 6449534.75 ], [ 563865.75, 6449534.25 ], [ 563863.75, 6449534.25 ], [ 563863.75, 6449533.75 ], [ 563861.25, 6449533.75 ], [ 563861.25, 6449533.25 ], [ 563859.25, 6449533.25 ], [ 563859.25, 6449532.75 ], [ 563858.75, 6449532.75 ], [ 563858.75, 6449532.25 ], [ 563857.75, 6449532.25 ], [ 563857.75, 6449532.75 ], [ 563856.75, 6449532.75 ], [ 563856.75, 6449532.25 ], [ 563854.75, 6449532.25 ], [ 563854.75, 6449531.75 ], [ 563853.25, 6449531.75 ], [ 563853.25, 6449531.25 ], [ 563851.75, 6449531.25 ], [ 563851.75, 6449530.75 ], [ 563851.25, 6449530.75 ], [ 563851.25, 6449531.25 ], [ 563850.75, 6449531.25 ], [ 563850.75, 6449530.75 ], [ 563848.75, 6449530.75 ], [ 563848.75, 6449530.25 ], [ 563847.25, 6449530.25 ], [ 563847.25, 6449529.75 ], [ 563845.75, 6449529.75 ], [ 563845.75, 6449529.25 ], [ 563842.25, 6449529.25 ], [ 563842.25, 6449528.75 ], [ 563841.25, 6449528.75 ], [ 563841.25, 6449528.25 ], [ 563839.25, 6449528.25 ], [ 563839.25, 6449527.75 ], [ 563837.25, 6449527.75 ], [ 563837.25, 6449527.25 ], [ 563834.25, 6449527.25 ], [ 563834.25, 6449526.75 ], [ 563832.25, 6449526.75 ], [ 563832.25, 6449526.25 ], [ 563830.25, 6449526.25 ], [ 563830.25, 6449525.75 ], [ 563829.25, 6449525.75 ], [ 563829.25, 6449525.25 ], [ 563826.75, 6449525.25 ], [ 563826.75, 6449524.75 ], [ 563824.25, 6449524.75 ], [ 563824.25, 6449524.25 ], [ 563821.75, 6449524.25 ], [ 563821.75, 6449523.75 ], [ 563819.25, 6449523.75 ], [ 563819.25, 6449523.25 ], [ 563818.75, 6449523.25 ], [ 563818.75, 6449523.75 ], [ 563818.25, 6449523.75 ], [ 563818.25, 6449523.25 ], [ 563817.25, 6449523.25 ], [ 563817.25, 6449522.75 ], [ 563815.25, 6449522.75 ], [ 563815.25, 6449522.25 ], [ 563812.75, 6449522.25 ], [ 563812.75, 6449521.75 ], [ 563810.25, 6449521.75 ], [ 563810.25, 6449521.25 ], [ 563809.25, 6449521.25 ], [ 563809.25, 6449520.75 ], [ 563805.75, 6449520.75 ], [ 563805.75, 6449520.25 ], [ 563803.25, 6449520.25 ], [ 563803.25, 6449519.75 ], [ 563801.25, 6449519.75 ], [ 563801.25, 6449519.25 ], [ 563799.75, 6449519.25 ], [ 563799.75, 6449518.75 ], [ 563800.25, 6449518.75 ], [ 563800.25, 6449518.25 ], [ 563801.25, 6449518.25 ], [ 563801.25, 6449517.75 ], [ 563801.75, 6449517.75 ], [ 563801.75, 6449518.25 ], [ 563803.25, 6449518.25 ], [ 563803.25, 6449518.75 ], [ 563805.25, 6449518.75 ], [ 563805.25, 6449519.25 ], [ 563805.75, 6449519.25 ], [ 563805.75, 6449519.75 ], [ 563807.75, 6449519.75 ], [ 563807.75, 6449520.25 ], [ 563809.75, 6449520.25 ], [ 563809.75, 6449519.75 ], [ 563810.25, 6449519.75 ], [ 563810.25, 6449520.25 ], [ 563811.75, 6449520.25 ], [ 563811.75, 6449520.75 ], [ 563812.75, 6449520.75 ], [ 563812.75, 6449521.25 ], [ 563814.25, 6449521.25 ], [ 563814.25, 6449521.75 ], [ 563814.75, 6449521.75 ], [ 563814.75, 6449521.25 ], [ 563815.25, 6449521.25 ], [ 563815.25, 6449521.75 ], [ 563816.25, 6449521.75 ], [ 563816.25, 6449522.25 ], [ 563817.25, 6449522.25 ], [ 563817.25, 6449521.75 ], [ 563818.75, 6449521.75 ], [ 563818.75, 6449522.25 ], [ 563820.25, 6449522.25 ], [ 563820.25, 6449522.75 ], [ 563820.75, 6449522.75 ], [ 563820.75, 6449522.25 ], [ 563821.25, 6449522.25 ], [ 563821.25, 6449522.75 ], [ 563823.25, 6449522.75 ], [ 563823.25, 6449523.75 ], [ 563824.25, 6449523.75 ], [ 563824.25, 6449524.25 ], [ 563825.25, 6449524.25 ], [ 563825.25, 6449523.75 ], [ 563825.75, 6449523.75 ], [ 563825.75, 6449524.25 ], [ 563827.75, 6449524.25 ], [ 563827.75, 6449524.75 ], [ 563831.25, 6449524.75 ], [ 563831.25, 6449525.25 ], [ 563832.75, 6449525.25 ], [ 563832.75, 6449525.75 ], [ 563834.25, 6449525.75 ], [ 563834.25, 6449526.25 ], [ 563834.75, 6449526.25 ], [ 563834.75, 6449525.75 ], [ 563835.25, 6449525.75 ], [ 563835.25, 6449526.25 ], [ 563837.25, 6449526.25 ], [ 563837.25, 6449526.75 ], [ 563837.75, 6449526.75 ], [ 563837.75, 6449527.25 ], [ 563840.75, 6449527.25 ], [ 563840.75, 6449527.75 ], [ 563844.25, 6449527.75 ], [ 563844.25, 6449528.25 ], [ 563845.75, 6449528.25 ], [ 563845.75, 6449528.75 ], [ 563846.25, 6449528.75 ], [ 563846.25, 6449529.25 ], [ 563848.75, 6449529.25 ], [ 563848.75, 6449528.75 ], [ 563849.25, 6449528.75 ], [ 563849.25, 6449529.25 ], [ 563850.25, 6449529.25 ], [ 563850.25, 6449530.25 ], [ 563852.75, 6449530.25 ], [ 563852.75, 6449530.75 ], [ 563854.75, 6449530.75 ], [ 563854.75, 6449531.25 ], [ 563855.25, 6449531.25 ], [ 563855.25, 6449530.75 ], [ 563855.75, 6449530.75 ], [ 563855.75, 6449531.25 ], [ 563856.25, 6449531.25 ], [ 563856.25, 6449530.75 ], [ 563856.75, 6449530.75 ], [ 563856.75, 6449531.25 ], [ 563857.25, 6449531.25 ], [ 563857.25, 6449531.75 ], [ 563859.25, 6449531.75 ], [ 563859.25, 6449532.25 ], [ 563861.25, 6449532.25 ], [ 563861.25, 6449532.75 ], [ 563862.75, 6449532.75 ], [ 563862.75, 6449533.25 ], [ 563865.25, 6449533.25 ], [ 563865.25, 6449533.75 ], [ 563867.75, 6449533.75 ], [ 563867.75, 6449534.25 ], [ 563869.75, 6449534.25 ], [ 563869.75, 6449534.75 ], [ 563871.75, 6449534.75 ], [ 563871.75, 6449535.25 ], [ 563873.25, 6449535.25 ], [ 563873.25, 6449535.75 ], [ 563875.75, 6449535.75 ], [ 563875.75, 6449536.25 ], [ 563876.25, 6449536.25 ], [ 563876.25, 6449536.75 ], [ 563873.75, 6449536.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563834.25, 6449579.25 ], [ 563834.25, 6449578.75 ], [ 563833.25, 6449578.75 ], [ 563833.25, 6449578.25 ], [ 563832.25, 6449578.25 ], [ 563832.25, 6449577.75 ], [ 563832.75, 6449577.75 ], [ 563832.75, 6449575.25 ], [ 563833.25, 6449575.25 ], [ 563833.25, 6449573.75 ], [ 563836.25, 6449573.75 ], [ 563836.25, 6449574.25 ], [ 563836.75, 6449574.25 ], [ 563836.75, 6449574.75 ], [ 563837.25, 6449574.75 ], [ 563837.25, 6449575.25 ], [ 563838.25, 6449575.25 ], [ 563838.25, 6449575.75 ], [ 563837.75, 6449575.75 ], [ 563837.75, 6449576.25 ], [ 563837.25, 6449576.25 ], [ 563837.25, 6449578.25 ], [ 563836.75, 6449578.25 ], [ 563836.75, 6449578.75 ], [ 563835.25, 6449578.75 ], [ 563835.25, 6449579.25 ], [ 563834.25, 6449579.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563872.25, 6449570.25 ], [ 563872.25, 6449569.75 ], [ 563870.75, 6449569.75 ], [ 563870.75, 6449569.25 ], [ 563870.25, 6449569.25 ], [ 563870.25, 6449569.75 ], [ 563869.75, 6449569.75 ], [ 563869.75, 6449569.25 ], [ 563868.25, 6449569.25 ], [ 563868.25, 6449568.75 ], [ 563867.75, 6449568.75 ], [ 563867.75, 6449568.25 ], [ 563868.25, 6449568.25 ], [ 563868.25, 6449567.75 ], [ 563867.75, 6449567.75 ], [ 563867.75, 6449567.25 ], [ 563868.25, 6449567.25 ], [ 563868.25, 6449565.25 ], [ 563868.75, 6449565.25 ], [ 563868.75, 6449564.75 ], [ 563869.25, 6449564.75 ], [ 563869.25, 6449563.25 ], [ 563870.75, 6449563.25 ], [ 563870.75, 6449563.75 ], [ 563872.75, 6449563.75 ], [ 563872.75, 6449564.25 ], [ 563873.75, 6449564.25 ], [ 563873.75, 6449564.75 ], [ 563874.75, 6449564.75 ], [ 563874.75, 6449566.25 ], [ 563874.25, 6449566.25 ], [ 563874.25, 6449568.25 ], [ 563873.75, 6449568.25 ], [ 563873.75, 6449569.25 ], [ 563873.25, 6449569.25 ], [ 563873.25, 6449570.25 ], [ 563872.25, 6449570.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563848.75, 6449583.75 ], [ 563848.75, 6449583.25 ], [ 563846.75, 6449583.25 ], [ 563846.75, 6449582.75 ], [ 563845.25, 6449582.75 ], [ 563845.25, 6449582.25 ], [ 563843.75, 6449582.25 ], [ 563843.75, 6449581.75 ], [ 563843.25, 6449581.75 ], [ 563843.25, 6449580.25 ], [ 563843.75, 6449580.25 ], [ 563843.75, 6449576.25 ], [ 563844.25, 6449576.25 ], [ 563844.25, 6449575.25 ], [ 563844.75, 6449575.25 ], [ 563844.75, 6449572.25 ], [ 563845.25, 6449572.25 ], [ 563845.25, 6449571.25 ], [ 563845.75, 6449571.25 ], [ 563845.75, 6449567.75 ], [ 563846.25, 6449567.75 ], [ 563846.25, 6449567.25 ], [ 563846.75, 6449567.25 ], [ 563846.75, 6449566.25 ], [ 563846.25, 6449566.25 ], [ 563846.25, 6449565.75 ], [ 563846.75, 6449565.75 ], [ 563846.75, 6449564.25 ], [ 563847.25, 6449564.25 ], [ 563847.25, 6449562.75 ], [ 563847.75, 6449562.75 ], [ 563847.75, 6449560.75 ], [ 563848.25, 6449560.75 ], [ 563848.25, 6449559.75 ], [ 563848.75, 6449559.75 ], [ 563848.75, 6449559.25 ], [ 563849.25, 6449559.25 ], [ 563849.25, 6449559.75 ], [ 563849.75, 6449559.75 ], [ 563849.75, 6449559.25 ], [ 563850.25, 6449559.25 ], [ 563850.25, 6449559.75 ], [ 563851.75, 6449559.75 ], [ 563851.75, 6449560.25 ], [ 563853.25, 6449560.25 ], [ 563853.25, 6449560.75 ], [ 563853.75, 6449560.75 ], [ 563853.75, 6449559.25 ], [ 563854.25, 6449559.25 ], [ 563854.25, 6449558.75 ], [ 563853.75, 6449558.75 ], [ 563853.75, 6449558.25 ], [ 563854.25, 6449558.25 ], [ 563854.25, 6449557.75 ], [ 563853.75, 6449557.75 ], [ 563853.75, 6449555.25 ], [ 563852.75, 6449555.25 ], [ 563852.75, 6449554.75 ], [ 563851.75, 6449554.75 ], [ 563851.75, 6449552.75 ], [ 563852.25, 6449552.75 ], [ 563852.25, 6449550.75 ], [ 563852.75, 6449550.75 ], [ 563852.75, 6449549.25 ], [ 563853.25, 6449549.25 ], [ 563853.25, 6449548.75 ], [ 563854.25, 6449548.75 ], [ 563854.25, 6449549.25 ], [ 563855.25, 6449549.25 ], [ 563855.25, 6449549.75 ], [ 563857.25, 6449549.75 ], [ 563857.25, 6449550.25 ], [ 563858.25, 6449550.25 ], [ 563858.25, 6449550.75 ], [ 563859.75, 6449550.75 ], [ 563859.75, 6449551.25 ], [ 563862.25, 6449551.25 ], [ 563862.25, 6449551.75 ], [ 563863.25, 6449551.75 ], [ 563863.25, 6449553.25 ], [ 563862.75, 6449553.25 ], [ 563862.75, 6449554.75 ], [ 563862.25, 6449554.75 ], [ 563862.25, 6449555.75 ], [ 563861.75, 6449555.75 ], [ 563861.75, 6449556.25 ], [ 563862.25, 6449556.25 ], [ 563862.25, 6449556.75 ], [ 563861.75, 6449556.75 ], [ 563861.75, 6449557.25 ], [ 563862.25, 6449557.25 ], [ 563862.25, 6449557.75 ], [ 563862.75, 6449557.75 ], [ 563862.75, 6449558.75 ], [ 563862.25, 6449558.75 ], [ 563862.25, 6449560.25 ], [ 563861.75, 6449560.25 ], [ 563861.75, 6449560.75 ], [ 563861.25, 6449560.75 ], [ 563861.25, 6449561.75 ], [ 563860.75, 6449561.75 ], [ 563860.75, 6449561.25 ], [ 563860.25, 6449561.25 ], [ 563860.25, 6449563.25 ], [ 563859.75, 6449563.25 ], [ 563859.75, 6449564.75 ], [ 563859.25, 6449564.75 ], [ 563859.25, 6449565.25 ], [ 563858.75, 6449565.25 ], [ 563858.75, 6449564.75 ], [ 563857.25, 6449564.75 ], [ 563857.25, 6449564.25 ], [ 563856.25, 6449564.25 ], [ 563856.25, 6449563.75 ], [ 563853.75, 6449563.75 ], [ 563853.75, 6449565.25 ], [ 563853.25, 6449565.25 ], [ 563853.25, 6449566.75 ], [ 563852.75, 6449566.75 ], [ 563852.75, 6449568.25 ], [ 563852.25, 6449568.25 ], [ 563852.25, 6449570.75 ], [ 563851.75, 6449570.75 ], [ 563851.75, 6449571.75 ], [ 563851.25, 6449571.75 ], [ 563851.25, 6449573.75 ], [ 563850.75, 6449573.75 ], [ 563850.75, 6449575.75 ], [ 563850.25, 6449575.75 ], [ 563850.25, 6449576.75 ], [ 563849.75, 6449576.75 ], [ 563849.75, 6449578.75 ], [ 563851.25, 6449578.75 ], [ 563851.25, 6449582.75 ], [ 563850.75, 6449582.75 ], [ 563850.75, 6449583.25 ], [ 563850.25, 6449583.25 ], [ 563850.25, 6449583.75 ], [ 563848.75, 6449583.75 ] ], [ [ 563853.25, 6449563.75 ], [ 563853.75, 6449563.75 ], [ 563853.75, 6449563.25 ], [ 563853.25, 6449563.25 ], [ 563853.25, 6449563.75 ] ] ] } } +] +} diff --git a/data/mobj0/ref/intrinsic/tile_splitted_2819_32248.geojson b/data/mobj0/ref/intrinsic/tile_splitted_2819_32248.geojson new file mode 100644 index 0000000..9893741 --- /dev/null +++ b/data/mobj0/ref/intrinsic/tile_splitted_2819_32248.geojson @@ -0,0 +1,28 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563875.25, 6449704.25 ], [ 563875.25, 6449700.25 ], [ 563876.25, 6449700.25 ], [ 563876.25, 6449702.75 ], [ 563875.75, 6449702.75 ], [ 563875.75, 6449704.25 ], [ 563875.25, 6449704.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563821.75, 6449687.25 ], [ 563821.75, 6449685.25 ], [ 563823.25, 6449685.25 ], [ 563823.25, 6449685.75 ], [ 563823.75, 6449685.75 ], [ 563823.75, 6449686.75 ], [ 563823.25, 6449686.75 ], [ 563823.25, 6449687.25 ], [ 563822.75, 6449687.25 ], [ 563822.75, 6449686.75 ], [ 563822.25, 6449686.75 ], [ 563822.25, 6449687.25 ], [ 563821.75, 6449687.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563819.75, 6449685.25 ], [ 563819.75, 6449684.25 ], [ 563820.25, 6449684.25 ], [ 563820.25, 6449684.75 ], [ 563820.75, 6449684.75 ], [ 563820.75, 6449685.25 ], [ 563819.75, 6449685.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563857.25, 6449665.75 ], [ 563857.25, 6449664.75 ], [ 563857.75, 6449664.75 ], [ 563857.75, 6449665.25 ], [ 563858.25, 6449665.25 ], [ 563858.25, 6449665.75 ], [ 563857.25, 6449665.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563816.75, 6449665.75 ], [ 563816.75, 6449665.25 ], [ 563815.75, 6449665.25 ], [ 563815.75, 6449664.75 ], [ 563816.75, 6449664.75 ], [ 563816.75, 6449665.25 ], [ 563817.25, 6449665.25 ], [ 563817.25, 6449664.75 ], [ 563818.75, 6449664.75 ], [ 563818.75, 6449664.25 ], [ 563819.75, 6449664.25 ], [ 563819.75, 6449664.75 ], [ 563820.25, 6449664.75 ], [ 563820.25, 6449665.75 ], [ 563818.25, 6449665.75 ], [ 563818.25, 6449665.25 ], [ 563817.25, 6449665.25 ], [ 563817.25, 6449665.75 ], [ 563816.75, 6449665.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563851.75, 6449668.25 ], [ 563851.75, 6449667.75 ], [ 563849.25, 6449667.75 ], [ 563849.25, 6449667.25 ], [ 563848.25, 6449667.25 ], [ 563848.25, 6449665.75 ], [ 563848.75, 6449665.75 ], [ 563848.75, 6449665.25 ], [ 563848.25, 6449665.25 ], [ 563848.25, 6449664.75 ], [ 563847.75, 6449664.75 ], [ 563847.75, 6449664.25 ], [ 563847.25, 6449664.25 ], [ 563847.25, 6449663.75 ], [ 563845.75, 6449663.75 ], [ 563845.75, 6449662.75 ], [ 563847.25, 6449662.75 ], [ 563847.25, 6449663.25 ], [ 563848.75, 6449663.25 ], [ 563848.75, 6449663.75 ], [ 563849.25, 6449663.75 ], [ 563849.25, 6449664.25 ], [ 563849.75, 6449664.25 ], [ 563849.75, 6449667.25 ], [ 563852.75, 6449667.25 ], [ 563852.75, 6449667.75 ], [ 563853.25, 6449667.75 ], [ 563853.25, 6449666.75 ], [ 563853.75, 6449666.75 ], [ 563853.75, 6449666.25 ], [ 563854.25, 6449666.25 ], [ 563854.25, 6449665.75 ], [ 563854.75, 6449665.75 ], [ 563854.75, 6449665.25 ], [ 563855.25, 6449665.25 ], [ 563855.25, 6449664.75 ], [ 563856.25, 6449664.75 ], [ 563856.25, 6449665.25 ], [ 563856.75, 6449665.25 ], [ 563856.75, 6449665.75 ], [ 563854.75, 6449665.75 ], [ 563854.75, 6449666.25 ], [ 563854.25, 6449666.25 ], [ 563854.25, 6449666.75 ], [ 563854.75, 6449666.75 ], [ 563854.75, 6449667.25 ], [ 563854.25, 6449667.25 ], [ 563854.25, 6449667.75 ], [ 563854.75, 6449667.75 ], [ 563854.75, 6449668.25 ], [ 563851.75, 6449668.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563807.25, 6449649.25 ], [ 563807.25, 6449648.75 ], [ 563806.75, 6449648.75 ], [ 563806.75, 6449648.25 ], [ 563807.75, 6449648.25 ], [ 563807.75, 6449649.25 ], [ 563807.25, 6449649.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563803.75, 6449648.75 ], [ 563803.75, 6449648.25 ], [ 563803.25, 6449648.25 ], [ 563803.25, 6449647.75 ], [ 563803.75, 6449647.75 ], [ 563803.75, 6449648.25 ], [ 563806.25, 6449648.25 ], [ 563806.25, 6449648.75 ], [ 563803.75, 6449648.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563802.25, 6449648.25 ], [ 563802.25, 6449647.75 ], [ 563802.75, 6449647.75 ], [ 563802.75, 6449648.25 ], [ 563802.25, 6449648.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563799.75, 6449647.75 ], [ 563799.75, 6449647.25 ], [ 563800.25, 6449647.25 ], [ 563800.25, 6449647.75 ], [ 563799.75, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563801.25, 6449647.75 ], [ 563801.25, 6449647.25 ], [ 563801.75, 6449647.25 ], [ 563801.75, 6449647.75 ], [ 563801.25, 6449647.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563812.75, 6449649.25 ], [ 563812.75, 6449648.25 ], [ 563813.25, 6449648.25 ], [ 563813.25, 6449645.25 ], [ 563814.25, 6449645.25 ], [ 563814.25, 6449647.75 ], [ 563813.75, 6449647.75 ], [ 563813.75, 6449648.75 ], [ 563813.25, 6449648.75 ], [ 563813.25, 6449649.25 ], [ 563812.75, 6449649.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563828.25, 6449643.75 ], [ 563828.25, 6449643.25 ], [ 563826.75, 6449643.25 ], [ 563826.75, 6449641.75 ], [ 563828.75, 6449641.75 ], [ 563828.75, 6449642.25 ], [ 563829.25, 6449642.25 ], [ 563829.25, 6449643.25 ], [ 563829.75, 6449643.25 ], [ 563829.75, 6449642.25 ], [ 563830.25, 6449642.25 ], [ 563830.25, 6449642.75 ], [ 563830.75, 6449642.75 ], [ 563830.75, 6449643.75 ], [ 563829.25, 6449643.75 ], [ 563829.25, 6449643.25 ], [ 563828.75, 6449643.25 ], [ 563828.75, 6449643.75 ], [ 563828.25, 6449643.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563829.75, 6449639.75 ], [ 563829.75, 6449639.25 ], [ 563829.25, 6449639.25 ], [ 563829.25, 6449638.75 ], [ 563828.75, 6449638.75 ], [ 563828.75, 6449638.25 ], [ 563829.25, 6449638.25 ], [ 563829.25, 6449637.75 ], [ 563830.25, 6449637.75 ], [ 563830.25, 6449638.25 ], [ 563831.75, 6449638.25 ], [ 563831.75, 6449639.75 ], [ 563829.75, 6449639.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563851.25, 6449635.75 ], [ 563851.25, 6449635.25 ], [ 563851.75, 6449635.25 ], [ 563851.75, 6449633.25 ], [ 563852.25, 6449633.25 ], [ 563852.25, 6449632.75 ], [ 563852.75, 6449632.75 ], [ 563852.75, 6449633.25 ], [ 563853.25, 6449633.25 ], [ 563853.25, 6449634.25 ], [ 563852.75, 6449634.25 ], [ 563852.75, 6449635.25 ], [ 563851.75, 6449635.25 ], [ 563851.75, 6449635.75 ], [ 563851.25, 6449635.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563828.75, 6449632.25 ], [ 563828.75, 6449631.75 ], [ 563829.25, 6449631.75 ], [ 563829.25, 6449632.25 ], [ 563828.75, 6449632.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 0.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563831.75, 6449637.25 ], [ 563831.75, 6449636.25 ], [ 563830.75, 6449636.25 ], [ 563830.75, 6449635.75 ], [ 563829.75, 6449635.75 ], [ 563829.75, 6449636.25 ], [ 563829.25, 6449636.25 ], [ 563829.25, 6449635.75 ], [ 563829.75, 6449635.75 ], [ 563829.75, 6449635.25 ], [ 563829.25, 6449635.25 ], [ 563829.25, 6449634.75 ], [ 563829.75, 6449634.75 ], [ 563829.75, 6449633.25 ], [ 563830.25, 6449633.25 ], [ 563830.25, 6449632.25 ], [ 563830.75, 6449632.25 ], [ 563830.75, 6449630.25 ], [ 563831.25, 6449630.25 ], [ 563831.25, 6449629.25 ], [ 563830.75, 6449629.25 ], [ 563830.75, 6449628.25 ], [ 563832.25, 6449628.25 ], [ 563832.25, 6449629.75 ], [ 563832.75, 6449629.75 ], [ 563832.75, 6449630.25 ], [ 563833.75, 6449630.25 ], [ 563833.75, 6449630.75 ], [ 563834.25, 6449630.75 ], [ 563834.25, 6449630.25 ], [ 563834.75, 6449630.25 ], [ 563834.75, 6449631.25 ], [ 563834.25, 6449631.25 ], [ 563834.25, 6449632.25 ], [ 563833.75, 6449632.25 ], [ 563833.75, 6449633.25 ], [ 563833.25, 6449633.25 ], [ 563833.25, 6449634.75 ], [ 563832.75, 6449634.75 ], [ 563832.75, 6449636.25 ], [ 563832.25, 6449636.25 ], [ 563832.25, 6449637.25 ], [ 563831.75, 6449637.25 ] ], [ [ 563833.25, 6449631.75 ], [ 563833.75, 6449631.75 ], [ 563833.75, 6449631.25 ], [ 563833.25, 6449631.25 ], [ 563833.25, 6449631.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563829.75, 6449708.75 ], [ 563829.75, 6449708.25 ], [ 563829.25, 6449708.25 ], [ 563829.25, 6449707.75 ], [ 563829.75, 6449707.75 ], [ 563829.75, 6449706.75 ], [ 563831.75, 6449706.75 ], [ 563831.75, 6449707.25 ], [ 563835.75, 6449707.25 ], [ 563835.75, 6449708.25 ], [ 563834.25, 6449708.25 ], [ 563834.25, 6449708.75 ], [ 563833.75, 6449708.75 ], [ 563833.75, 6449708.25 ], [ 563833.25, 6449708.25 ], [ 563833.25, 6449708.75 ], [ 563832.75, 6449708.75 ], [ 563832.75, 6449708.25 ], [ 563832.25, 6449708.25 ], [ 563832.25, 6449708.75 ], [ 563831.25, 6449708.75 ], [ 563831.25, 6449708.25 ], [ 563830.25, 6449708.25 ], [ 563830.25, 6449708.75 ], [ 563829.75, 6449708.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563871.25, 6449706.25 ], [ 563871.25, 6449705.75 ], [ 563869.25, 6449705.75 ], [ 563869.25, 6449705.25 ], [ 563868.25, 6449705.25 ], [ 563868.25, 6449703.25 ], [ 563868.75, 6449703.25 ], [ 563868.75, 6449700.75 ], [ 563869.25, 6449700.75 ], [ 563869.25, 6449699.75 ], [ 563868.75, 6449699.75 ], [ 563868.75, 6449699.25 ], [ 563869.25, 6449699.25 ], [ 563869.25, 6449698.75 ], [ 563869.75, 6449698.75 ], [ 563869.75, 6449698.25 ], [ 563871.75, 6449698.25 ], [ 563871.75, 6449697.75 ], [ 563873.75, 6449697.75 ], [ 563873.75, 6449698.25 ], [ 563874.25, 6449698.25 ], [ 563874.25, 6449698.75 ], [ 563873.75, 6449698.75 ], [ 563873.75, 6449699.25 ], [ 563874.25, 6449699.25 ], [ 563874.25, 6449702.25 ], [ 563873.75, 6449702.25 ], [ 563873.75, 6449703.75 ], [ 563872.75, 6449703.75 ], [ 563872.75, 6449705.75 ], [ 563872.25, 6449705.75 ], [ 563872.25, 6449706.25 ], [ 563871.25, 6449706.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563847.25, 6449691.75 ], [ 563847.25, 6449691.25 ], [ 563842.75, 6449691.25 ], [ 563842.75, 6449690.75 ], [ 563842.25, 6449690.75 ], [ 563842.25, 6449690.25 ], [ 563840.25, 6449690.25 ], [ 563840.25, 6449689.75 ], [ 563838.25, 6449689.75 ], [ 563838.25, 6449689.25 ], [ 563837.75, 6449689.25 ], [ 563837.75, 6449688.75 ], [ 563838.25, 6449688.75 ], [ 563838.25, 6449686.75 ], [ 563838.75, 6449686.75 ], [ 563838.75, 6449684.75 ], [ 563839.25, 6449684.75 ], [ 563839.25, 6449682.75 ], [ 563839.75, 6449682.75 ], [ 563839.75, 6449681.25 ], [ 563840.25, 6449681.25 ], [ 563840.25, 6449680.25 ], [ 563840.75, 6449680.25 ], [ 563840.75, 6449679.75 ], [ 563841.25, 6449679.75 ], [ 563841.25, 6449680.25 ], [ 563843.75, 6449680.25 ], [ 563843.75, 6449680.75 ], [ 563845.75, 6449680.75 ], [ 563845.75, 6449680.25 ], [ 563846.75, 6449680.25 ], [ 563846.75, 6449680.75 ], [ 563848.75, 6449680.75 ], [ 563848.75, 6449681.25 ], [ 563849.75, 6449681.25 ], [ 563849.75, 6449681.75 ], [ 563850.75, 6449681.75 ], [ 563850.75, 6449682.25 ], [ 563851.25, 6449682.25 ], [ 563851.25, 6449685.25 ], [ 563850.75, 6449685.25 ], [ 563850.75, 6449686.75 ], [ 563850.25, 6449686.75 ], [ 563850.25, 6449688.75 ], [ 563849.75, 6449688.75 ], [ 563849.75, 6449691.75 ], [ 563847.25, 6449691.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563825.75, 6449686.25 ], [ 563825.75, 6449685.75 ], [ 563823.25, 6449685.75 ], [ 563823.25, 6449685.25 ], [ 563821.75, 6449685.25 ], [ 563821.75, 6449684.75 ], [ 563820.25, 6449684.75 ], [ 563820.25, 6449684.25 ], [ 563818.25, 6449684.25 ], [ 563818.25, 6449683.75 ], [ 563817.25, 6449683.75 ], [ 563817.25, 6449681.75 ], [ 563817.75, 6449681.75 ], [ 563817.75, 6449680.25 ], [ 563818.25, 6449680.25 ], [ 563818.25, 6449678.25 ], [ 563818.75, 6449678.25 ], [ 563818.75, 6449676.25 ], [ 563819.25, 6449676.25 ], [ 563819.25, 6449675.75 ], [ 563818.75, 6449675.75 ], [ 563818.75, 6449675.25 ], [ 563819.25, 6449675.25 ], [ 563819.25, 6449673.75 ], [ 563819.75, 6449673.75 ], [ 563819.75, 6449673.25 ], [ 563821.75, 6449673.25 ], [ 563821.75, 6449673.75 ], [ 563822.25, 6449673.75 ], [ 563822.25, 6449673.25 ], [ 563822.75, 6449673.25 ], [ 563822.75, 6449673.75 ], [ 563824.75, 6449673.75 ], [ 563824.75, 6449674.25 ], [ 563825.75, 6449674.25 ], [ 563825.75, 6449674.75 ], [ 563827.75, 6449674.75 ], [ 563827.75, 6449675.25 ], [ 563830.25, 6449675.25 ], [ 563830.25, 6449675.75 ], [ 563830.75, 6449675.75 ], [ 563830.75, 6449678.25 ], [ 563830.25, 6449678.25 ], [ 563830.25, 6449680.75 ], [ 563829.75, 6449680.75 ], [ 563829.75, 6449682.75 ], [ 563829.25, 6449682.75 ], [ 563829.25, 6449684.75 ], [ 563828.75, 6449684.75 ], [ 563828.75, 6449686.25 ], [ 563825.75, 6449686.25 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563843.75, 6449640.75 ], [ 563843.75, 6449640.25 ], [ 563842.25, 6449640.25 ], [ 563842.25, 6449639.75 ], [ 563840.25, 6449639.75 ], [ 563840.25, 6449639.25 ], [ 563839.25, 6449639.25 ], [ 563839.25, 6449638.75 ], [ 563838.25, 6449638.75 ], [ 563838.25, 6449638.25 ], [ 563837.75, 6449638.25 ], [ 563837.75, 6449638.75 ], [ 563837.25, 6449638.75 ], [ 563837.25, 6449638.25 ], [ 563836.75, 6449638.25 ], [ 563836.75, 6449637.75 ], [ 563834.75, 6449637.75 ], [ 563834.75, 6449637.25 ], [ 563833.25, 6449637.25 ], [ 563833.25, 6449636.75 ], [ 563832.25, 6449636.75 ], [ 563832.25, 6449634.25 ], [ 563832.75, 6449634.25 ], [ 563832.75, 6449633.75 ], [ 563833.25, 6449633.75 ], [ 563833.25, 6449631.75 ], [ 563833.75, 6449631.75 ], [ 563833.75, 6449629.75 ], [ 563834.25, 6449629.75 ], [ 563834.25, 6449628.75 ], [ 563834.75, 6449628.75 ], [ 563834.75, 6449627.25 ], [ 563835.25, 6449627.25 ], [ 563835.25, 6449626.75 ], [ 563836.25, 6449626.75 ], [ 563836.25, 6449627.25 ], [ 563837.75, 6449627.25 ], [ 563837.75, 6449627.75 ], [ 563838.75, 6449627.75 ], [ 563838.75, 6449628.25 ], [ 563840.25, 6449628.25 ], [ 563840.25, 6449627.75 ], [ 563841.75, 6449627.75 ], [ 563841.75, 6449628.25 ], [ 563842.25, 6449628.25 ], [ 563842.25, 6449628.75 ], [ 563843.75, 6449628.75 ], [ 563843.75, 6449629.25 ], [ 563844.75, 6449629.25 ], [ 563844.75, 6449629.75 ], [ 563845.25, 6449629.75 ], [ 563845.25, 6449629.25 ], [ 563845.75, 6449629.25 ], [ 563845.75, 6449629.75 ], [ 563847.25, 6449629.75 ], [ 563847.25, 6449630.25 ], [ 563848.75, 6449630.25 ], [ 563848.75, 6449633.25 ], [ 563848.25, 6449633.25 ], [ 563848.25, 6449633.75 ], [ 563847.75, 6449633.75 ], [ 563847.75, 6449634.25 ], [ 563848.25, 6449634.25 ], [ 563848.25, 6449635.25 ], [ 563847.75, 6449635.25 ], [ 563847.75, 6449635.75 ], [ 563847.25, 6449635.75 ], [ 563847.25, 6449637.75 ], [ 563846.75, 6449637.75 ], [ 563846.75, 6449638.75 ], [ 563845.75, 6449638.75 ], [ 563845.75, 6449639.25 ], [ 563845.25, 6449639.25 ], [ 563845.25, 6449639.75 ], [ 563844.75, 6449639.75 ], [ 563844.75, 6449640.75 ], [ 563843.75, 6449640.75 ] ], [ [ 563846.25, 6449637.75 ], [ 563846.75, 6449637.75 ], [ 563846.75, 6449637.25 ], [ 563846.25, 6449637.25 ], [ 563846.25, 6449637.75 ] ], [ [ 563847.75, 6449632.25 ], [ 563848.25, 6449632.25 ], [ 563848.25, 6449631.75 ], [ 563847.75, 6449631.75 ], [ 563847.75, 6449632.25 ] ], [ [ 563835.75, 6449627.75 ], [ 563836.25, 6449627.75 ], [ 563836.25, 6449627.25 ], [ 563835.75, 6449627.25 ], [ 563835.75, 6449627.75 ] ] ] } }, +{ "type": "Feature", "properties": { "layer": 1.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 563800.25, 6449630.25 ], [ 563800.25, 6449629.75 ], [ 563799.75, 6449629.75 ], [ 563799.75, 6449623.75 ], [ 563800.25, 6449623.75 ], [ 563800.25, 6449623.25 ], [ 563799.75, 6449623.25 ], [ 563799.75, 6449616.25 ], [ 563800.25, 6449616.25 ], [ 563800.25, 6449615.75 ], [ 563801.75, 6449615.75 ], [ 563801.75, 6449616.25 ], [ 563803.25, 6449616.25 ], [ 563803.25, 6449616.75 ], [ 563805.25, 6449616.75 ], [ 563805.25, 6449616.25 ], [ 563805.75, 6449616.25 ], [ 563805.75, 6449616.75 ], [ 563806.25, 6449616.75 ], [ 563806.25, 6449617.25 ], [ 563805.75, 6449617.25 ], [ 563805.75, 6449619.25 ], [ 563805.25, 6449619.25 ], [ 563805.25, 6449620.75 ], [ 563805.75, 6449620.75 ], [ 563805.75, 6449621.25 ], [ 563805.25, 6449621.25 ], [ 563805.25, 6449622.25 ], [ 563804.75, 6449622.25 ], [ 563804.75, 6449624.75 ], [ 563804.25, 6449624.75 ], [ 563804.25, 6449625.75 ], [ 563803.75, 6449625.75 ], [ 563803.75, 6449626.25 ], [ 563804.25, 6449626.25 ], [ 563804.25, 6449626.75 ], [ 563803.75, 6449626.75 ], [ 563803.75, 6449628.25 ], [ 563803.25, 6449628.25 ], [ 563803.25, 6449630.25 ], [ 563800.25, 6449630.25 ] ] ] } } +] +} diff --git a/test/configs/config_test_metrics.yaml b/test/configs/config_test_metrics.yaml index be574a5..08629a1 100644 --- a/test/configs/config_test_metrics.yaml +++ b/test/configs/config_test_metrics.yaml @@ -102,6 +102,7 @@ malt0: mobj0: weights: - "6": 2 - "1": 1 + "6": 2 + "1": 1 + "9": 1 # No points for class 0 notes: {} \ No newline at end of file diff --git a/test/mobj0/test_mobj0_relative.py b/test/mobj0/test_mobj0_relative.py index 54516a4..4a79741 100644 --- a/test/mobj0/test_mobj0_relative.py +++ b/test/mobj0/test_mobj0_relative.py @@ -1,8 +1,17 @@ +import logging import shutil +import subprocess as sp from pathlib import Path +from test import utils +import geopandas as gpd +import pandas as pd import pytest +from coclico.config import csv_separator +from coclico.io import read_config_file +from coclico.mobj0 import mobj0_relative + pytestmark = pytest.mark.docker TMP_PATH = Path("./tmp/mobj0_relative") @@ -14,9 +23,86 @@ def setup_module(module): shutil.rmtree(TMP_PATH) -def test_compute_metric_relative(ensure_mobj0_data): - raise NotImplementedError +paired_objects_params = [ + # One test with niv2 data (same objects but with different geometries) + ( + Path("./data/mobj0/niv2/intrinsic/tile_splitted_2818_32248.geojson"), # c1_path + {"1": 51, "6": 13, "9": 0}, # expected_nb_paired + {"1": 16, "6": 0, "9": 0}, # expected_nb_not_paired + ), + # One test with niv4 data (missing buildings) + ( + Path("./data/mobj0/niv4/intrinsic/tile_splitted_2818_32248.geojson"), # c1_path + {"1": 45, "6": 7, "9": 0}, # expected_nb_paired + {"1": 7, "6": 6, "9": 0}, # expected_nb_not_paired + ), +] + + +@pytest.mark.parametrize("c1_file,expected_nb_paired,expected_nb_not_paired", paired_objects_params) +def test_check_paired_objects(c1_file, expected_nb_paired, expected_nb_not_paired): + ref_file = Path("./data/mobj0/ref/intrinsic/tile_splitted_2818_32248.geojson") + config_dict = read_config_file(CONFIG_FILE_METRICS) + classes = sorted(config_dict["mobj0"]["weights"].keys()) + c1_geometries = gpd.read_file(c1_file) + ref_geometries = gpd.read_file(ref_file) + nb_paired, nb_not_paired = mobj0_relative.check_paired_objects(c1_geometries, ref_geometries, classes) + + assert nb_paired == expected_nb_paired + assert nb_not_paired == expected_nb_not_paired + + +def test_compute_metric_relative(): + c1_dir = Path("./data/mobj0/niv4/intrinsic/") + ref_dir = Path("./data/mobj0/ref/intrinsic/") + output_csv = TMP_PATH / "relative" / "result.csv" + output_csv_tile = TMP_PATH / "relative" / "result_tile.csv" + expected_cols = {"class", "nb_paired", "nb_not_paired"} + + mobj0_relative.compute_metric_relative(c1_dir, ref_dir, CONFIG_FILE_METRICS, output_csv, output_csv_tile) + + expected_rows = 4 * 3 # 4 files * 3 classes + assert utils.csv_num_rows(output_csv_tile) == expected_rows + df = pd.read_csv(output_csv_tile, sep=csv_separator) + assert set(df.columns) == expected_cols | {"tile"} + + expected_rows = 3 # 3 classes + assert utils.csv_num_rows(output_csv) == expected_rows + + df = pd.read_csv(output_csv, sep=csv_separator) + assert set(df.columns) == expected_cols + + # Check result for class 9 (0 points in c1 and ref) + nb_paired_9 = df["nb_paired"][df.index[df["class"] == 9][0]] + nb_not_paired_9 = df["nb_not_paired"][df.index[df["class"] == 9][0]] + assert nb_paired_9 == 0 + assert nb_not_paired_9 == 0 + + # Check result for class 6 (several objects in c1 and ref that are not detected the same) + nb_paired_6 = df["nb_paired"][df.index[df["class"] == 6][0]] + nb_not_paired_6 = df["nb_not_paired"][df.index[df["class"] == 6][0]] + assert nb_paired_6 > 0 + assert nb_not_paired_6 > 0 + + +def test_run_main(): + c1_dir = Path("./data/mobj0/niv2/intrinsic") + ref_dir = Path("./data/mobj0/ref/intrinsic") + output_csv = TMP_PATH / "unit_test_run_main_mobj0_relative.csv" + output_csv_tile = TMP_PATH / "unit_test_run_main_mobj0_relative_tile.csv" + cmd = f"""python -m coclico.mobj0.mobj0_relative \ + --input-dir {c1_dir} \ + --ref-dir {ref_dir} \ + --config-file {CONFIG_FILE_METRICS} \ + --output-csv {output_csv} \ + --output-csv-tile {output_csv_tile} \ + """ + + sp.run(cmd, shell=True, check=True) + logging.info(cmd) + expected_rows = 4 * 3 # 4 files * 3 classes + assert utils.csv_num_rows(output_csv_tile) == expected_rows -def test_run_main(ensure_mobj0_data): - raise NotImplementedError + expected_rows = 3 # 3 classes + assert utils.csv_num_rows(output_csv) == expected_rows